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

learn more… | top users | synonyms

0
votes
1answer
46 views

ffmpeg caps audio bitrate to 128kb/s [closed]

I want to upconvert a file to 256kb/s. (I understand I am losing quality and all that, I know that I really want to upconvert a 64kb/s=>256kb/s) The command I am using ffmpeg -i "Same Love.m4a" ...
1
vote
0answers
33 views

FFMPEG Custom Read function reads all the data

I'm trying to implement a custom read function for ffmpeg that will retrieve a buffer from local video ( from device in the future) and then deocde this buffer, etc.. So, here's my read function ...
0
votes
1answer
45 views

Losing Audio When Converting VOB to MPEG-2 using FFMPEG [closed]

I'm using FFMPEG to convert VOB files to MPEG2 using ffmpeg -i file.vob -c copy out.mpg. It's converting the video fine, but the audio doesn't play on the resulting files. I get the [mpeg @ ...
3
votes
3answers
66 views

Realtime removal of carriage return in shell

For context, I'm attempting to create a shell script that simplifies the realtime console output of ffmpeg, only displaying the current frame being encoded. My end goal is to use this information in ...
0
votes
1answer
33 views

Audio decoding using ffms2(ffmegsource)

I'm using ffms2(ffmpegsource) a wrapper around libav to get video and audio frame from a file. Video decoding is working fine. However I'm facing some issues with audio decoding. FFMS2 provide a ...
0
votes
1answer
64 views

FFMPEG Decoding - Memory Leak

Developing an application for a test, I encountered an error. Meanwhile the packets were proccessed, I got a very horrible problem, a memory leak. The av_free_packet is applied correctly, I think ...
1
vote
1answer
125 views

ffmpeg - continuous file streaming over RTMP

I've been looking around for a simple (or perhaps not-so-simple) walkaround for a problem I am having in my set up for a simple test case: video streaming over red5 media server. I have built a ...
1
vote
1answer
38 views

Image pipe from php to ffmpeg

I'm tring to feed FFMpeg whith an image sequence through PHP in order to get a video out of it. I'm using this shell command to read from a text file the image filenames: cat $(cat " . ...
0
votes
0answers
20 views

Change in MP4 duration from actual Video duration

I have muxed a 10s H.264 video with 10s aac audio using FFMPEG into a mp4 container. But the total duration showed by VLC Player is 14seconds, any idea why this might happen?
0
votes
0answers
51 views

h.264 video in mp4 container jumps when played in VLC

I have H.264 video and AAC audio generated in Andriod phone recieved wirelessly using SIP protocol and muxed using FFMPEG APIs, The generated mp4 when played through VLC or other player is never in ...
20
votes
1answer
297 views

Function definition(?) without {}

I was reading avio.h (part of ffmpeg) and there is definition(?) like this: int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);. I don't get it. Could someone explain me ...
0
votes
0answers
80 views

Rebuilding opencv and ffmpeg with x264 results in java.lang.UnsatisfiedLinkError

I've followed the readme file included with the cppjars zip file from javacv, I'm able to successfully build the libraries but when i run my app with the new .so files i get a ...
1
vote
1answer
47 views

Skiping MP4 video

I like to create the video player to show videos on my website. I made a video player in flash CS5 and actionscript3 to stream the videos on the website. My videos are often flv or mp4 format. In the ...
0
votes
1answer
87 views

C - Transcoding to UDP using FFmpeg?

I'm trying to use the FFmpeg libraries to take an existing video file and stream it over a UDP connection. Specifically, I've been looking at the muxing.c and demuxing.c example files in the source ...
0
votes
0answers
37 views

Xuggler not converting a .webm file?

I'm trying simply to convert a .mov file into .webm using Xuggler, which should work as FFMPEG supports .webm files. This is my code: IMediaReader reader = ...
0
votes
0answers
12 views

How to install sharedhostffmpeg on a host running redhat linux while not being root?

The shared host is running on Red Hat 4.4.7-3. All these packages have successfully installed: - presetup.sh, autoconf.sh, automake.sh, libtool.sh, libiconv.sh, libpng.sh, libjpeg.sh, zlib.sh, ...
0
votes
0answers
49 views

How to queue ffmpeg FIFO

