Example of a FLV file with Speex-encoded audio?

霸气de小男生 提交于 2019-12-14 01:33:28

问题


Can anyone point me to an example of a Flash video file with a Speex-encoded soundtrack, freely downloadable from somewhere on the web?

Video can be in any codec (ideally none.)

I am trying to develop an application to generate such a file programmatically and would like a valid example to compare with my output for debugging purposes.


This link claims to be Speex in FLV, but it doesn't work in any of the players I tried it in.


This file is readable but allegedly contains a bug (but I don't know what it is)


回答1:


A possible solution could be to generate your own files using a flv muxer. You could try with ffmpeg, it should be something like ffmpeg -i blah.avi -i blah.mp3 -vcodec copy -acodec copy out.flv. There is a discussion about this approach (for a different format) here.




回答2:


audio-only-speex.flv over here plays for me: http://streams.videolan.org/issues/2973/



来源:https://stackoverflow.com/questions/5951523/example-of-a-flv-file-with-speex-encoded-audio

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!