Newest 'ffmpeg' Questions - Stack Overflow
Les articles publiés sur le site
-
WebM Encoded file plays in Chrome but not FFv6 HTML5-Video
21 novembre 2011, par Austin SI'm trying to use the new fancy html5 video player element and I was wondering: I encoded a high resolution .mov container in VLC v1.1.9 to WebM format (although an FFMPEG command line would be extremely valuable if you have one handy) and it plays just fine in Chrome, but it won't open in Firefox. Would anyone have any ideas or in what direction I should be looking?
-
ffmpeg assert - throw exception instead of abort
21 novembre 2011, par ronagI'm using ffmpeg in my C++ application.
When trying to play certain files an assertion inside of ffmpeg fails, which causes it to call
abort()
which terminates my application. I do not want this behavior, rather I want to get the chance to recover, preferably through an exception.Anyone got any ideas as to how I can get around the problem with ffmpeg/assert potentially terminating my application?
EDIT:
The only way I can think of right now is to change the ffmpeg assert macro so that it causes an access violation which I can catch through SEH exceptions. Ugly and potentially bad solution?
-
error:initializer element is not constant [closed]
21 novembre 2011, par lqfI have downloaded ffmpeg's source code from 'www.ffmpeg.org' and created am empty project with ubuntu.Then I'm copied and added the ffmpeg's source code to the project.There are some errors when I compile it.
The errors are:xxx error:initializer element is not constant xxx error:(near initializer for 'ff_eightbps_decoder.long_name') and appeared at ".long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),"
-
How to convert .mov videos to iPhone playable mp4 videos [migrated]
21 novembre 2011, par Rinto GeorgeI am trying to convert .mov videos to mp4(should be playable in iPhone) using ffmpeg.I am using Linux CLI. I have tried the following command:
-i source.MOV -s qvga -b 384k -vcodec libx264 -r 23.976 -acodec libfaac -ac 2 -ar 44100 -ab 64k -vpre baseline -crf 22 -deinterlace -o output.mp4
I get the output
ffmpeg: unrecognized option '-o'
-
How to encode VP6 codec in ffmpeg ? [migrated]
20 novembre 2011, par userffmpegCan anyone tell me if there is a way to encode VP6 codec in ffmpeg? I used libvpx only to find out that it encodes using VP8...