Re: [FFmpeg-user] Getting error when try to decode RTP playload with H263+ video codec

2018-08-13 Thread chetan goni
Hi Rafael , This is different codec,that is way i have created new thread. Thanks & Regards Chetan Goni On Tue, Aug 14, 2018 at 11:26 AM, Rafael Lima wrote: > man how many threads do you need to create to address this problem you > have? > > On Tue, Aug 14, 2018 at 2:35 AM, chetan goni wrot

Re: [FFmpeg-user] Getting error when try to decode RTP playload with H263+ video codec

2018-08-13 Thread Rafael Lima
man how many threads do you need to create to address this problem you have? On Tue, Aug 14, 2018 at 2:35 AM, chetan goni wrote: > Hi All, > > I am running below command to decode H263+ video > > *".//ffmpeg -f h263 -i video.bin -f flv out.flv"* > > Here: > > Video.bin = This RTP playload dump

[FFmpeg-user] Getting error when try to decode RTP playload with H263+ video codec

2018-08-13 Thread chetan goni
Hi All, I am running below command to decode H263+ video *".//ffmpeg -f h263 -i video.bin -f flv out.flv"* Here: Video.bin = This RTP playload dump contains video; *But getting error:* PS D:\ffmpeg\bin> .//ffmpeg -f h263 -i video.bin -f flv out.flv ffmpeg version 4.0.2 Copyright (c) 2000-2

Re: [FFmpeg-user] Regarding how to extracting video from RTPpacketsusing ffmpeg API or Source code

2018-08-13 Thread chetan goni
Hi Carl , It is not network dump,problematically i am dumpling RTP payload to binary file. Do you have any solution? Thanks & Regards Chetan Goni On Tue, Aug 14, 2018 at 12:44 AM, Carl Eugen Hoyos wrote: > [image: Boxbe] This message is eligible > for Automat

Re: [FFmpeg-user] Regarding how to extracting video from RTPpackets using ffmpeg API or Source code

2018-08-13 Thread Carl Eugen Hoyos
2018-08-09 14:40 GMT+02:00, chetan goni : > I have extracted RTP payload from RTP packets containing audio > and ran below command and got the audio file and played in vlc > > ffmpeg -f mulaw -ar 8000 -ac 1 -i Audio.bin output.wav > > But when i tried with video same procedure and it is giving er

[FFmpeg-user] Fade in not black out before start time

2018-08-13 Thread Joshua Grauman
Hi all, From what I'm seeing, a fade in like this, "[in]fade=t=in:st=5.0:d=1[out];" will black out everything in the video before the 5 second start time. Is there any way to have the fade in only affect the video from t=5 to t=6? Josh ___ ffmpeg-u

Re: [FFmpeg-user] Fade in filter and alpha channel fade in text

2018-08-13 Thread Joshua Grauman
Hi all, I am combining various effects, and I noticed that when I fade in a video using the [in]fade=t=in:st=2:n=24[out] syntax, and I fade in text using alpha='if(lt(t,2),0,if(lt(t,3),t-2,1))', that they both fade in roughly at the same time, but both are not linear. I'm guessing the fade

Re: [FFmpeg-user] Fade in filter and alpha channel fade in text

2018-08-13 Thread Michael Koch
Am 13.08.2018 um 10:08 schrieb Joshua Grauman: Hi all, I am combining various effects, and I noticed that when I fade in a video using the [in]fade=t=in:st=2:n=24[out] syntax, and I fade in text using alpha='if(lt(t,2),0,if(lt(t,3),t-2,1))', that they both fade in roughly at the same time, b

Re: [FFmpeg-user] Fade in filter and alpha channel fade in text

2018-08-13 Thread Joshua Grauman
Hi all, I am combining various effects, and I noticed that when I fade in a video using the [in]fade=t=in:st=2:n=24[out] syntax, and I fade in text using alpha='if(lt(t,2),0,if(lt(t,3),t-2,1))', that they both fade in roughly at the same time, but both are not linear. I'm guessing the fade=in use

[FFmpeg-user] unsubscribe

2018-08-13 Thread Anmol Mishra
From: ffmpeg-user on behalf of qw Sent: Monday, 13 August 2018 1:02 PM To: FFmpeg user questions Subject: Re: [FFmpeg-user] How to build static fontconfig with ffmpeg? Hi, >Andrew, how does your FreeType2 pkg-config file ('freetype2.pc') look like? >You're co

Re: [FFmpeg-user] How to build static fontconfig with ffmpeg?

2018-08-13 Thread qw
Hi, >Andrew, how does your FreeType2 pkg-config file ('freetype2.pc') look like? >You're compiling Fontconfig. Fontconfig requires FreeType2, which in turn (in >your case) requires LibPNG and Harfbuzz. >To have Fontconfig also recognize Freetype2's requirements (LibPNG and >Harfbuzz) I believe

Re: [FFmpeg-user] DVD video format

2018-08-13 Thread Francois Visagie
> -Original Message- > From: ffmpeg-user [mailto:ffmpeg-user-boun...@ffmpeg.org] On Behalf Of > JD > Sent: 12 August 2018 18:25 > To: FFmpeg user questions and RTFMs > Subject: [FFmpeg-user] DVD video format > > Hi all, > Every movie DVD I watch on my computer is zoomed in when compared to

Re: [FFmpeg-user] Regarding how to extracting video from RTPpacketsusing ffmpeg API or Source code

2018-08-13 Thread Moritz Barsnick
On Thu, Aug 09, 2018 at 19:07:26 +0530, chetan goni wrote: > I am given all error detail info and not hiding anything details.. No, you omitted the banner, but, sigh, I give in. > For audio I am using mulaw and video h263 codec. > Please provide any steps You haven't resolved the riddle: You q

Re: [FFmpeg-user] Color matching to source a problem for ProRes

2018-08-13 Thread Pete Willis
I’ve made some adjustments based on suggestions. Also here is the output screen grabs showing difference in colour https://www.dropbox.com/s/kjjrbozvnfhpzyo/Compare%20Color.png?dl=0 Still are getting a colour shift between the

Re: [FFmpeg-user] Regarding how to extracting video from RTPpacketsusing ffmpeg API or Source code

2018-08-13 Thread chetan goni
HI Moritz, Do you any solution? Thanks & Regards Chetan Goni On Thu, Aug 9, 2018 at 7:07 PM, chetan goni wrote: > Hi, > I am given all error detail info and not hiding anything details.. > For audio I am using mulaw and video h263 codec. > Please provide any steps > > > On Thu, Aug 9, 2018

Re: [FFmpeg-user] Fade in filter and alpha channel fade in text

2018-08-13 Thread Paul B Mahol
On 8/12/18, Joshua Grauman wrote: > Hi all, > > I am combining various effects, and I noticed that when I fade in a video > using the [in]fade=t=in:st=2:n=24[out] syntax, and I fade in text using > alpha='if(lt(t,2),0,if(lt(t,3),t-2,1))', that they both fade in roughly at > the same time, but both