we build a service similar to youtube. Also converting runs fine with ffmpeg using this script from another post here: How do I set up an ffmpeg queue? #!/bin/bash pipe=/tmp/ffmpeg trap "rm -f ...
1
vote
1answer
55 views

Scaling YUV420P with libswscale - getting gray image out

I've got a basic understanding of the format of YUV420p data. I understand it's in planes and that the Y data is basically black & white luma and should be width*height pixels in length. The U ...
0
votes
0answers
53 views

iOS - Build/configure FFmpeg failing, “unable to create an executable file”?

I'm attempting to build FFmpeg for iOS. I've tried following several tutorials on doing this (for example, tutorial 1, tutorial 2), all of which result in the same problem: ...
0
votes
1answer
48 views

How to use libavformat to concat 2 video files with same codec (re-muxing)?

I have downloaded videos from CDN in flv format (video H264 and audio AAC) and remux to them to MP4 format. But videos are limited by length. So i've downloaded each video in several parts: started at ...
0
votes
1answer
25 views

what's the commond for converting mp3 to ape using ffmpeg

I've searched a day about how to convert the mp3 music file to APE. It's easy to convert APE to mp3 but I have no idea to convert mp3 to APE, thanks in advance;
-1
votes
0answers
29 views

ffmpeg, built for android unable to read input with spaces [closed]

I have been working on an android multimedia application, where i'm using ff-mpeg 0.11.1 (code name: Love). Ff-mpeg 0.11.1 has been built according to the guardian project. This project is working ...
0
votes
1answer
74 views

ffmpeg/PHP - Problems converting any video format to ogg - Choppy Video / No Audio - win64

Let me first appologize if this is a re-post/similar-post as I did my best to search for a specific solution to my issue within the already created posts on here, and on google, but could not. I am ...
0
votes
2answers
33 views

ffmpeg being called via PHP exec batch file

I'm using ffmpeg to extract images from a video file through PHP shell_exec method. This is all ok except if the image already exsists then ffmpeg won't overwrite it even with the -y option in the ...
-1
votes
1answer
31 views

making screenshots from a wmv video with ffmpeg in linux [closed]

when I try to make screenshots from a wmv video it shows- Error while decoding stream #0.1 - frame= 0 fps= 0 q=0.0 Lsize= -0kB time=10000000000.00 bitrate= -0.0kbits/s video:0kB audio:0kB global ...
0
votes
1answer
36 views

using node-fluent-ffmpeg to transcode with ffmpeg on windows not working

I'm trying to use the module node-fluent-ffmpeg (https://github.com/schaermu/node-fluent-ffmpeg) to transcode and stream a videofile. Since I'm on a Windows machine, I first downloaded FFMpeg from the ...
0
votes
0answers
14 views

How to append 2 video files [migrated]

Is there any way to append one video file to another ? I've got a very large file (2GB) to which I'm trying to append some tiny files (~4MB). They all are in the same format. It's easy to concat ...
0
votes
1answer
69 views

Decode h264 stream with ffmpeg introduces a delay, how to avoid?

I'm working on some code that encodes a video feed, sends it over UDP to a client that then decodes the stream. It working fine using a x264 encoder, my only problem is that when i call ...
0
votes
1answer
105 views

How to dump raw RTSP stream to file?

Is it possible to dump a raw RTSP stream to file and then later decode the file to something playable? Currently I'm using FFmpeg to receive and decode the stream, saving it to an mp4 file. This ...
0
votes
1answer
43 views

Can the frame size be cropped during decoding using libavcodec?

I've followed Dranger's tutorial for displaying video using libav and FFMPEG. http://dranger.com/ffmpeg/ avcodec_decode_video2 seems to be the slowest part of the video decoding process. I will ...
1
vote
0answers
27 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 ...
1
vote
1answer
105 views

Why do I get a crash only sometimes when closing input file with ffmpeg

I have a problem where only sometimes when I call avformat_close_input(&pFormatCtx) and it results in malloc check failed and my application crashes. I really need to use ffmpeg because I need to ...
0
votes
1answer
47 views

Media container for H264 and Opus [closed]

I am looking for a media container that can hold H264 video and Opus audio, allowing me to perform playback using VLC or equivalent. H264 is a hard requirement, and I picked Opus because of the ...
-6
votes
0answers
34 views

