Tagged Questions
1
vote
1answer
34 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 : ...
-1
votes
0answers
26 views
FFMPEG Transcoding suddenly stops
I am using ffmpeg to transcode an rtmp stream using the code below:
ffmpeg -y -i rtmp://server/videochat/testing -acodec libfaac -ac 2 -ab 64k -vcodec libx264 -f flv ...
0
votes
1answer
28 views
ffmpeg loop not found error
I am trying to use image.gif as a still for the entire duration of audio.mp3, and make a video from it. here is the current command I am using
ffmpeg -i audio.mp3 -loop 1 -i image.gif -acodec copy ...
1
vote
1answer
84 views
FFmpeg on windows 7, encode video in mp4 for HTML 5 video fail
I try to encode my video with FFmpeg, to convert to mp4.
But the video doesn't work on html 5. I don't understand why.
I found this command on the web and I tried it:
ffmpeg.exe -i wildlife.wmv -b ...
1
vote
1answer
159 views
Encoding a screenshot into a video using FFMPEG
I'm trying to get the pixels from the screen, and encode the screenshot into a video using ffmpeg. I've seen a couple of examples but they either assume you already have the pixel data, or use image ...
0
votes
0answers
122 views
FFmpegFrameGrabber crashes 100% of time attempting to compress video on Android
I am attempting to use javacv/ffmpeg to compress video on an Android device prior to upload. I am using this code:
FrameGrabber grabber = new FFmpegFrameGrabber(inputFile.getAbsolutePath());
...
1
vote
1answer
117 views
Why does FFMPEG always make large WebM files?
I'm trying to encode my movies into WebM:
ffmpeg -i input.MOV -codec:v libvpx -quality good -cpu-used 0 -b:v 10k
-qmin 10 -qmax 42 -maxrate 10k -bufsize 20k -threads 8 -vf scale=-1:1080
-codec:a ...
0
votes
0answers
35 views
Encoding/Decoding Video
I am new to AVFoundation and Mac OS X application development and I have been searching a solution to my issue for past few weeks.
I am creating a project which converts the video in mp4 format to a ...
1
vote
2answers
359 views
Video encoding and keyframes
I am transcoding a video frame by frame and using x264+ffmpeg to encode. The original video plays fine, but the first few frames of my transcoded vide show grey artefacts. I understand this is because ...
0
votes
0answers
256 views
FFMPEG: Invalid Pixel Format String -1 when converting MP3 to SWF
I'm having an issue with FFMPEG - receiving an error when trying to convert an MP3 into an SWF. The full output contains:
$ ffmpeg -i track1.mp3 -y -ar '44100' -ab '96k' 'sample.swf'
FFmpeg ...
0
votes
1answer
519 views
X264 & ARM encoding on Android
I recently built a Video encoding class that runs on Android using ffmpeg and native code. I am surprised by the time it takes to encode a video, about 1 frame / second at best. I have tried with x264 ...
0
votes
1answer
196 views
FFMPEG x264 encoding on Android - error with lookahead
I am using FFMPEG + x264 on Android to encode YUV420 frames to a video file. I use the following code on each frame to encode them:
avcodec_encode_video2(gVideoWriteCodecCtx, &packet, ...
0
votes
1answer
151 views
FFmpeg and Android encoding issue
I compiled ffmpeg for Android. The executable works from the device terminal and I can do normal video operations. I am trying to join 2 mpeg files captured using the camera at the command line on the ...
0
votes
0answers
95 views
H.264 encoding using FFMPEG - some videos not working
Can anybody provide their 'most robust' FFMPEG command line for encoding to H.264? We've tried a few but some videos do not want to play ball. I'm sorry, I don't have the exact errors on hand - was ...
3
votes
0answers
821 views
Encoding raw YUV420P to h264 with AVCodec on iOS
I am trying to encode a single YUV420P image gathered from a CMSampleBuffer to an AVPacket so that I can send h264 video over the network with RTMP.
The posted code example seems to work as ...
0
votes
0answers
372 views
How to use x264 for encoding with ffmpeg?
I tryed to use ffmpeg for encoding video/ But it fails on initialization of AVCodecContext annd AVCodec.
What I do:
_codec = avcodec_find_encoder(CODEC_ID_H264);
_codecContext = ...
0
votes
1answer
286 views
How to sync between recording and input live video stream?
I am working on a project in which I am receiving raw frames from some input video devices. I am trying to write those frames in a video files using FFMPEG library.
I have no control over the frame ...
1
vote
1answer
1k views
How to reduce size of moov atom of H.264 movies to improve streaming start for smartphones?
We run a video service streaming movies to smartphones (iOS&Android).
We are encoding in H.264+AAC and using the mp4 container.
We have a problem that long movies (60 minutes+) take a very long ...
0
votes
0answers
132 views
Need a workaround for error in xuggler todo with vorbis
I have been at this for days, I am using xuggler, the only version i can use is 3.4 because upto 4.4 writing to outputstream directly causes jvm crash.
I need to encode audio using vorbis, however, ...
0
votes
0answers
385 views
avconv framerate not encoding
I'm attempting to encode a video from a folder of .png's using avconv. I have 480 images and I want the video to encode at a framerate of 240 fps. I'm entering the following code. What I think I ...
1
vote
0answers
539 views
Xuggler Encoding video of Desktop With Audio - audio has gaps
I am using Xuggler to convert images captured from the java Robot class and sound read from TargetDataLine class and encoding this into a video. I am then attempting to http stream this video data ...
0
votes
2answers
157 views
Paste one video to another on top layer
I have over 100+ videos and i need to paste one 5 sec avi video on top layer of every video (something like watermark or animated logo). It can be performed with Adobe Premiere, but its too long and ...
1
vote
0answers
312 views
ffmpeg usage - quad core still overloaded
I have a 3.2GHz Quad Core Xeon E3-1230 CPU, Passmark CPU mark Score of 8,200, 32GB ram - and I can't do more than 4 ffmpeg commands/sessions without being overloaded. When I execute a ffmpeg session, ...
1
vote
2answers
348 views
sws_scale screws up last pixel row in smaller x264 mp4 encoding
I am muxing pictures in the PIX_FMT_ARGB format into an mp4 video.
All of it works well, except that the last pixel row of the outgoing image is screwed up, in most cases the last row is completely ...
1
vote
1answer
2k views
ffmpeg API h264 encoded video does not play on all platforms
Edit: In the previous version I used a very old ffmpeg API. I now use the newest libraries. The problem has only changed slightly, from "Main" to "High".
I am using the ffmpeg C API to create a mp4 ...
2
votes
2answers
2k views
Encoding for HLS using FFMPEG results in have a decreasing DTS
I am trying to encode video for HTS live streaming, but am having problems with validating the stream using Apple Media Validator (mediastreamvalidator).
(my test file: ...
0
votes
1answer
2k views
Encode image to video using ffmpeg (sws_scale)
I'm trying to encode an image to video using ffmpeg library.
I have these global params:
//Global params
AVCodec *codec;
AVCodecContext *codecCtx;
uint8_t *output_buffer;
int ...
0
votes
0answers
223 views
FFmpeg seeking in Mpeg4 streams
I am currently attempting to develop a player that can perform accurate seeking based on an mpeg4 elementary video stream. I'm in the planning stage and trying to decide how to go about things and I'd ...
1
vote
2answers
601 views
Encoding using ffmpeg library fails
I've spent some time looking at the ffmpeg library and setting things up, I'm opening a .flv file. Reading and decoding and the frames, now I'm trying to encode it to MP4 but my packets end up empty.
...
2
votes
2answers
253 views
When does ffmpeg terminate?
I am running ffmpeg.exe through a Java code to encode a video file. How will my program come to know when ffmpeg terminated (i.e. video file is encoded)?
Here is the code:
...
2
votes
1answer
739 views
ffmpeg “Header Missing” error recoding mp3 files
I have an mp3 encoding server running on Ubuntu (natty). This has been working perfectly up until maybe a week or two ago. I believe I ran an update, which seemed to break the encoder for me - every ...
0
votes
1answer
721 views
ffmpeg encode image sequence
I have been using ffmpeg to convert a sequence of jpegs to a video using the following syntax:
ffmpeg.exe -f image2 -i image_%05d.png -vcodec mpeg4 -b 800k video.mpg
It doesn't work:
C:\Documents ...
0
votes
1answer
593 views
combine two audio files with a command line tool
I've to merge two (or more) audio files (like a guitar and a drum track) into a single file.
I'm running over linux CentOS and I'd need a command line tool to do so, because I've got to run this as ...
1
vote
1answer
507 views
Not able to encode image with ffmpeg
I am trying to encode one image with the help of ffmpeg library.. Actually i want to encode live video but for now i am starting with encoding an image..
Here is my code for that..
...
2
votes
1answer
3k views
FFMPEG: directly decode packets after encoding
using FFMPEG API, I try to encode a x264 video to a MP4 file with 0 frame latency and also, in realtime, show the currently encoded frame on screen (with encoding artifacts). The encoding to the file ...
1
vote
0answers
363 views
How to transcode a video using python and ffmpeg library (no commandline call)
I would like to transcode a video using python and ffmpeg. But I dont want to use a command line call like
call(ffmpeg -i ....")
I will need to deploy the resulting application using py2exe, ...
0
votes
0answers
401 views
FFmpeg change resolution
I have changed resolution video using next code:
pFrameOut = avcodec_alloc_frame();
avpicture_fill((AVPicture *)pFrameOut, video_outbuf, PIX_FMT_YUV420P, video_width_out, video_height_out ); ...
0
votes
1answer
640 views
Encoding Speex with libavcodec (FFMpeg)?
I successfully compiled libavcodec with speex enabled.
I modified example from FFMPEG docs to encode the sample audio into Speex.
But the result file cannot be played with VLC Player(which has Speex ...
0
votes
2answers
142 views
Web video timecode seek
On Youtube, you can seek to a particular video time, this is usually accurate to within one second.
I am trying to set up something similar (JWPlayer) has a plugin to allow seeking to a particular ...
1
vote
1answer
300 views
Covert raw image buffer into JPEG using LIBAVCODEC
I have a raw image buffer (in memory) captured from a camera that I want to convert into JPEG (for reducing size). The problem is that saving these images into .pgm format results into a huge file ...
0
votes
1answer
464 views
ffmpeg video encoding for mobile devices
I'm trying to encode the video file from f4v to mp4 for mobile devices and using 2 different ffmpeg versions with the same configuration files. Encoding goes ok for both files. The one that I convert ...
0
votes
2answers
981 views
Multi-bitrate encoding with ffmpeg
How can I generate multiple versions of the same video file at different bitrates that are properly key-frame aligned? Is it posible with ffmpeg?
Here is an article with example ...
2
votes
1answer
420 views
How many key frames have been encoded in my video? ffmpeg was the encoder used
I am attempting to add a keyframe every second using "-g 25" as an option with ffmpeg.
I need a way however, to query the output video, and other videos on my server to see how many keyframes have ...
2
votes
1answer
3k views
MPEG-TS Segments HTTP Live Streaming
I'm trying to interleave MPEG-TS segments but failing. One set of segments was actually captured using the built in camera in the laptop, then encoded using FFMPEG with the following command:
ffmpeg ...
1
vote
0answers
1k views
H264 encoder settings
I'm using xuggler to encode a series of images to an MP4 file. I use the following code to setup the IStreamCoder and specify the H264 codec:
// only set if codec is H264
...
1
vote
2answers
3k views
How to encode using the FFMpeg in Android (using H263)
I am trying to follow the sample code on encoding in the ffmpeg document and successfully build a application to encode and generate a mp4 file but I face the following problems:
1) I am using the ...
1
vote
1answer
2k views
Theatrical quality ffmpeg/x264 encoding of a high-motion 1080p video
I've been struggling with encoding videos using FFMPEG and x264. The output stutters when played back in Quicktime, while in VLC it shows a lot of compression artifacts at the same places Quicktime ...
0
votes
2answers
502 views
Trying to determine h.264 profile & level pragmatically
Ideally the solution would be in python and cross platform, but that's probably not too likely, so all I require is it work in linux, and I can use a c extension to interface w/python if necessary. I ...
0
votes
3answers
464 views
FFmpeg can 'encode' to mp3, but will not accept an 'input' mp3
FYI: Fedora 8 running on Amazon EC2...
Having a difficult time with FFmpeg doing a (what should be pretty simple) conversion. I can get FFmpeg to encode an mp3 file from an m4a file using the ...
4
votes
1answer
410 views
encoding a video for looping?
This is somewhat related to Looping a video with AVFoundation AVPlayer but that question is answered. What I'm trying to achieve is seamless looping using an AVPlayer. There is a noticeable stutter ...

