Questions about using the ffmpeg command line tool should be asked on Super User.
0
votes
0answers
62 views
Videoediting SDK C#
I'm currently working on a project were i have to collect a videostream from a videoserver. This is done by the videoservers SDK where i get a videoclip output.
From this point i want to be able to ...
0
votes
1answer
115 views
error convert sample rate from AV_SAMPLE_FMT_FLTP to AV_SAMPLE_FMT_S16
convert sample rate from AV_SAMPLE_FMT_FLTP to AV_SAMPLE_FMT_S16 and play the openAL, get the following error(http://joxi.ru/B_JkUdg5CbDrWhe9oNI)
CONV_FUNC (AV_SAMPLE_FMT_S16, int16_t, ...
1
vote
1answer
67 views
ffmpeg brew yasm
I'm trying to install ffmpeg via brew. It error I get with yasm is
"Error: You must `brew link pkg-config yasm' before ffmpeg can be installed"
When doing so I'm told that my permissions are ...
0
votes
1answer
101 views
Get frame from live video stream
I am streaming live video from my camera on my android phone to my computer using the MediaRecorder class.
recorder.setCamera(mCamera);
recorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
...
0
votes
0answers
121 views
ffprobe or avprove returning plain text errors in JSON output
I'm running avprobe to get stream infomation about a video in JSON ...
avprobe -loglevel quiet -show_format -show_streams file.m4v -of json
This is basically the exact same thing as ffprobe or ...
1
vote
1answer
176 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
119 views
iOS FFMPEG encode images to video
I am trying to take a set of UIImages and create a video file out of them with FFMPEG. Seems there are lots of questions about this topic but non have been able to get this working correctly for me. ...
0
votes
1answer
74 views
FFMPEG: i need audio channels 7 & 8 to be the main audio track for a video
I have a video with 8 channels of audio.
I need tracks 7 (Left Stereo) and 8 (Right Stereo) to be the audio for the video (which I'm converting to flv).
I've tried playing with -filter_complex and ...
0
votes
1answer
69 views
ffmpeg to combine two mov files from iPhone
I'm trying to combine two videos recorded on an iPhone into one file with ffmpeg.
I've tried everything I could find and I can't get anything to work right.
My current line is
ffmpeg -i ...
0
votes
1answer
78 views
Join multiple flv with ffmpeg
i am trying to join two flv files using -concat option in ffmpeg-1.1 . I have created a list named mylist.txt and placed two flv files into it, but the problem i am facing is that the output of first ...
0
votes
1answer
69 views
Difference between audio encoding/decoding and format conversion
Recently i have been trying to convert an audio file from one format to another through ffmpeg. i was trying to do some google but results made me a little confused about the difference between ...
1
vote
0answers
111 views
FFMPEG: change sample rate/bit rate of a video with android-ndk
hi I am trying to change the sample rate of the audio streams of a video file using ffmpeg. but i am not able to change audio of the original file. Till now i am able to read audio and video streams ...
1
vote
0answers
69 views
ffmpeg and jwplayer video not working
The converted .mp4 file through ffmpeg is working fine in my local machine. The command which i used is
exec('ffmpeg -i inputfile.flv -vcodec libx264 outputfile.mp4');
But it is not working in the ...
0
votes
1answer
203 views
video created using ffmpeg and H264 codec does not play on android :player says it is not a divx file
I have created a video from images using ffmpeg and H264 codec in C.
I can run the video using a 3rd party player (V player ) on android devices.
But the native player does not play the video. IT says ...
2
votes
1answer
112 views
C++ FFMPEG not writing AVCC box information
I'm trying to encode raw H264 into an mp4 container using the FFMPEG API in C++. It all works fine, however the AVCC box is empty, and it returns the error:
[iso file] Box "avcC" size 8 invalid
If I ...
-1
votes
1answer
66 views
Android streaming screen [closed]
Im able to share screen via ffmpeg
./ffmpeg -f fbdev -r 24 -i /dev/graphics/fb0 http://localhost:8090/feed1.ffm
But the output live stream is very slow.
Following is the conf file which I'm using.
...
0
votes
1answer
130 views
Install ffmpeg in windows 7 x64
I have a problem to install ffmpeg, I tried several tutorials but did not.
I tried using the dll and executables but could not get the result is always.
"Fatal error: Call to undefined function dl ...
0
votes
3answers
454 views
C# - Capture RTP Stream and send to speech recognition
What I am trying to accomplish:
Capture RTP Stream in C#
Forward that stream to the System.Speech.SpeechRecognitionEngine
I am creating a Linux-based robot which will take microphone input, send ...
2
votes
0answers
54 views
Identifying Audio bit rate using FFMPEG
I'm using FFMPEG to identify the bit rate of an audio file in my Rails app. I am downloading the file from S3, and storing temporarily in the tmp folder, then running FFMPEG commands against it.
...
0
votes
1answer
176 views
Livestream of prerecorded flv videos with ffmpeg and red5
My goal is to acheive the following steps :-
rtmp livestream of prerecoreded flv videos using ffmpeg.
videos should be played continuously just like a tv station.
We are currently using red5 and ...
0
votes
0answers
145 views
FFMPEG: convert a mp4 to mp3 using ffmpeg-android ndk
I want to convert a video file of mp4 format to audio file of mp3 format. It is simple through command line but i cannot find how can i convert it through jni. Not sure which library and which ...
0
votes
0answers
148 views
Decoding realtime h264 stream using ffmpeg.Do I need to set zero-lantancy to ffmpeg.How to set it
I write something like realtime video conference application.
I use x264 library to encode a realtime video data, Then I put the data to another end throughout the network. I want to decode ...
0
votes
1answer
96 views
Setting B frames in a video with ffmpeg
According to ffmpeg manual, setting -g is to define space between "I" frames, and setting -bf to use "B" frames. The former I got, but the latter not.
The goal: I'm trying to have a video with a GOP ...
0
votes
0answers
114 views
ffmpeg decoding yuv420p to rgb shifts luminance/brightness down
I'm recording video from a grayscale camera into an MPEG4 video file using FFMPEG. Recently I noticed a weird effect: if I playback the file using FFMPEG or windows media player, the output frames are ...
0
votes
1answer
145 views
FFMPEG - Read video file and convert to Bitmap
I can successfully read a video file using ffmpeg
Now i want to show these video frames on my MFC mdi.
For that i need a bitmap to feed my CBitmap::FromHandle() function
...
1
vote
0answers
105 views
Trying to compile the FFMPEG libraries for iPhoneOS platform with armv6 and arv7 architecture
I'm trying to compile the FFMPEG Libraries for IOS platform with arm7 architecture. I downloaded the FFMPEG libraries from http://www.ffmpeg.org.
I'm successfully able to build the static libraries ...
0
votes
1answer
63 views
app crashed at avformat_find_stream_info
I write a native method to simply get the codec id of a video, but my app never pass this line 'avformat_find_stream_info(pFormatCtx, NULL)'
here is my native method:
int get_video_info(JNIEnv *env, ...
1
vote
1answer
89 views
FFmpeg: calculate time to convert images and .mp3 to a video
Is there any formula that I can use to calculate the time that FFmpeg uses to convert a single .jpg image and .mp3 song to a video?
I am using the following code:
ffmpeg -loop 1 -r ntsc -i ...
1
vote
1answer
48 views
What is the correct path video using Streamio FFMPEG on Rails
I follow this gem https://github.com/streamio/streamio-ffmpeg , then I do this :
movie = FFMPEG::Movie.new("#{Rails.root}/public/aaa.mov")
but the result is :
Errno::ENOENT: No such file or ...
0
votes
2answers
287 views
geting no result from GetStringUTFChars JNI
android NDK for my android application. i am stuck on the starting lines and it is not compiling further. Following is my code. It doest not compile after "str = (*env)->GetStringUTFChars(env, ...
2
votes
0answers
161 views
Resolving rtmp stream url from Adobe Flash container
How can a rtmp stream url be retrieved completely with its playpath and be played with ffplay/avconv from a flash plugin. In embedded flash code below rtmp address exits (rtmp://live.atv.com.tr/atv) , ...
0
votes
0answers
369 views
Using OpenCV 2.4.4 with FFmpeg in Windows
I know there are other questions dealing with FFmpeg usage in OpenCV, but most of them appear to be outdated.
By opening up the makefiles in CMake, I can verify that I've got the WITH_FFMPEG flag on. ...
0
votes
1answer
135 views
FFMPEG audio decoding: efficient conversion from short to float sample buffer
I am using the FFMPEG avcodec_decode_audio* to decode audio input files of various types. The resulting samples are of type SHORT.
These samples are processed with another library which requires the ...
0
votes
0answers
130 views
rtp streaming using av_interleaved_write_frame or av_write_frame
I am using ffmpeg windows libraries to rtsp/rtp demux and muxing. But I have problem about processing time of av_interleaved_write_frame or av_write_frame, for example for h264 encoded 1920x1080 ...
4
votes
1answer
178 views
ffmpeg Video Scan Progress during Frame Extarction
I scan input video to extract certain frames using ffmpeg's select filter. The selection is based on a complex creteria and the number of extracted frames can't be predicted (I'm doing scene ...
0
votes
0answers
162 views
avcodec_find_encoder(AV_CODEC_ID_H264) returns null
I am building an android application which will encode image captured from camera preview and later decode it. I am using ffmpeg library to encode and decode. To build static library with x264 I have ...
0
votes
1answer
120 views
How to use the result of guardian-ffmpeg-Android?
I am trying to build ffmpeg on Android. There are many tutorials. Some are very old.
So I want to try one that can use newer version of ffmpeg and Android NDK.
After long time searching, I find one, ...
0
votes
1answer
118 views
H.264 is patented. What happens when developing a commercial app in Android using H264 codec in ffmpeg? [closed]
H.264 is patented.
In countries where patents on software algorithms are upheld, vendors
and commercial users of products that use H.264/AVC are expected to
pay patent licensing royalties for ...
0
votes
0answers
68 views
using pocketsphinx_continuous with a .wav file
I am attempting to write an application that will allow a user to speak a small set of commands from a remote system and have them executed on my server. Using pocketsphinx to parse the spoken text. ...
1
vote
0answers
53 views
ffmpeg fails on conversion from .mov to .mp4 fails aT 98%
Our code is below. When converting a uploaded .mov to .mp4 the conversion halts at 98%.
Almost all of our other preferred formats encode flawlessly. Anyone has any clue on where we went wrong? We ...
1
vote
2answers
57 views
Simulating TV noise
I have googled a bit but was never able to find an answer. What should be my first approach to simulate a video and audio noise from TV on screen? I mean, when my TV antenna is removed but the TV is ...
0
votes
0answers
19 views
ffmpeg wav output length not correct or consistant
Trying to run a very simple command via php a exec() command. All my other commands are working fine except for a simple audio trim that I am trying to run.
The user posts a file, and a start time ...
0
votes
0answers
112 views
Streaming video segments uploaded in real time
I have an application that send quicktime video segments (5s) to a nodejs server that convert them into mpeg-ts in order to stream them to a wowza server in real time :
ffmpeg -i tempPath -c copy ...
0
votes
1answer
82 views
FFmpeg streaming: can't see image from h263 stream in flash
I'm using FFmpeg for live rtmp-streaming of my desktop to Wowza. If I publish stream in h264 or flashsv2 codec, everything works fine, but I need h263 support too. The problem is, that I see no images ...
0
votes
0answers
250 views
OpenCV+ffmpeg: Set max_analyze_duration?
import sys
import cv
video = "http://192.168.1.15:8000/video.mjpg" # from motion
capture = cv.CaptureFromFile(video)
print capture
cv.NamedWindow('Stream', 1 )
while True:
frame = ...
0
votes
0answers
37 views
Getting Error during executin native android code
Error on my console
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
Your group is currently "mkpasswd". This indicates that your
gid ...
0
votes
1answer
321 views
Using FFMPEG to losslessly convert YUV to another format for editing in Adobe Premier
I have a raw YUV video file that I want to do some basic editing to in Adobe CS6 Premiere, but it won't recognize the file. I thought to use ffmpeg to convert it to something Premiere would take in, ...
0
votes
0answers
136 views
Capture RTSP stream with FFmpeg with not frequently URL
FFmpeg doesn't capture RTSP URL like this:
rtsp://domain.com/path/stream?getParam1=x&getParam2=y
Only like this:
rtsp://domain.com/path/filename.extension
Do you have a tip?
0
votes
0answers
41 views
ffmpeg no video with supported format and mime type
Im using ffmpeg on centos6.
Im trying to convert a video I have mpeg4 selected as output extension.
When I try to view the video in firefox I get the following error - no video with supported format ...
2
votes
0answers
111 views
Video processing / playback with alpha channel in C# or C++ [closed]
WHAT I'M AFTER
I've been exploring the best ways to do this, but seem to keep running into hiccups when trying to playback video and then grab the frame with an alpha channel (ARGB) to then be ...



