search for: cropleft

Displaying 4 results from an estimated 4 matches for "cropleft".

Did you mean: copyleft
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
...uot;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,NULL,'e'}, {"artist",required_argument,&met...
2004 Nov 16
0
metadata switches for ffmpeg2theora
...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}, + {"date",required_argument,NULL,12}, + {"location"...
2004 Nov 20
0
ffmpeg2theora start and end time support
...2server 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 option options [] = { {"o...