libavcodec is a free software/open source LGPL-licensed library of codecs for encoding and decoding video and audio data.
0
votes
0answers
31 views
Simple Build of Libavcodec.so and libavformat.so on Mac
Who needs ffmpeg? Not me. What I need is to be able to decode a video stream along with its audio stream, so that can put the frames on an opengl surface in sync with the audio.
FFmpeg is a tool ...
0
votes
0answers
41 views
Green screen writing FLV file libavformat
I've written a piece of C++ code that can capture webcam video frame, decode them, convert them to YUV420P, encode them and then write them to a file. If I use the mpeg2 codec and write to a .mpg ...
1
vote
0answers
28 views
Green output writing FLV file libavformat
I've written a piece of C++ code that can capture webcam video frame, decode them, convert them to YUV420P, encode them and then write them to a file. If I use the mpeg2 codec and write to a .mpg ...
0
votes
1answer
75 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
1answer
62 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
1answer
48 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 ...
0
votes
0answers
21 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 ...
0
votes
0answers
47 views
installing pyffmpeg (libavcodec file/dir seems missing) fails
after downgrading to cython 0.13 to be able to install pyffmpeg without cython errors (sigh, this lib is being a pain, yeah),
the install procedure for pyffmpeg ended after calling the error: ...
1
vote
1answer
47 views
avconv timelapse error: no such file or directory
I'm trying to make a timelapse from a bunch of jpgs. They've been dumped in /home/sd/capture
The command I'm trying to use is:
avconv -r 30 -i /home/sd/capture/0%04d.jpeg output.mpeg
Is there ...
1
vote
0answers
98 views
How to set x264 baseline profile with libav in C++
I am writing a small tool, which converts a video into a raw h264 file. These files shall be played later by a SIP phone. I have the following code:
eccx->pix_fmt = PIX_FMT_YUV420P;
...
0
votes
1answer
45 views
Not able to read audio streams with ffmpeg
I am trying to solve a big problem but stuck with very small issue. I am trying to read audio streams inside a video file with the help of ffmpeg but the loop that should traverse the whole file of ...
0
votes
1answer
70 views
How to encode with ffmpeg if number of images smaller than GOP size
The code bellow creates mp4 video file from jpeg images. When number of images is greater than GOP size the encoding success and after 10th image gotPacket that returned by avcodec_encode_video2 is > ...
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 ...
0
votes
0answers
131 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 ...
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 ...
3
votes
1answer
63 views
What do these two parts of libavcodec/h263data.h do exactly?
Below are two segments of code from the FFMPEG library, specifically located here: libavcodec/h263data.h (http://ffmpeg.org/doxygen/0.6/h263data_8h-source.html).
I would like to know more about how ...
0
votes
0answers
53 views
Properly using sws_scale
I'm picking h.264 from a TCP Data Stream. I've gotten to the point where I can use libav to decode the packets. This of course results in an AVFrame. From there, I need to write the frames out to ...
0
votes
1answer
182 views
how is http live streaming sync between sender and receiver done?
Http live streaming is a sliding window of a video source. what happens if the sender is slightly faster or slower than the receiver? The receiver will hit one end of the sliding window. Does anybody ...
0
votes
0answers
107 views
vlc pays video created with libavcodec at wrong frame rate
As a test i'd like to create a video that has a framerate of 1 fps. When I create it like this vlc still plays it at 25 fps. does anybody have an idea?
AVFormatContext* formatContext;
...
0
votes
1answer
125 views
How to compile ffmpeg with rm/rmvb support?
I googled around and found no solution. What's the specific arguments to compile the newest version FFMPEG to support rm,rmvb format video? I am new in video proccessing. Thanks for any help.
0
votes
0answers
41 views
How to estimate I frame motion degree?
I am measuring video quality using the video's I frames. But I found some I frames contains motion,for example a dancing MV. As a result it is inaccurate to measure the sharpness of a video according ...
0
votes
1answer
92 views
How to get number of I/P/B frames of a video file?
I want to extract information of a video file to get the count of its I/P/B frames. How to do it in ffmpeg? Or should I programming using libavformat and libavcodec to do it? Many thanks!
0
votes
1answer
606 views
How to publish selfmade stream with ffmpeg and c++ to rtmp server?
Have a nice day to you, people!
I am writing an application for Windows that will capture the screen and send the stream to Wowza server by rtmp (for broadcasting). My application use ffmpeg and Qt.
...
0
votes
0answers
48 views
How to amplify audio in Libav
I use the avcodec_encode_audio() function to encode raw data from microphone, but it is very quiet (all mic settings set to max). Is there a quick way to amplify the audio or I must do it manually ...
3
votes
1answer
133 views
trouble compiling ffmpeg library and converter class
I am using this project as a reference : The code is avaiable at http://roman10.net/src/affmpeg.zip.
I am trying to compile this project with ffmpeg with different configuration than the project ...
0
votes
1answer
160 views
Using zeranoe libavcodec build in visual studio 2008
I am trying to use libavcoded shared build from zeranoe in visual studio 2008. I have tested my application using libavcodec in debug mode and it is running fine. but when i am trying to build the ...
0
votes
1answer
252 views
libavcodec video decoding not working
I am trying to decode video encoded with H264. I am sending AVPacket's data and its size to decoder code. there I am trying to decode the frame and display it on a GUI. problem is when I am decoding ...
2
votes
0answers
86 views
Is it possible to add audio at the end of an existing audio stream?
I managed to implement my decoding and encoding audio class with libavformat.
I can create and read mp3, ogg, ...
Now, I'd like to add a function to "record at the end of an existing audio file".
...
0
votes
1answer
237 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
131 views
Strange Sound produced by ffmpeg and SDL
I'm following the updated version of the original dranger.com/ffmpeg tutorial at https://github.com/mpenkov/ffmpeg-tutorial
The third step(Source code: ...
1
vote
0answers
59 views
recording with uncompressed audio speeds up video
I have been using a recorder (based on muxer example) satisfactorily for quite some time for various formats. Now I need to use uncompressed audio to go with MJPEG video and I notice video speeds up ...
0
votes
1answer
440 views
Convert .m4a to PCM using libavcodec
I'm trying to convert a .m4a file to raw PCM file so that I can play it back in Audacity.
According to the AVCodecContext it is a 44100 Hz track using the sample format AV_SAMPLE_FMT_FLTP which, to ...
0
votes
1answer
237 views
FFMPEG Error VC1 to X264 (maybe decoding VC1)
I am encountering the following error when transcoding using FFMPEG.
It seams to me that it's an error decoding the VC1 format and has actually nothing to do with the target format (x264) I want to ...
1
vote
0answers
86 views
Codec profile of AAC media file [closed]
I need to find out codec profile of some AAC media file. (I want to know if that file iz HE-ACC or some other codec profile).
I tried with source like this:
AVFormatContext* pFormatCtx;
...
1
vote
1answer
296 views
AVFrame to RGB - decoding artifacts
I want to programmatically convert a mp4 video file (with h264 codec) to single RGB images. With the command line this looks like:
ffmpeg -i test1080.mp4 -r 30 image-%3d.jpg
Using this command ...
0
votes
0answers
49 views
vmr9 surface with ffmpeg codec
I am a multimedia newbie, so pardon me if I am asking a stupid question.
I want to use VMR9 surface while using the codec's from FFMPEG library.
So far my search result tells that VMR9 has it's own ...
0
votes
1answer
303 views
encoding direcshow frame buffers by using libavcodec
I am trying to encode a stream buffer of frames grabbed by ISampleGrabber(directshow) by using libavcodec. After encoding those frame I am writing it into a file. But after completion file contains ...
0
votes
0answers
295 views
Example of libav audio encoding from raw pcm to OGG Vorbis
I am currently working on a tool to convert game media assets of multiple proprietary formats and converting them to more open formats. I am attempting to use the libav library http://libav.org/ to ...
0
votes
1answer
193 views
avcodec_decode_video2 always sets got_picture_ptr to 0 while using with live555
I am trying to decode frames using libavcodec. My applications retrieves rtp packets from on rtsp stream using live555. I have searched quite a lot for reasons of avcodec_decode_video setting ...
1
vote
1answer
449 views
Confused about x264 and encoding video frames
I built a test driver for encoding a series of images I have captured. I am using libx264 and based my driver off of this guy's answer:
StackOverflow link
In my case I am starting out by reading in ...
0
votes
1answer
80 views
Using std::vector<char> instead of fread() in libav encode/decode example
I am attempting to take the api-example.c which reads in a file using fread to instead use memcpy (or the like) as I have loaded the file I wish to decode & encode into a different codec in a ...
0
votes
0answers
81 views
When could fps be a guess and not exact value?
I use libavcodec for video processing.
The documentation of AVStream->r_frame_rate says
Real base framerate of the stream.
This is the lowest framerate with which all timestamps can be
...
0
votes
1answer
417 views
avconv - Passing list of image paths
I want to write a script that will generate a timelapse video based on a set input of image file paths. I understand that you can execute something like this:
avconv -r 15 -i %04d.JPG -s hd480 ...
0
votes
1answer
376 views
How to find and decode efficiently Nth frame with libavcodec?
Please, this is not duplicate of similar posts!
I want to find and to decode Nth frame, for example 7th frame.
As I understood, using time_base I can calculate how many ticks is each frame and by ...
3
votes
1answer
220 views
keyframe is not a keyframe? AV_PKT_FLAG_KEY does not decode to AV_PICTURE_TYPE_I
After decoding a packet containing AV_PKT_FLAG_KEY in the flags,
I was expecting to get I-frames, but instead I got P-frames:
After a call to:
avcodec_decode_video2(codecCtx, frame, ...
0
votes
0answers
54 views
Is there is another way to know why encoding fails besides got_packet_ptr param?
I try to create video from jpeg images(using libavcodec), so I use this function for encoding:
int avcodec_encode_video2(AVCodecContext* avctx, AVPacket* avpkt, const AVFrame* frame, int* ...
0
votes
0answers
276 views
How to convert Convert GIF to MPG using AVCONV
I want to create a MPG from a gif image. I used following code but I did not get output
shell_exec("avconv -f image2 -i test.gif -r 12 -s 300x300 foo.mpg");
But I got output as .flv
...
0
votes
1answer
386 views
How concatenate a array of videos using avconv
I want to concatenate a array of videos my array is
$interFIFO // array(
0=>test1.mpg,
1=>test2.mpg,
2=>test3.mpg,
...
-2
votes
1answer
650 views
how to convert a Image to video using avconv [closed]
i want to create a video from a image i used following code
shell_exec("avconv -f image2 -r 50 testimage.jpg output.mpg");
But when i trying to playing output video it shows stream contains no ...
0
votes
1answer
195 views
Decoder crashes after ffmpeg upgrade
Recently I upgraded ffmpeg from 0.9 to 1.0 (tested on Win7x64 and on iOS), and now avcodec_decode_video2 seagfaults. Long story short: the crash occurs every time the video dimensions change (eg. from ...