PHP, take snapshot from video(without using FFMPEG) [closed]

Please. Anybody have an idea about how to take a snapshot from a video using PHP,(Need it without using FFMPEG)!!!??. Thanks anyway
0
votes
0answers
24 views

How to run FFMPEG at my web host server

I want to perform some video process at my web host server. I don't think the web host server will allow me to execute an exe file for security reasons. Should I use SharpFFMpeg? I have downloaded ...
-2
votes
0answers
32 views

How to encode MKV with subtitles to MP4? [closed]

MKV file. ASS subtitle format. Trying to use ffmpeg to encode it to a streamable MP4 and WebM and OGV. But I find it difficult to carry over the subs. Can anyone help me with this?
0
votes
2answers
26 views

How to redirect the output of an invoked program to a file?

I've got some PHP code that, among other things, uses system() to call ffmpeg to encode a video. When I run this from a command line, I can redirect the output of the PHP script to a file in the ...
0
votes
1answer
73 views

Android audio processing using ffmpeg?

I am develloping my own android media player ,so i opted for ffmpeg for decoding, i've successfully decoded and rendered video but there is no sound now i don't know how to add audio decoding audio to ...
0
votes
0answers
18 views

how reset PTS while converting with FFMPEG

While converting *.ts file with ffmpeg, I want to set the start pts to be 10, or other pts. How can I do that? some people said setpts can help. I tried, but failed. Maybe my command is not correct, ...
0
votes
0answers
20 views

Ffmpeg-Build: Error during build

I am building ffmpeg and stuck in an unusual spot. Inside libavutil we have float_dsp.h and float_dsp.c files. Inside these file there is a declaration of a methond which is: void ...
1
vote
0answers
68 views

Build FFMPEG 1.2 (Code name magic) for android

I'm working on a multimedia project. Where i need to concatenate more than one videos. I found that ffmpeg concat demuxer has been added to ffmpeg fire flower (version 1.1). Somebody help me out on, ...
1
vote
0answers
18 views

ffmpeg drawtext initialization error [migrated]

I'm trying to convert an image sequence to a video file with some text overlay(eventually frame counter). The command I am using ffmpeg -r 24 -y -i mambo_%05d.png -i ..\3DW_Mambo.wav \ -vf ...
0
votes
1answer
54 views

How get sps struc from h264 video with libav ffmpeg

For my HW decoder I need know additional codec specification about video codec like h264? How I can extract low level codec info with libav ffmpeg? The data that I need: ...
0
votes
2answers
71 views

C - FFmpeg streaming from a C program?

I'm looking to replicate an FFmpeg command-line command in my C code. Specifically I would like to be able to run: ffmpeg -re -i video.mp4 -f mpegts udp://localhost:7777 One thing I've noticed when ...
0
votes
1answer
98 views

Video decoder on Cuda ffmpeg

I starting to implement custum video decoder that utilize cuda HW decoder to generate YUV frame for next to encode it. How can I fill "CUVIDPICPARAMS" struc ??? Is it possible? My algorithm are: ...
0
votes
1answer
63 views

Missing functions in new version of FFmpeg

I am upgrading a wrapper around ffmpeg to the most recent version of the library. Some functions have been renamed or replaced. For the most part I've been able to found equivalents easily, but the ...
0
votes
0answers
28 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
20 views

Difference between stream level and file level in ffmpeg

Concatenation of files with same codecs with ffmpeg Two methods Concat demuxer Concat protocol While the demuxer works at the stream level, the concat protocol works at the file level. Certain ...
0
votes
1answer
33 views

FFMPEG - build ubuntu 32 bit - missing shared library : libspeex

I am currently doing a cross platform software calling ffmpeg in c++ and I need a ffmpeg build working on both ubuntu 32bits and 64bits for the installer. I also need this ffmpeg build to include ...
0
votes
1answer
66 views

php-ffmpeg too slow - generating thumbnails?

first time I am trying to create thumbnail preview from video file, uploaded 700mb .avi film with 209747 frames. Now I am trying to create 1 thumbnail, but it takes 4.7 seconds, because I've set frame ...

1 2 3 4 5 74