-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Playing WMA audio stream failed even with FFMPEG ! #2807
Comments
ExtractorMediaSource doesn't include an extractor for WMA containers, so you'd need to implement one. You'd also need to modify the FfmpegLibrary class so that it picks the |
Supporting WMA is tracked by #2155, but is low priority (i.e. is unlikely to get done unless someone outside of the core development team implements it and sends it as a pull request). |
Thank you all for your quick answers , |
@andrewlewis i've added the mimetype asf to FfmpegLibrary |
#2155 tracks supporting WMA containers. Doing that involves implementing an |
This seems quite hard to understand how Extractors works ! Exoplayer is intended to be customizable but without any guidance it's really hard ! |
Some customizations are more complicated than others -- you're adding support for a new file format and the amount of work required will probably depend on how difficult it is to parse its structure. Hopefully the documentation on the Extractor interface and the provided implementations provide enough information to get started. Regarding MP3 playback sounding wrong, if you file a new issue with the requested details we'll try to investigate. Note that you should be able to play MP3s on Android devices without resorting to using the ffmpeg extension, however. |
Hi ,
After successfully compiled FFMPEG library following the tutorial.
I've added --enable-decoder=asf \ to the config file and i've tried to play this stream
http://techibes.wma.audio.tempo.fm/techibes/techib01.wma
, but it has failed
saying that no suitable decode has been found ?
Please can anyone help me to solve this problem
Thanks
The text was updated successfully, but these errors were encountered: