Newest 'ffmpeg' Questions - Stack Overflow

http://stackoverflow.com/questions/tagged/ffmpeg

Les articles publiés sur le site

  • Vs2010 Unicode String error with FFmpeg

    28 mai 2014, par user3152463

    I have a VS2010 project employing Qt 4.3 , ICu and FFmpeg 32-builds from zeranoe . It runs fine in Debug mode but in release mode i get this error :

    "The procedure entry point ?append@unicodeString@icu@@QAEAAv12@Abv12@@Z could not be found in dll avutil-52.dll "

    Any suggestions ?

  • Play RTP stream in android

    28 mai 2014, par AndroidOptimist

    I know this question is asked several times, but still i didn't find complete answer for this.

    I would like to play RTP streams in android. From my search i understand that android does not support playing RTP stram and using ffmpeg i can play RTP videos. So, i browsed for good ffmpeg tutorial for playing RTP videos but still i didn't find anything relevant to my search. I tried like

    ffmpeg play

    rtp using ffmpeg

    and so on.

    but still i don't know how t play. I googled but couldn't find. Can anyone please tell me

    1) how to play rtp streamed videos in android using ffmpeg.

    2) please suggest me some good examples or tutorials for the same.

    Thanks in advance.

  • Creating a simple transition between all images in a folder

    28 mai 2014, par Vikram

    I am trying to make ffmpeg pick up every picture file in a folder (pngs, for example) and create a video (in mp4, for example), but put a blend transition in between all photos in one command? Any ideas?

    Thanks for all your help!

  • Convert YUV to MP4 and YUV with one FFmpeg command

    27 mai 2014, par user3319828

    I want to encode an input YUV file to an output MP4 file and also generate a YUV file with the same quality as the MP4 file. However, when I type the following code, the generated YUV file is just a copy of the input file:

    ffmpeg -y -s 352x288 -i inp.yuv -crf 31 -r 30 -pix_fmt yuv420p -c:v libx264 out.mp4 out.yuv
    

    One way I can solve the problem is to first generate the MP4 file using one command and then type another command to convert the MP4 file to YUV:

    ffmpeg -y -s 352x288 -i inp.yuv -crf 31 -r 30 -pix_fmt yuv420p -c:v libx264 out.mp4
    ffmpeg -y -i out.mp4 out.yuv
    

    Is it possible to do this only with one FFmpeg command?

  • FFmpeg and VS2010 (Debug vs Release)

    27 mai 2014, par user3152463

    I 'm working on a project the requires FFmpeg libraries to extract metadata from a video a file. I' m using static builds from zeranoe (http://ffmpeg.zeranoe.com/builds/) . The Solution works fine in Debug mode .

    But when I start it in release mode I get this error :

    "The application was unable to start correctly (0xc000007b).Click ok to close "

    I have no idea why .Any suggestions ?

    conf :

    • MS visual Studio 2010 win 32 application
    • C++ lang
    • Qt 4.3 used
    • FFmpeg static builds
    • Windows 64 bit system