Questions about using the ffmpeg command line tool should be asked on Super User.

learn more… | top users | synonyms

0
votes
0answers
32 views

FFmpeg exit value = 4

I try to run ffmpeg command on android devices. On some of them the code below works excellent and the video is created. But on some(e.g. motorola xoom) the exit value is 4. And while debugging on ...
-3
votes
0answers
31 views

YouTube coding parameters [closed]

I am trying to find the transcoding parameters to apply to a video to avoid recoding after upload. Currently the best google seems to offer is lots of info on the API, and a 404 when it comes to the ...
0
votes
1answer
34 views

Batch Programming Looping?

I'm not an expert in batch programming, my only skill is in C\C++. I'm not even sure how to go about this really. I've got a bunch of videos like Video1.mp4, Video2.mp4 (that's not their actual ...
-1
votes
0answers
21 views

ffmpeg : Extracting the frames out of the video with corresponding time in ms [closed]

I am using the following command : ffmpeg -i <input-file> image%d.png which outputs the image(frame number).png. But I have a requirement where I have to append time at which frame is ...
0
votes
0answers
14 views

ffmpeg error using Fade Seconds [migrated]

I'm trying to fade a video clip in and out with a duration of a few seconds, and ffmpeg seemed like the best way. The documentation mentions a fade option, and I have it working with a time in frames, ...
0
votes
0answers
10 views

Why does av_write_trailer fails?

I am processing a video file. I use ffmpeg to read each packet. If it is an audio packet, I write the packet into the output video file using av_interleaved_write_frame. If it is a video packet, I ...
-1
votes
0answers
23 views

Color shift when encoding DNxHD QuickTime Video [closed]

I have been tasked with developing the Editorial submission pipeline for an animated feature film project. Our studio is based on Windows 7 and the Editing team is using Avid Media Composer. We have ...
0
votes
0answers
32 views

ffmpeg network congestion(block)

everyone! I use ffmpeg (avformat_open_input()) to open a network stream example "mms". And then ,i read frames 、decoder and play. Finall close it with avformat_close_input(). Above process are no ...
3
votes
0answers
51 views

ffmpeg - Can I draw an audio channel as an image?

I'm wondering if it's possible to draw an audio channel of a video or audio file as an image using ffmpeg, or if there's another tool that would do it on Win2k8 x64. I'm doing this as part of an ...
-1
votes
0answers
18 views

Is there any limit for concat demuxer parameters number? [closed]

I am trying to join .mp3 files with ffmpeg, using this syntax ffmpeg -i "concat:input1.mp3|input2.mp3|input3.mp3" -c copy output.mp3 but when I have a large number of parameters it doesn't work. ...
-3
votes
1answer
44 views

Cannot open videos in Opencv

I am trying to open .avi file in opencv. When I run the code I do not get any error but the video does not play. I searched around and I guess it requires ffmpeg to be installed. So I installed it ...
0
votes
0answers
24 views

How to compile ffmpeg.c and its dependencies code in Eclipse?

