Questions about using the ffmpeg command line tool should be asked on Super User.
0
votes
0answers
18 views
How to Play Video using FFMpeg with Qt5?
I have downloaded the ffmpeg libraries, include and dll from ffmpeg website for windows 32 bit system.
Until now i have gathered information that the below two headers are useful for playing videos, ...
0
votes
0answers
15 views
ffmpeg video stitching error (error while opening decoder…)
I'm trying to stitch nine videos into one grid using this command:
/usr/local/bin/ffmpeg -loglevel debug
-i ./woohoo/7_video.mp4 -i ./woohoo/5_video.mp4 -i ./woohoo/6_video.mp4
-i ...
0
votes
0answers
31 views
How to get stream info from opened file in ffmpeg?
I am trying to read video file using ffmpeg. I had working code that corresponded to somewhat old version of it, and started to try and upgrade to latest build version, exchanging all those deprecated ...
4
votes
1answer
33 views
How do i know in the ffmpeg arguments command line what each argument do?
I have this code:
public void Start(string FileName, Bitmap Sample_Bitmap, int BitmapRate )
{
p = new NamedPipeServerStream(pipename, PipeDirection.Out, 1, ...
0
votes
0answers
5 views
MPEG DASH - do I need to have audio and video tracks as seperate source file for creating DASH package using mp4box
I have one source mp4, I tried to create MPEG DASH package using mp4box by GPAC.
I am able to play output MPD files in OSMO4 player by GPAC.
However I am not able to play the same in DASH JS player ...
0
votes
0answers
10 views
How to Play YUV sequence of images with JSP
I could get YUV images from Camera for 20 frames per second, i want to play it as live streaming on JSP page.
I have done some research about JMF/FFMpeg, maybe they could work with J2SE(Swing),but ...
1
vote
0answers
16 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
9 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
18 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
1answer
18 views
Ffmpeg send duration of video to client (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 with FFMPEG.
So far ...
0
votes
0answers
21 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
14 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
23 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
26 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
23 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
27 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
18 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
23 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
19 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
25 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
21 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
27 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
27 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
59 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
16 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
10 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
16 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
21 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
71 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
49 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
24 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
24 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
18 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
16 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
41 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
18 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. ...
