Libav is a cross-platform solution to record, convert and stream audio and video. It includes the audio/video codec library libavcodec.
0
votes
2answers
31 views
Setting individual pixels of an RGB frame for ffmpeg encoding
I'm trying to change the test pattern of an ffmpeg streamer, Trouble syncing libavformat/ffmpeg with x264 and RTP , into familiar RGB format. My broader goal is to compute frames of a streamed video ...
0
votes
2answers
52 views
av_free crashes application randomly - FFMPEG C++
I am trying to create a simple media-player for an introduction to the world of ffmpeg, the problem is that every time that I call av_freep(void*ptr) the application crashes.
If I don't call av_freep ...
0
votes
0answers
27 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
1answer
27 views
Can't record S-Video with avconv
I've been trying to record feed from my S-Video cable using avconv. I am able to record composite video with avconv, but the quality isn't the best. To set the input, I use v4l2-ctl -i $n, where $n ...
1
vote
1answer
33 views
Error scaling a video using libav filters [closed]
I need to batch-process a bunch of videos to scale their height to 240 keeping the aspect ratio same. The command that gets the job almost done is:
$ avconv -threads 4 -ss 0.0 -i input.avi \
-map ...
0
votes
2answers
74 views
SDL video overlay flickers with SDL_Flip
I use SDL and libav in C++ to draw a video on the screen in Linux. Most of my code for video opening is based on this tutorial, but I changed some functions that were deprecated. I initialize SDL like ...
0
votes
1answer
34 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
65 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
46 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
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 ...
0
votes
1answer
60 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
1answer
105 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
0answers
44 views
SDL_SetVideoMode fails under Android?
I am trying to buid a Video Player for android using libsdl for rendering and libav for decoding.
First, i cross-compiled the sdl library for Android platform.
Then i ceated the jni layer for my sdl ...
0
votes
0answers
324 views
Non monotonically increasing dts to muxer in stream 1 [closed]
I have an error with 1gb videofile and avconv
Application provided invalid, non monotonically increasing
dts to muxer in stream 1: 177873 >= 177849
av_interleaved_write_frame(): Invalid argument
...
1
vote
0answers
96 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
0answers
191 views
Rendering video streaming in android
I've successfully cross-compiled a c++ streaming library to the ICS platform
This library contains a sample player that uses sdl library to render the resulting decoded streams and libav for ...
0
votes
0answers
119 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
0answers
110 views
Avconv: Select german stream not highest quality one
I am converting some input stream from my DVB S2 Card to RTMP.
Everything works fine after switching to recent avconv and x264 :)
The only thing I couldn't find out is, how do I select the right ...
0
votes
1answer
90 views
Libav linking error: undefined references
Here's my problem:
I built ffmpeg from source (version 1.2), the libav* libraries are in /usr/local/lib and they're static
I'm compiling a ns3 (www.nsnam.org) module, so my only control over the ...
-1
votes
1answer
519 views
How to convert MP4 files to MPEG with avconv? [closed]
I have some video files in the MP4 format and I want to convert them to MPEG format files.
I try to convert with:
avconv -i 1.mp4 -fmp4 -target mpeg /mpeg/1.mpeg
but I get the following error
...
0
votes
0answers
50 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 ...
1
vote
0answers
57 views
How to add cyrillic text to AVFrame or IplImage
Latin text can be easily added by means of cvPutText(), but I need to add cyrillic text to IpImage (or AVFrame, it doesn't matter).
Could you please help me? Thank you!
0
votes
0answers
47 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 ...
0
votes
1answer
14 views
libav logs to a file
I want to redirect libav log messages to a file. FFmpeg have a environment variable "FFREPORT" to specify the file path to dump log messages. Is there any variable in LIBAV to specify log file path.?
...
1
vote
3answers
544 views
How to convert sample rate from AV_SAMPLE_FMT_FLTP to AV_SAMPLE_FMT_S16?
I am decoding aac to pcm with ffmpeg with avcodec_decode_audio3. However it decodes into AV_SAMPLE_FMT_FLTP sample format (PCM 32bit Float Planar) and i need AV_SAMPLE_FMT_S16 (PCM 16 bit signed - ...
1
vote
1answer
243 views
Encode rgb to yuv420p using libav
I'm trying to convert an vector of RGB image data (derived from a .png image) to YUV420p format using libav.
In the libav sample code the following is used to create a dummy image:
/* prepare a ...
0
votes
2answers
182 views
Copy a rectangular area from AVFrame - ffmpeg
I am trying to pull out a rectangular area of an AVFrame and have started on a function that will do so. I'm only interested in using AVFrames that are format PIX_FMT_RGB24. I may be reinventing the ...
5
votes
1answer
229 views
Where can I find modern tutorials for libav, ffmpeg, etc?
I want to make a quick program in C that will open a video, save each frame as a ppm, and dump motion vectors. All the tutorials I can find are from almost ten years ago and call deprecated or ...
0
votes
1answer
229 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
88 views
ffmpeg or libav to create audio recording webapp?
Is it possible to create a web application which can record audio or video using ffmpeg or libav?
Or are these only for creating desktop aplications for encoding, decoding, recording audio/video?
1
vote
0answers
58 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 ...
1
vote
1answer
152 views
VLC libx264 build error - “undefined reference to 'x264_encoder_open_128'”
Primary issue
Steps to attempt to repeat this error.
Download latest git (git://git.videolan.org/x264.git).
Run ./configure - You can use any options, the error is present with all.
Run sudo make - ...
1
vote
0answers
132 views
using libvo-aacenc with libav in C++ program
I'm making a program that records and encodes this recording to aac.I made a function for linux and libfaac that does this job. Now I need to make this program for windows.I know i need to use ...
0
votes
0answers
79 views
LIBFAAC cannot resample channels [closed]
Im using avconv to convert video files into MP4, but whenever I try to encode files with 6 or 8 channels into 2 channels using libfaac I get these error messages:
Can not resample 8 channels @ 44100 ...
0
votes
0answers
288 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 ...
3
votes
0answers
196 views
How do I encode KLV packets to an H.264 video using libav*
Currently I am using libav* to encode H.264 videos. I want to add KLVPackets to the bitstream but do not know where to implement it.
There is a struct within avcodec, but I am unsure of how to write ...
0
votes
1answer
79 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 ...
1
vote
1answer
654 views
How to control key-frame generation of ffmpeg?
I'm making a segmenter that intervene ffmpeg's write_frame function and write output data to separate files. Each segmented file contains segment of about 3 seconds video.
The code does following:
...
3
votes
1answer
214 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, ...
1
vote
0answers
79 views
Syncronize RTSP with computer time
I am successfully using libav to receive the video stream from an RTSP network source. The point is that I need to syncronize my computer's time with the video capturing, meaning that I need to know ...
0
votes
1answer
347 views
Thread Safety of LibAv/FFMpeg?
Is LibAV/FFMpeg thread safe? For example. Could i read from a file using AVFormatContext* in one thread and decode the read packet it in another with simple additions of mutexes or is the thread ...
3
votes
1answer
397 views
Decode a video file from memory using libav
Supose I have an entire video file in memory and I want to use libav to decode the whole frames. How should I do it? The point is that I can do it reading directly from a file using ...
1
vote
0answers
123 views
Write video in a memory stream using libav
I am successfully capturing video packets from the network using libav. Currently, I have an AVFormatContext object in which I can write the header, the packets, etc... The point is that I want to ...
0
votes
1answer
278 views
How are audio frames decoded by libavcodec?
Here is how my process of decoding an audio stream using ffmpeg's libav*
[videofile]--> (read audio packets) --> [pkts queue] --> (decoder) -->
speaker's sample buffer
for some reason i need ...
1
vote
1answer
59 views
libav video encoding ratecontrol.cpp:766
I'm having a bit of trouble trying to encode a video using libav.
I get an assert error from ratecontrol.c : 766 saying that q>0.0
I have no clue what is going on, I know that the letter q ...
1
vote
0answers
167 views
Encoding video on H.263 to send over RTP
I'm developing an application to send video over RTP to a client that can play only H.263 (1996) and H263+ (1998).
To do this i've encoded the video using libav following these steps: (this is only ...
0
votes
1answer
160 views
Undefined symbols in libav when compiling as C++, but not as C
I am trying to compile some simple code using the libav libraries.
// Some simple code to demonstrate
#include <libavformat/avformat.h>
int main(int argc, char *argv[]) {
...
0
votes
0answers
114 views
H.264 de-blocking filtering with FFmpeg libraries [closed]
I have a problem with filtering h.264 video. If you have a code for de-blocking filtering or is a link on this topic please help.
1
vote
1answer
127 views
libav Windows static libraries
I have googled a lot without success. Does anybody know how can I build libav static libraries (.lib) for use them in my projects?
Regards,
0
votes
1answer
214 views
LibAV Mpeg_TS stream doesn't appear to contain I frames
I'm trying to take a YUV 420 stream, convert it to MPEG2 and send it via UDP as a transmport stream.
The conversion appears to work correctly, by saving the output I can create a playable MPEG. When ...




