Tagged Questions
0
votes
1answer
17 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
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 ...
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 = ...
-1
votes
0answers
26 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
1answer
71 views
What is the best Library/SDK for Realtime 4k video Encoding?
My requirement is create a encoded video from raw frames in atleast 4k resolution. Presently I am recording videos @1080p using libavcodec (H.264, MPEG4). What will be the best solution for recording ...
1
vote
0answers
29 views
Converting series of images with ffmpeg results in black video [migrated]
I've just downloaded ffmpeg since it seems to perfectly match my needs (make a video from a set of pictures). I'm currently playing around with some examples just to get started and there's something ...
0
votes
0answers
30 views
Mathematically lossless encoding and decoding of RGB24 image sequence
I am trying to encode a RGB24 image sequence into a mathematically (not merely visually) lossless video. huffyuv was suggested on many online forums so I tried the following.
ffmpeg -i ...
0
votes
0answers
92 views
FFMpeg encoded video will only play in FFPlay
I've been debugging my program for a couple of weeks now with the output video only showing a blank screen (was testing with VLC, WMP and WMPClassic). I happened to try using FFPlay and lo and behold ...
1
vote
3answers
92 views
Why frame->pts increases by 20, rather than by 1?
Following the exmaples of ffmpeg: decoding_encoding.c and filtering_video.c, I process one video file taken by iPhone. The video file: .mov, video dimensions; 480x272, video Codec: H.264/AVC, 30 ...
0
votes
2answers
434 views
FFMPEG with PHP convert video to mp4 and snapshots
I have recently started working on a website where users can upload videos to, and I am a beginner with ffmpeg, however I have been searching and searching for how to do these things I want to do, ...
0
votes
2answers
115 views
segment does not contain sync frame
Whenever I split a video using Apple's mediafilesegmenter, using the following command: medifilesegmenter video.ts -t 10. I get the following error for each segment except the first:
segment does not ...
0
votes
1answer
47 views
How to build a daemon to encode video files on S3?
I am interested in running a daemon to go over user uploaded video files and encode them in an optimal format (and add some watermarks).
I was considering services such as Zencoder, Encoding.com, ...
0
votes
1answer
340 views
FFmpeg's AAC (“libfaac”) Codec Options?
For AAC ("libfaac") audio encoder, how can I specify the "MPEG Version" to either "MPEG-4" or "MPEG-2" through FFmpeg's command?
2
votes
0answers
44 views
Running FFMPEG in Android [duplicate]
Possible Duplicate:
ffmpeg for a android (using tutorial: “ffmpeg and Android.mk”)
I have tried several things running FFMPEG in android, searched around the whole net,No fruitful or direct ...
0
votes
1answer
236 views
avformat_write_header produces invalid header (resulting MPG broken)
I am rendering a video file from input pictures that come from a 3D engine at runtime (I don't pass an actual picture file, just RGB memory).
This works perfectly when outputting MP4 using ...
0
votes
1answer
75 views
scalability issues with video encoding on webserver
On a web application that im creating the user is allowed to upload a video. The video is converted to x264 using ffmpeg for iOS playback. So if there are too many users thats going to kill the web ...
3
votes
1answer
208 views
ffmpeg creating multiple output videos, splitting on gt(scene,x)
I want to split one video up into multiple parts based on detecting the first frame of each shot, by select scene in ffmpeg.
The following entry records the scene frames and creates a photo mosaic ...
0
votes
1answer
199 views
How to join two ffmpeg commands
i have a script which uses this ffmpeg command's parameters for encoding videos.
ffmpeg -i inputfile -acodec libfaac -keyint_min 20 -r 20 -vcodec libx264 -vpre hq -crf 25 -b 300k -bt 300k -y -v 0 -bf ...
1
vote
1answer
171 views
Video Slideshow from png files + mp3 audio
I have a bunch of .png frames and a .mp3 audio file which I would like to convert into a video. Unfortunately, the frames do not correspond to a constant frame rate. For instance, one frame may need ...
0
votes
1answer
328 views
av_write_frame fails when encoding a larger audio file to .mpg
I am encoding live rendered video data and an existing .wav file into an mpg-file.
To do that I first write all audio frames, and then the video frames as they come in from the render engine. For ...
0
votes
1answer
151 views
Dump libx264 encoding parameters in ffmpeg
Is it possible to get a list of parameter values used in libx264 while encoding a stream? I am using a ffmpeg binary to encode.
0
votes
2answers
383 views
Header missing in mpg, in spite of using avformat_write_header [closed]
I am encoding a live rendered video to mpg and/or mp4 (depends on the later usage of the video) using the ffmpeg C API. When encoding to mp4, everything is well. But when encoding to mpg, the ...
3
votes
1answer
645 views
Superimposing two videos onto a static image?
I have two videos that I'd like to combine into a single video, in which both videos would sit on top of a static background image. (Think something like this.) My requirements are that the software I ...
1
vote
1answer
659 views
Why decoding frames from avi container and encode them to h264/mp4 doesn't work?
I started using ffmpeg and I want to convert avi file to mp4/h264 file. I've read many posts including this, but I couldn't find any good example how to save frames to mp4 file. The code below is ...
3
votes
1answer
505 views
Images to Video converter in Android
I would like to convert multiple images(frames) to a video(MP4) in an android device. Also, I would like to convert video(MP4) into multiple images(for each frame). I have limited knowledge on FFMPEG, ...
1
vote
1answer
190 views
ffmpeg: several audio files + several images = 1 video?
I have about 500 audio clips and 500 images that I need to put together for a project I'm working on. Each video is made up of a number of audio clips and images. The order is already set by the ...
2
votes
2answers
457 views
How can I stream very long H.264 videos over HTTP without long startup times? (or: MOOV atom too large)
I want to stream videos of public meetings that are often 10 hours long. Users will generally be starting at some point in the middle of the video and jumping around frequently.
H.264 in an MP4 ...
0
votes
0answers
49 views
experiencing memory leakage issues before doing video encoding of images
We are building up Android 3D Animation App. We have quite a few (close to 1000) images.
This is taking time, as we are having memory leakages and next step is to video encoding with ffpmpeg.
Steps ...
0
votes
1answer
966 views
How to disable subtitles decoding in ffmpeg
I'm trying to convert some video file containing video, audio and subtitles streams into another format using FFMpeg. However, ffmpeg complains about the subtitles format - it cannot decode the ...
0
votes
2answers
260 views
FFmpeg input duration?
With FFmpeg you have the option -t which will set the duration of the output.
However I do not see a way to limit the duration of the input. Take this command
ffmpeg -i video.mp4 -c copy -t 60 ...
0
votes
0answers
215 views
HandbrakeCLI how to add external subtitle
I was using the command below:
HandBrakeCLI -Z Universal -i "C:\xampp\htdocs\xampp\sapoz\City_Hunter_1.flv" -o "C:\xampp\htdocs\xampp\sapoz\City_Hunter.mp4" --srt-file ...
0
votes
2answers
280 views
Is it possible to encode one yuv file to 3 h.264 files with different bitrates with one command?
I have a YUV file. I need to encode it to H.264 but using three different bitrates. Is it possible to do it with one command so the yuv file does not need to be processed muttiple times?
Here's what ...
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: ...
2
votes
1answer
2k views
Ffmpeg how to encode mpg into 2 channel aac?
This command will of course work:
avconv -i input.mpg -c:v libx264 -s 852x480 -c:a libfaac output.mp4
But that encodes the mpg into a file with these audio settings:
{
"index": 1,
...
3
votes
2answers
7k views
How to compile avconv with libx264 on Ubuntu 12.04.?
Is there any step by step guide on how to compile avconv in Ubuntu?
It seems hard to search for any tutorial with avconv compared to ffmpeg.
7
votes
1answer
278 views
Need help understanding HTML 5 audio/video meta data use and placement
I have spent a significant amount of time researching HTML 5 audio and video, however I am stuck understanding the encoding of the meta data. It seems that in my research, using programs like ...
1
vote
1answer
2k views
Maintaining exact aspect ratio when scaling videos using ffmpeg
I have a mkv video, which is a mix of multiple resolution recordings, e.g. I have the first few seconds of widescreen 16:9 (1024x576) resolution, and the rest of the video if 4:3 (768x576) resolution. ...
1
vote
1answer
120 views
FFMPEG produce sharper image from audio to video
I am using ffmpeg to create video file from by using the loop_input command and create an flv file as a wrapper then export it as mp4. For some reason when the video plays the image is clear as time ...
0
votes
1answer
170 views
How can I demux audio from video playing on HTML browser and mux it back to play
I have a requirement where I could able to demux audio from the video that was being played in the html browser and want to apply some effects to audio and mux back to play the video with this change. ...
3
votes
0answers
779 views
Is there a good set of ffmpeg presets to target multiple platforms available anywere? [closed]
I'm working on a web app that would let users upload a video.
The user's video should then be played on apps on a few platforms:
web, via flash
iOS native player
Android phones - hopefully all ...
1
vote
1answer
861 views
Encoding for HTTP Live Streaming with Xuggle
I have created a server system based on Xuggle to encode an incoming file to H264 and segment it. However, when playing the video back in Quicktime it almost works (with a small hiccup in the audio ...
0
votes
1answer
716 views
ffmpeg h.264 invalid cutting
I have an s3 bucket with several hundreds video files.
Those files were created by cutting parts of larger video files using ffmpeg.
I wrote a script for this, which downloads the original video file ...
0
votes
1answer
266 views
understand what is the GOP size (i-frame/p-frame ratio) in a video
i am doing stuffs with a video in action script and i need to seek a video to acertain frame. according to the reference, using NetStream.seek i can seek only to the nearest k-frame:
Seeks the ...
0
votes
0answers
985 views
FFMPEG conversion from MOV to MP4 Issue: Only 1st second is converted
i'm trying to convert an MOV file to MP4.
I've tried so many options but the output file still only 1 second length.
This is one of the FFMPEG comand I used:
ffmpeg -i NY_BTS1PastryHQnew.mov -f ...
0
votes
1answer
913 views
Copying timecode into output file ffmpeg or ffmbc
I have media files in various formats that I want to be able to segment using ffmbc, same acodec, vcodec and container as original. I would like to be able to maintain the timecode data e.g. ...
0
votes
0answers
720 views
FFMpeg-example of encoding, decoding and playing frames of MPEG4-video continiously?
I am looking for an example-code for FFMPEG, which does the following:
Encodes a file using the MPEG4-codec frame by frame, putting the size of the different frames in an array, and putting the ...
4
votes
1answer
1k views
FFmpeg output file format with no extension
I'm developing a system which needs to store videos in the form:
/path/to/video/<md5 of the file>
So i do not have an output extension.
I'm using ffmpeg to convert those videos, but it seems ...
0
votes
1answer
395 views
Is there an easy way to use x264 presets with ffmpeg in code?
I'm trying to encode video with ffmpeg and x264. I know ffmpeg can use x264 presets when using the program ffmpeg from command line. But is it possible to easily use these presets when encoding with ...
1
vote
1answer
2k views
FFmpeg's -bt (Bitrate Tolerance) options…?
I want to encode video for Tablets and Mobile Phones by FFmpeg, is it important to set the '-bt' option?? If I just skip this option, does this affect the video playback on the devices??
‘-bt ...
0
votes
1answer
181 views
What is the minimum amount of metadata is needed to stream only video using libx264 to encode at the server and libffmpeg to decode at the client?
I want to stream video (no audio) from a server to a client. I will encode the video using libx264 and decode it with ffmpeg. I plan to use fixed settings (at the very least they will be known in ...

