search for: cropright

Displaying 5 results from an estimated 5 matches for "cropright".

2010 Jun 24
2
theora's encoding speed
Is there any way to get better encoding speed out of ffmpeg2theora? eg: <snip> Duration: 00:57:04.92, <snip> ET: 02:06:24 here is the command: ffmpeg2theora --soft-target -V303 -v4 -F25 -K25 --croptop 8 --cropleft 2 --cropright 2 -x360 -y288 --deinterlace --aspect 4:3 -H24000 -A56 --optimize "<filename.mpg>" also the bitrate, 300kbits == 297kb (3 kbit less) tom_a_sparks Light travels faster then sound, which is why some people appear bright, until you hear them speak
2004 Nov 20
0
ffmpeg2theora start and end time support - patch
...t;o:f:x:y:v:V:a:A:d:H:c:p:N:D:h::"; + const char *optstring = "o:f:x:y:v:V:a:s:e:A:d:H:c:p:N:D:h::"; struct option options [] = { {"output",required_argument,NULL,'o'}, {"format",required_argument,NULL,'f'}, @@ -726,6 +749,8 @@ {"cropright",required_argument,&cropright_flag,1}, {"cropleft",required_argument,&cropleft_flag,1}, {"inputfps",required_argument,&inputfps_flag,1}, + {"starttime",required_argument,NULL,'s'}, + {"endtime",required_argument,NUL...
2004 Dec 19
0
[patch] more ffmpeg2theora improvements
Hi, the attached patch (against current SVN) adds three new options to ffmpeg2theora: --keyint (set keyframe interval) --smoothness (set the theora_info::sharpness encoding parameter) and --noautosync (disable the new frame dropping/duplicating code). It also fixes a bug with the processing of --cropright that sometimes segfaulted. The sync adjustment code is now tuned to be more reliable. BTW is ffmpeg2theora off-topic to the theora-dev list? Please tell me if these patches were better posted to some other list... David -- GnuPG public key: http://user.cs.tu-berlin.de/~dvdkhlng/dk.gpg Fingerpri...
2004 Nov 16
0
metadata switches for ffmpeg2theora
...t >= 0); @@ -557,7 +557,7 @@ if (this->audio_resample_ctx) audio_resample_close(this->audio_resample_ctx); - theoraframes_close (); + theoraframes_close (&info); } else{ fprintf (stderr, "No video or audio stream found\n"); @@ -711,7 +711,15 @@ {"cropright",required_argument,&cropright_flag,1}, {"cropleft",required_argument,&cropleft_flag,1}, {"inputfps",required_argument,&inputfps_flag,1}, - + + {"artist",required_argument,NULL,10}, + {"title",required_argument,NULL,11}, + {&q...
2004 Nov 20
0
ffmpeg2theora start and end time support
...uot; "\t oggfwd iccast2server 8000 password /theora.ogg\n" "\n"); exit (0); } int main (int argc, char **argv){ int n; int outputfile_set=0; char outputfile_name[255]; char inputfile_name[255]; static int croptop_flag=0; static int cropbottom_flag=0; static int cropright_flag=0; static int cropleft_flag=0; static int nosound_flag=0; static int aspect_flag=0; AVInputFormat *input_fmt=NULL; ff2theora convert = ff2theora_init (); av_register_all (); int c,long_option_index; const char *optstring = "o:f:x:y:v:a:s:e:d:H:c:p:N:D:h::"; struct opti...