Re: [Libav-user] Error in compiling ffmpeg

2014-01-21 Thread Ramu Chakravadhanula
See if this can help you. http://ramu492.blogspot.in/2013/06/porting-ffmpeg-on-to-winodws7-and.html /Ramu On 21 January 2014 18:39, Mayank Agarwal wrote: > Hi, > > when i am doing ffmpeg compiling using > ./configure --toolchain=msvc > > i am getting the following error in config.log > > ./con

Re: [Libav-user] Build of ffmpeg library with libx264 support for QNX

2013-07-03 Thread Ramu Chakravadhanula
i guess it could be linker problem. can you post the command line statement, so that anyone can help if you are not pointing to right libraries. /R On 3 July 2013 23:49, Pavel Vazharov wrote: > Hello, > > I'm trying to build the ffmpege library with libx264 support for QNX. > > I'm using the fo

Re: [Libav-user] generate encoded video file from .png files

2013-06-11 Thread Ramu Chakravadhanula
fy the decoding > process. > > Best wishes, > Sergey > > > 2013/6/11 Ramu Chakravadhanula > >> okay. >> >> 1. decode the png using ac_codec_id_png >> 2. give this raw information to encoder. is it like this? >> >> /Boys21 >> >>

Re: [Libav-user] generate encoded video file from .png files

2013-06-10 Thread Ramu Chakravadhanula
okay. 1. decode the png using ac_codec_id_png 2. give this raw information to encoder. is it like this? /Boys21 On 11 June 2013 09:10, Sergey Fedorov wrote: > Hi, > I think you should first decode raw image data from PNG file. There is > AV_CODEC_ID_PNG in libavcodec. > > &

[Libav-user] generate encoded video file from .png files

2013-06-10 Thread Ramu Chakravadhanula
Hi, I have a series of png files and would like to encode them to a video file. most of the examples cover encoding a raw video file. However, I couldnt find one that covers using existing still images (especially PNG). Attached is the sample code that i found. can someone help me ? Thanks and Re