ffmpeg

What technology is behind OneTrueMedia.com?

I want to compile images and sound into a embeddable Flash video online, similarly to what onetruemedia.com already does. What technology do they use? How would I go about setting up a server to do the same? ...

How to encoding no sound recorded red5 video via ffmpeg

HI We recorded video via red5 server but no sound added ( because there was no sound environment ) . So there is no sound track in output flv file. and there is encoding error when we do encoding that flv ( no sound track ) into other video format via ffmpeg . error message is Could not find codec parameters (Audio: 0x0000, 0 chann...

ffmpeg command on windows wamp server

this is linux server command /usr/bind/ffmpeg -i and so on..... i have installed ffmpeg in wamp server on localhost it is showing its extension in phpinfo() than what should be the command either just ffmpeg -i or anypath/ffmpeg -i ...

Server side video mixing.

I have a serie of video files encoded in mpeg2 (I can change this encoding), and I have to produce a movie in flash flv (this is a requirement, I can't change that encoding). One destination movie is a compilation of different source video files. I have a playlist defining the destination movie. For example: Video file Position...

H264 Encoders other than ffmpeg x264

The iPhone app I am working on captures images in series within certain user-defined time interval, I am looking for a way to combine these images into H264 encoded videos. I have done some research on Google, it looks like I will have to use something like ffmpeg/mencoder on iPhone? (Also found someone ported ffmpeg to iPhone, ffmpeg4iP...

Converting uploaded videos to .flv and having them added to my website

I plan to open a smaller and more specialised Youtube like site where users can upload their videos in a variety of formats and it will be converted to .FLV, and then posted on the website. Most of the code I can handle myself, but I wanted to get some feedback on the uploading and converting stage of this. I'm planning to have the conv...

trying to install hs-ffmpeg haskell package fails to find libdc1394

doing "cabal install hs-ffmpeg" fails like this: checking for faacEncGetVersion in -lfaac... no checking for zlibVersion in -lz... yes checking for libdc1394... configure: error: Package requirements (libdc1394) were not met: No package 'libdc1394' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed soft...

Progress bar in VB 6.0 from Transcoding process in FFMPEG

Hello experts. firts excuse me for my English it`s super Freak. Sorry I have a big problem , i need finish my applicatión in VB6.0 for a test in my High Schooll and i can`t find the solution, My app open a FFmpeg.EXE file which open a cmd window Prompt and start a trascoding process, i need link the last line generated into the Promp...

Video Convert to flv

Hi, I want to use a video convertor for my asp.net website for converting all common format videos to flv. I used ffmpeg for that but the quality of converted video is less. Any one have any other suggetion or is it possible to improve the quality of video converted using ffmpeg ...

missing dependency for FFMPEG

I'm trying to install FFMPEG on a virtual dedicated server with Red Hat Fedora Core 7 but get the following error: Error: Missing Dependency: libvorbisenc.so.0 is needed by package ffmpeg I've tried installing libvorbisenc.so.0, but it says "no package available". When I try to install the latest version, libvorbisenc.so.2, it says i...

Fetch frame count with ffmpeg

Does anyone know how to fetch the number of total frames from a video file using ffmpeg? The render output of ffmpeg shows the current frame and I need the frame count to calculate the progress in percent. ...

Live video stream web cam aggregator

I need to aggregate several live streams from web cams. Then generate a single live stream for the client. I see several apps to capture the web cam stream, but nothing that will splice the streams together. ...

Window cmd in trascoding process

hello experts , i'm tryng to capture the data from a cmd process (read the last line of a trascoding process show in a window type comman line, to put the bitrate data into a vb6 form with this data build a remainnig time and the progress) the expert WQW send me a source code using the scripting host object model. with this line i can c...

ffmpeg imlib2.so watermarking troubles.

I am trying to watermark a flash video, but it throws long list of "Unsupported Codec" so, is flv not supported at all ? Do I need to convert it to .avi and watermark ? ...

Audio not working with FFMPEG conversion

I am trying to convert an avi file to flv with an fairly simple ffmpeg command: ffmpeg -i dbkai12.avi -ab 96k -b 700k -ar 44100 -s 640x480 -acodec mp3 video.flv The video does exactly what I want, just no audio. I didnt come up with these numbers, just pulled them from different sources. Also tried: ffmpeg -i video.avi -ar 22050 -ab...

How do I compile a 64-bit version of ffmpeg on Windows?

i need to compile ffmpeg (64 bit shared dll) for windows. however I configure in mingw, it always produces 32 bit binary for me. tried this already ./configure --enable-shared --disable-static --enable-memalign-hack --arch=amd64 ./configure --enable-shared --disable-static --enable-memalign-hack --arch=x86_64 my guess is that a x86 t...

How do I enable FFMPEG logging and where can I find the FFMPEG log file?

I want to be able to log FFMPEG processes because I am trying to work out how long a minute of video takes to convert to help with capacity planning of my video encoding server. How do I enable logging and where is the log file saved. I have FFMPEG installed on a CentOS LAMP machine. ...

FFMPEG: Watermarking videos using videos

I am using ffmpeg vhooks to watermark my videos using a static PNG image. It works well but now my requirement is changing from static images to watermarking videos with another video. Can I do that using ffmpeg? Or are there any other free libraries or CLI tools available for *nix environment to serve the purpose? ...

Bitrate Calculation

Hi experts , (Excuse for My english it's freak i´m from LA) I'm trying to finish a trascoding process in VB6.0 , i'm working with ffmpeg , its a very good transcoder , to finish the project i want a progress bar for the trascoding process but it's so very hard , first i need to understand , how a program can calculate the time remaining ...

Help with the ffmpeg

I can read now the last line from the FFmpeg procees executed in a cmd window. with this source using Scripting host model object reference. Private Sub Command1_Click() Dim oExec As WshExec Dim sRow As String With New WshShell Set oExec = .Exec("ffmpeg.exe") End With Do While oExec.Status = Wsh...