-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Support byte array and data URIs via mimeType #1763
Conversation
c0fbb3b
to
ac2b98b
Compare
@@ -100,21 +119,23 @@ Future<List<LibSourceTestData>> getAudioTestDataList() async { | |||
if (_features.hasUrlSource && _features.hasPlaylistSourceType) | |||
m3u8UrlTestData, | |||
if (_features.hasUrlSource) mpgaUrlTestData, | |||
if (_features.hasDataUriSource) wavDataUriTestData, | |||
// if (_features.hasDataUriSource) mp3DataUriTestData, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No this is just added as redundancy (like the other sources, but in a different format). But in order to make the tests faster, I commented them out. They are useful for testing certain scenarios though.
Description
Checklist
fix:
,feat:
,refactor:
,docs:
,chore:
,test:
,ci:
etc).///
, where necessary.Breaking Change
Related Issues
Closes #1692, closes #1670, closes #1663, closes #1269