Since there is very limited number of ffmpeg examples, I want to know ffmpeg better through debugging ffmpeg process. So with the downloaded ffmpeg code, I hope to only compile ffmpeg.c (has a main ...
0
votes
1answer
30 views

MAC's “say” command to MP3 [closed]

I want to read a very long text with the SAY mac's command (say -f file.txt), and to record the output to file.mp3. I thought about using ffmpeg to record all of it, but then i'll need to wait for all ...
0
votes
0answers
38 views

How can I convert .mp4.avi file to .h263 [closed]

I'm doing an experiment and I need .h263 bitstream samples however I didn't find many of them on internet (I would like files which size around 10MB) so I ended up deciding to convert some files from ...
0
votes
0answers
39 views

Bad audio output in stereo mode - FFMPEG PortAudio C++

I'm here again. This time I am working with the audio, I had before some memory leaks issues but now they are solved, this time I am here with a new problem, when I configure portaudio to sound in ...
0
votes
2answers
51 views

av_free crashes application randomly - FFMPEG C++

I am trying to create a simple media-player for an introduction to the world of ffmpeg, the problem is that every time that I call av_freep(void*ptr) the application crashes. If I don't call av_freep ...
-3
votes
0answers
43 views

Video as live wallpaper [closed]

I was trying to set this enter link description here compile app on my device, but then i hate test this, show error in application and close. Why? Sorry for my english :L
0
votes
0answers
27 views

Simple Build of Libavcodec.so and libavformat.so on Mac

Who needs ffmpeg? Not me. What I need is to be able to decode a video stream along with its audio stream, so that can put the frames on an opengl surface in sync with the audio. FFmpeg is a tool ...
1
vote
1answer
25 views

How to use fig.show=animate in knitr without administrator privileges

I use Windows without administrator privileges hence I cannot set a path in the Windows PATH variable. The ffmpeg.exe file is in my "U:/ProgramFiles/ImageMagick-6.8.5-5/" folder. I have found how to ...
0
votes
0answers
23 views

Stream copy given start and end time in ffmpeg

I'm trying a small program which cuts clip from video file given start and end time. For this I'm doing a simple stream copy of both audio and video stream. I just copied the pts and dts from input ...
0
votes
0answers
76 views

cross compiling OpenCV with ffmpeg support for arm target fails

I am trying to cross compile OpenCV with ffmpeg support for mini2440(arm based). The following are the steps i followed. Cross compiled ffmpeg 0.5.1 and successfully created the libraries following ...
1
vote
1answer
37 views

FFmpeg 1.0 < causing audio playback issues

I have an audio streamer based on ffplay. It works great using ffmpeg 0.11 but when I use ffmpeg 1.0 or the latest 1.2 release the audio seems to be decoded or played weirdly. Essentially it sounds ...
0
votes
1answer
42 views

Finding the time of a thumbnail in a video

I have a large set of pre-generated thumbnails and videos. What is the easiest way to figure out the specific time in the video of the associated thumbnail? I'd imagine that I would have to use ...
0
votes
0answers
39 views

mediastreamsegmenter stops sending id3 metadata using HLS

I am using a combination of ffmpegand Apple's mediastreamsegmenter and id3taggenerator to create a HLS stream with metadata (ID3) embedded in it. I have all of the applications running and am able to ...
-4
votes
0answers
42 views

looking for Wowza RTMP client on iOS [closed]

i will need to developed a chat application based on wowza server and im looking for RTMP client open source for iOS or maybe some other open source that use FFMPEG open source thanks in advanced Asaf ...
0
votes
0answers
25 views

setting a correct ffmpeg GOP (group of pictures) [closed]

I'm using ffmpeg to ser the GOP (Group of pictures) with mpeg4. I had success to set a GOP of: -12,2 (12 frames between two I frames, and 2 frames between each P frames) -15,2 -18,2 -30,2 And I had ...
0
votes
0answers
9 views

How do I properly format a request for ffmpeg to decode using a particular codec? [migrated]

r3d is listed as a supported codec for decoding, however when I attempt to specify the r3d decoder, I get the error message "Unknown decoder". What is the correct manner of specifying a decoder codec? ...
0
votes
1answer
27 views

Can't record S-Video with avconv

I've been trying to record feed from my S-Video cable using avconv. I am able to record composite video with avconv, but the quality isn't the best. To set the input, I use v4l2-ctl -i $n, where $n ...
0
votes
1answer
50 views

do not show cmd window in qt project

I'm using ffmpeg command in Qt GUI application (for merging mp3 files into one file). And when I'm running my application the results of merging files showing in cmd window. How can I hide cmd window ...
0
votes
1answer
47 views

FFmpeg: Generating .ts files and adding Metadata to them [closed]

Before I was following the steps: Create some metadata: id3taggenerator -o 1.id3 -artist "Emma Stone" id3taggenerator -o 2.id3 -artist "Patricia Clarkson" Create a file saying where to place the ...
1
vote
0answers
13 views

mix audio with h264 mp4 video with ffmpeg [migrated]

I have 2 files : Input #0, wav, from '105426_1.wav': Duration: 00:00:09.98, bitrate: 1312 kb/s Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 41000 Hz, stereo, s16, 1312 kb/s and: ...
-1
votes
1answer
24 views

How can generate thumbnail with timestamp with ffmpeg [closed]

I am working with ffmpeg. I made some thumbnails with ffmpeg command like below. ffmpeg -ss 600 -i input.mp4 -s 420x270 -f mjpeg vframes 1 output.jpeg but it is just plane photo. What I need is ...
0
votes
0answers
56 views

How to set x264 encode parameters through ffmpeg AVCodecContext

I'm trying to use ffmpeg/libx264 to encode and transmit a realtime video, when I use **av_dict_set(&opts, "tune", "zerolatency", 0); ** the system works well. As the X264 encode parameters are ...
0
votes
1answer
39 views

Learning Shell - creating a script with parameters that runs two separate cli apps

I want to learn shell script, so I'm trying to download a youtube video using youtube-dl then convert it to mp3 using ffmpeg. I do it manually running youtube-dl http://youtube.com/watch?v=... then ...
0
votes
0answers
31 views

FFMpeg receives single connection with multiple bitrates?

I'm trying to use ffmpeg to serve hls streaming, as source of the streaming I'm using FMLE to output multiple bitrate by RTMP. I know that we can output several bitrates/sizes, as the example bellow, ...
-7
votes
1answer
88 views

I am really confused with this kind of compilation error( C ffmpeg Qt)

I downloaded the latest ffmpeg source code and successfully installed it on Ubuntu But I failed to compile a simple demo.(I did included proper headers) Here are the error messages ,just to name a ...
1
vote
1answer
44 views

use python to split a video file into a set of parts

I use the following python code to split a FLV video file into a set of parts ,when finished ,only the first part video can be played ,the other parts are corrupted.I wonder why and Is there some ...
0
votes
0answers
26 views

Decode wma and wmv codecs usning ffmpeg

I am trying to receive a http stream from an analog camera that is connected to hardware encoder. The codec of http stream is wma3 for audio and wmv2 for video. I can't do this maybe because ffmpeg ...
0
votes
0answers
39 views

Transition effects between images using ImageMagick and FFMPEG [closed]

I'm trying to generate a video using still images. I'm using Image Magick's convert command to duplicate the images. convert screen6.png -duplicate 10 -background black -gravity center -extent ...
0
votes
0answers
38 views

.So file for FFMPEG from NDK

I am not able to make .So file for FFMPEG from NDK . I Just Download a zip file from GitHub https://github.com/appunite/AndroidFFmpeg Then i used CYGWIN for using NDK commends for making .so file ...
0
votes
1answer
120 views

Encoding H.264 video using FFmpeg C API

I'm trying to encode a H.264 video with the FFMPEG C API. I have successfully compiled and executed the decoding/encoding example provided by FFMPEG. The problem I'm facing is that the .mpg file ...
0
votes
0answers
11 views

Concat videos with ffmpeg does not work [migrated]

I'm currently trying to concat 3 Videos which don't have a audio stream and adding a audio file in the same step. I created this command which should do the work: ffmpeg -y -r 30 -i data\intro.mp4 ...
0
votes
0answers
47 views

FFmpeg into Qt 5.0.2: exit code -1073741515 on av_register_all();

I am attempting to integrate FFmpeg into my Qt app. I used the FFmpeg git-0fb64da 64-bit Dev source from Zeranoe FFmpeg builds page and added avformat.lib to my project. My .pro file: unix|win32: ...
1
vote
1answer
33 views

Error scaling a video using libav filters [closed]

I need to batch-process a bunch of videos to scale their height to 240 keeping the aspect ratio same. The command that gets the job almost done is: $ avconv -threads 4 -ss 0.0 -i input.avi \ -map ...
-1
votes
0answers
42 views

FFMPEG result video freezes in the middle of playback [closed]

I'm trying stitch four source videos together into one grid. For testing purposes I'm working with a single source flv using this command: ffmpeg -i woohoo.flv -i woohoo.flv -i woohoo.flv -i ...
-2
votes
0answers
79 views

How to limit FFMpeg CPU usage? Threads? [closed]

I read lot of forum comment how to limit ffmpeg cpu... many people wrote to use this formula : nice -n 10 or 20 it's ok. But I don't know what number should be use in ffmpeg threads? 0 or 1, 2, 3 I ...
0
votes
1answer
46 views

Android FFMPEG doesn't recognize file: protocol

I'm running an android ffmpeg build through the Runtime.getRuntime().exec() command Problem is that when i specify the input as a file i get this error: E/MainActivity(18168): ...
0
votes
0answers
70 views

ffmpeg watermark transparent background

I'm trying to add a watermark to a video file but i'm having problems with the background of the watermark because i want it to be transparent. My approach is like this: i make a png file the size of ...
-2
votes
1answer
22 views

task scheduler windows wampserver [closed]

well I've been researching task scheduler, I found the cron to linux, I wonder if it has any windows. I want to run a script in php every 15 seconds, which is the case in video conversion, and if I ...
0
votes
0answers
35 views

Green screen writing FLV file libavformat

I've written a piece of C++ code that can capture webcam video frame, decode them, convert them to YUV420P, encode them and then write them to a file. If I use the mpeg2 codec and write to a .mpg ...

1 2 3 4 5 75