Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
ffmpeg gui frontend?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
aqua-teen-hunger
Tux's lil' helper
Tux's lil' helper


Joined: 31 Aug 2006
Posts: 89
Location: computer chair

PostPosted: Tue May 22, 2007 12:30 am    Post subject: ffmpeg gui frontend? Reply with quote

Is there a gui frontend for the wonderful ffmpeg utility, i enjoy my cli just as much as anyone, but i feel a gui frontend would be nice, would speed things up for converting large amounts of files, instead of having to write a script.
Back to top
View user's profile Send private message
fangorn
Veteran
Veteran


Joined: 31 Jul 2004
Posts: 1886

PostPosted: Tue May 22, 2007 6:42 am    Post subject: Reply with quote

speed things up for batch processing? with a GUI?

pack a command line with the appropriate options into a shell script and call this one by another shell script that has
Code:

#!/bin/bash

for i in *.mpg ; do
  name=`basename $i .mpg`
  <scriptname> $i $name.avi
done


Can it get more easy than calling a script and convert each and every movie in the directory. with a little more effort you can make the file list a command line parameter to the second script.

There are GUI's for mencoder and transcode, maybe for ffmpeg too, but they are for beginners and don't feature all the nice features of these packages. If you are already familiar with the command line options, just stick to the command line and write some nice and convinient scripts.
_________________
Video Encoding scripts collection | Project page
Back to top
View user's profile Send private message
barophobia
Apprentice
Apprentice


Joined: 27 Apr 2004
Posts: 229
Location: somewhere

PostPosted: Tue May 22, 2007 10:43 pm    Post subject: Reply with quote

I agree scripting is far faster than using a gui. I don't use bash for scripting but then that is because I don't know bash.
Back to top
View user's profile Send private message
aqua-teen-hunger
Tux's lil' helper
Tux's lil' helper


Joined: 31 Aug 2006
Posts: 89
Location: computer chair

PostPosted: Tue May 22, 2007 11:18 pm    Post subject: Reply with quote

was just curious
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum