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

learn more… | top users | synonyms

1
vote
0answers
2 views

How to fill audio AVFrame (ffmpeg) with the data obtained from CMSampleBufferRef (AVFoundation)?

I am writing program for streaming live audio and video from webcamera to rtmp-server. I work in MacOS X 10.8, so I use AVFoundation framework for obtaining audio and video frames from input devices. ...
0
votes
0answers
8 views

mp4 muxing problems on dm365 board

I happen to be stuck with strange TI codec issues while encoding video. To cut story short - the encoded data which is generated by TI mpeg4 codecs are not 'understood' by nothing else, but VLC and ...
0
votes
0answers
15 views

FFMPEG SCREENSHOT GENERATE ERROR: No such filter: 'tile' [duplicate]

i have been trying on making multiple screenshots from a video file using ffmpeg and i succeed too in command but the only problem is while executing that i am getting this error: No such filter: ...
0
votes
0answers
6 views

Ffmpeg set duration using node-fluent-ffmpeg

I'm really new to the world of ffmpeg so please excuses me if this is a stupid queston. I'm using the module Node-fluent-ffmpeg to stream a movie and convert it from avi to webm. So far so good (it ...
0
votes
0answers
18 views

bash script for ffmpeg conversion does not loop

I have this bash script for a batch conversion of some mp4 files: #!/bin/bash ls dr*.mp4 | grep -v -E "\.[^\.]+\." | sed "s/.mp4//g" | while read f do TARGET="$f.ffmpeg.mp4" if ! [ -f ...
0
votes
0answers
12 views

Build libaacplus 2.0.2 for ios

Does anyone build libaacplus2.0.2(Download here) successed for iOS? I want ffmpeg support that.It cast me one day to build that, but failed. This is libaacplus2.0.2/autogen.sh, It was edited, just ...
0
votes
1answer
14 views

The .mp4 video does not play, which is created from ffmpeg library (not command line)

I use ffmpeg library to encode frames to a .mp4 video. The program runs smoothly without error. But the output .mp4 video does not play. Properties of the file does not even show it is a video file, ...
0
votes
1answer
24 views

How to generate images from mp4 file?

I am trying to generate the images from mp4 video file with ffmpeg. I only want the first 3 second of every video in the file. I have the following command.. $videoFile = $mp4File; //I have many ...
-1
votes
0answers
19 views

FFMPEG SCREENSHOT ERROR: No such filter: 'tile' [closed]

i have been trying on making multiple screenshots from a video file using ffmpeg and i succeed too in command but the only problem is while executing that i am getting this error: No such filter: ...
1
vote
0answers
25 views

Node.js: realtime conversion from jpeg images to video file

I'm using node.js and through the socket.io library I receive chunks of data that are actually jpeg images. These images are frames of a realtime video captured from a remote webcam. I'm forced to ...
0
votes
0answers
16 views

Is it possible to limit the input file size in FFmpeg?

I’m having trouble finding a way to limit the input file size in FFmpeg. I’ve got a site that welcomes uploaded videos of 60 seconds in length, but need a safeguard in case someone tries ...
0
votes
0answers
23 views

Can't write RGB frames to mp4 video with FFMPEG

I am writing RGB frames to mp4 (h264) using FFMPEG. The resulting video is created with the correct length but the visual is completely screwed: My whole setup is based on this tutorial.But there is ...
-1
votes
0answers
21 views

Red5 and FFmpeg in streaming [closed]

I have installed Red5 and ffmpeg in Ubuntu. My idea is use the example http://localhost:5080/demos/ofla_demo.html for a simple streaming with ffmpeg. I use ffmpeg as follow: ffmpeg -i out.flv -f ...
0
votes
1answer
17 views

Instrumentation run failed, when running halfninja android-ffmpeg-x264 ProjectTest

I am following https://github.com/halfninja/android-ffmpeg-x264 to create an Android project based on ffmpeg, x264. It has two projects after building: "Project", "ProjectTest" Apparently "Project" is ...
1
vote
1answer
23 views

Creating forks of `ffmpeg` in loop inside a shell script “loses” some iterations

I have a shell script that takes a directory as input, reads all mp4 files in it and convert them to a mp3 with ffmpeg: #!/bin/bash dir=$1 while read -rd "" file do base=$(basename "$file") ...
0
votes
0answers
19 views

Convert MPEG4 to MPEGTS on Android with FFmpeg

I have successfully compiled FFmpeg for Android by following FFmpeg-Android tutorial. I have written JNI file that uses libffmpeg. One function takes the location of MPEG4 input and MPEGTS output ...
0
votes
1answer
26 views

av_guess_format h264 returns NULL on Android

executing this code: av_log_set_callback(_log_callback); av_register_all(); avcodec_register_all(); LOG(avcodec_configuration()); AVOutputFormat * fmt = av_guess_format( "h264", NULL, NULL ); And ...
0
votes
2answers
25 views

How to convert RGB from YUV420p for ffmpeg encoder?

I want to make .avi video file from bitmap images by using c++ code. I wrote the following code: //Get RGB array data from bmp file uint8_t* rgb24Data = new uint8_t[3*imgWidth*imgHeight]; hBitmap = ...
0
votes
2answers
36 views

FFMPEG Complied Libraries And iOS

I have copied compiled FFMPEG libraries from a test app into my xcode-project but inspite of adding them into my project i am unable to use them, #include <libavcodec/avcodec.h> givers error ...
0
votes
0answers
16 views

ffmpeg thumbnailer configure/make trouble in CentOS6

I am using CentOS 6.4 86x64. What I am planning to do is install ffmpegthumbnailer. I have downloaded at the link below. https://code.google.com/p/ffmpegthumbnailer/ The problem is when I extract ...
1
vote
0answers
13 views

How do I create a streamable and seekable MP4? [migrated]

I want to create an MP4 that supports seeking and streaming. DASH appears to be what I want except that the segment seek points are stored in an external file (the MPD) which doesn't work for my ...
1
vote
0answers
47 views

How to minimize the delay in a live streaming with ffmpeg

i have a problem. I would to do a live streaming with ffmpeg from my webcam. I launch the ffserver and it works. From another terminal I launch ffmpeg to stream with this command and it works: ...
0
votes
0answers
12 views

undefined reference to 'memset' while configuring ffmpeg

I want to port ffmpeg on android to use it in an app (to convert video files in webm format). I use the following command to configure FFMPEG : ./configure --target-os=linux \ ...
0
votes
3answers
34 views

Output a video made of several video chunks of the input video

I was wondering if it was possible to output a video made of several extracts of the input video. For example outputting a video made of the first 10s of each minute of the input. I know you can do ...
0
votes
0answers
23 views

Using avfilter to properly mux multiple audio clips and images to one video

I have a little bit of experience working with FFmpeg but things just got a little complicated. I need to render multiple audio clips and images into a video. My toughs was to use avfilters and set ...
0
votes
0answers
33 views

VP9 encoding using FFmpeg [migrated]

I want to ask if ffmpeg supports VP9 encoding, and if not: how can I encode VP9 videos? I try using the command: ./ffmpeg-vp9 -y -i /home/mc/test.mkv -t 00:00:30 -c:v libvpx-vp9 -strict -2 -quality ...
0
votes
0answers
8 views

Encoding with variable frame rate in ffmpeg

Till now I was doing all of my encoding using fixed frame (programmatically) using ffmpeg. Now I need to support variable frame rate. I started with just commenting the portion of my code which was ...
0
votes
0answers
14 views

How to extract subtitles from .wtv file using ffmpeg?

does anyone know how to extract subtitles from a wtv file using ffmpeg? i have tried many different commands. None of them works. the closest is this one ffmpeg -i input.wtv -vn -an -codec:s:0 srt ...
-1
votes
0answers
9 views

How to use sozi2video.js and sozi2video.py ? in UBUNTU [closed]

Few days ago I have got the video export script link (https://github.com/senshu/Sozi/tree/dev/tools/sozi2video) basically two codes sozi2video.js and sozi2video.py. Two days now I am trying to ...
0
votes
0answers
20 views

Change .m3u8 Segment Path

I have successfully create HLS with FFMPEG. How do I make segment path in .m3u8 show only segment name? Current directory creation(bash): folder = '7580338' OUTPUT_DIR='global_assets/temp/'$(echo ...
0
votes
0answers
36 views

FFMPEG audio upsampling/resampling to 48000 Hz causes sound wheeze/noises/dissortions

I'm using the following example http://svn.gnumonks.org/tags/21c3-video/upstream/ffmpeg-0.4.9-pre1/output_example.c to make videos. If I use 44100 Hz for the output audio format it seems that all is ...
1
vote
0answers
66 views

Converting RGB images into lossless video with avconv / ffmpeg [migrated]

I am trying to convert a series of PNG24 images containing a screen animation to a lossless video, so that every pixel is reproduced exactly as it was in the original. But avconv (and ffmpeg) both ...
0
votes
1answer
61 views

IP-Cam / CCTV-Cam Live Streaming on iPhone/iPad

I want to get stream of an ip-cam on my iPhone/iPad and want to display it on screen. By R&D i found that ffmpeg is the only way to achieve it but i found nothing on ffmpeg. Is there any other way ...
0
votes
0answers
46 views

DirectShow Capture Source and FFMPEG

I have an AJA Capture card. The drivers installed with the card include some DirectShow filter. If I pop the filter into GraphEdit I see this: and if I run the ffmpeg command ffmpeg -f dshow ...
0
votes
0answers
12 views

Opening the ALSA microphone port using libavformat

I'm writing a fairly simple application to open the microphone port using the ALSA format on a linux VM. I'm trying to do this using libavformat and other ffmpeg libs ( avutil, avcodec, etc ). I ...
0
votes
1answer
23 views

PHP exec or shell_exec not returning process id (PID) on Windows Wamp

I am on windows 7, using a WampServer, and trying to use FFMPEG. The encoding works, but I can't get a process id back from either the exec() method nor the shell_exec() methods. This is my code : ...
-1
votes
0answers
22 views

How can I render video frames using QtFFmpegWrapper?

I have downloaded the latest QtFFMpegWrapper for Qt5, I am stuck with that how to configure the FFMPEG with QT5 and to render the video frames. My Configuration is QT5 intergrated with Visual ...
0
votes
0answers
15 views

Audio encoding using avcodec_fill_audio_frame() and memory leaks

As a part of encoding decoded audio packets, I'm using avcodec_fill_audio_frame(). I'm passing allocated AVFrame pointer to along with buffer containing the decoded samples and other parameters number ...
0
votes
0answers
15 views

Enabling ffmpeg Library at a Runtime?

Is it possible to enabling ffmpeg library(e.g librtmp) at runtime? (not from config build)
0
votes
1answer
45 views

Best server side video processing library or software [closed]

I need your suggestion on selecting the right command line tool that would allow me to process user uploaded videos. By processing I mean: Convert to flv, mp4, ogg etc formats Modify quality, ...
0
votes
1answer
37 views

Using ffmpeg static libraries in an visual studio explress C++ 2010 project

As the title says, I have been trying to get ffmpeg/libav libraries to work in MSVC++ 2010. However, I keep running in the following error while coding on debug mode. code: extern "C" { ...
0
votes
0answers
16 views

Air and ffmpeg with NativeProcess

I´trying to create an Air application that can generate a movie file via ffmpeg. I´m using NativeProcess and it all works fine if (and only if) I add an ffmpeg that is compiled on my computer to the ...
0
votes
0answers
26 views

Fast gnuplot terminal compatible with ffmpeg

I am using gnuplot to make some thousands of frames from raw data, I then make a video with ffmpeg (the easiest way I know to use advanced codecs like x264). The frames are not complicated: just few ...
2
votes
1answer
50 views

Streaming video from an image using FFMPEG on Windows

I wrote a program that simulates a camera and converts the output into a video stream. The program is required to be able to run on Windows. There are two components in the system: Camera Simulator. ...
-1
votes
0answers
49 views

How to build ffmpeg and x264 for iOS 6.0?

Here's my configuration: ./configure --enable-libx264 --enable-gpl --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib --disable-doc --disable-ffmpeg --disable-ffplay ...
0
votes
1answer
61 views

FFMPEG static build with RTMP support?

Is there any FFMPEG static build(linux CentOS in my case) download link with an RTMP support(--enable-librtmp)? I have try to build one but it's unsuccessful.
0
votes
1answer
30 views

Traceback error with Python when using ffmpeg to convert a video

The simple way my script runs is the user provides a folder location and a filetype and glob.glob() finds the files with the filetype provided and adds them to a list. It then uses a for loop and goes ...
0
votes
0answers
14 views

Video processing to support different web players and qualities [closed]

I am trying to accomplish something similar to youtube player. The biggest issues I'm facing now is how should I process user uploaded video file. For example since i want to switch between 240p, ...
1
vote
1answer
38 views

FFMPEG - format not available?

I'm converting some code from FFMPEG 0.8 to FFMPEG 1.2. I have an error during the call to the method avcodec_open2(): "Specified pixel format %s is invalid or not supported". The format I use is : ...
0
votes
2answers
31 views

php exec() works on some calls, not other similar ones

I have a php script that cuts up video. Here are three exec() commands - two execute properly while one does not: Works: sudo ffmpeg -i /home/vidserver/videos/$filename.mp4 -ss $ctime -t 00:00:06 ...

1 2 3 4 5 75