Newest 'ffmpeg' Questions - Stack Overflow

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

Les articles publiés sur le site

  • Creating OpenCV project with no Video Transcoding (ffmpeg part) Support on Linux how to ?

    24 novembre 2011, par myWallJSON

    Currently I use something like this to create project make files:

    cmake -DCMAKE_INSTALL_PREFIX="./install-dir" -DBUILD_WITH_STATIC_CRT=ON -DBUILD_SHARED_LIBS=OFF -G "GCC" 
    

    And I use FFmpeg in my project that I compile sepratly. Also I do not like the way OpenCV workes with video transcoding any way - prefer to do it all manually with ffmpeg.

    I wonder if it is possible to create project file using Cmake so that OpenCV video (not images like png, jpg, tiff, etc) transcoding part will not be compiled (not camera grabbing - I like and use that one=))?

  • Simple way to grab thumbnail of FLV in ASP.NET without changing permissions on server ?

    23 novembre 2011, par Rhys Causey

    I'm looking for a simple way to grab thumbnails of FLVs in ASP.NET, without having to change any permissions/settings on the server. Ideally, nothing is installed on the server machine, but if necessary, small tools such as FFmpeg are fine.

    I've tried FFmpeg using the command-line tool with Process.Start, but the same command that works in a Windows Forms application and from the command prompt does not work in ASP.NET (presumably because of permissions).

    I've also tried using TAO.FFmpeg, and it seems to be working most of the time, but fails randomly, and does not start working again until the machine is restarted. Even when I use the sample code (decoder.cs), it sometimes fails when I try to open multiple videos in a single request.

    If this isn't possible in a clean/straightforward way, I'm open to other suggestions.

  • FFmpeg Hardware Acceleration -> GPU + DirectShow

    23 novembre 2011, par NoviceAndNovice

    Is there a hardware accelerated version of FFmpeg (e.g. a version that utilizes the GPU)?

    Also, does anybody use FFmpeg with GPU support? Possibly for scaling and converting video format? Or, for example, use DirectShow for image scaling and displaying images on surfaces? If so anybody can provide small code samples?

  • build error while compiling ffmpeg for iOS with iFrameExtractor

    23 novembre 2011, par Michael Chen

    I meet some error with iFrameExtractor:

    lipo: specifed architecture type (i386) for file (i386/libavcodec.a) does not match its cputype (12) and cpusubtype (9) (should be cputype (7) and cpusubtype (3))

    My machine: Mac Book Air, Mac OSX Lion, XCode 4.2 with iOS5

    Please give me some help, thanks.

  • How can I know the error in command in an exec function ?

    23 novembre 2011, par shinod

    I am using a ffmpeg command to cut a video with exec function in php. But it is not creating a video file and doesn't show any errors. I used exec as below

    exec("ffmpeg -i input.flv -ss 00:00:30.0 -t 00:00:10.0 -acodec copy -vcodec copy -async 1 output.flv");
    

    Can I get any help to know what is the error happening here?

    exec("ffmpeg -i input.flv -ss 00:00:30.0 -t 00:00:10.0 -acodec copy -vcodec copy -async 1 output.flv",$output);
    

    I tried it also. But I didn't get any error message in variable $output