![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
|
Multimedia Production Discussions about Ubuntu Studio and other multimedia production applications. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
First Cup of Ubuntu
![]() Join Date: Oct 2007
Beans: 1
|
AVCHD converter
I'm trying to use ubuntu-studio and I need to convert my AVCHD Panasonic HDC Camcorder files to something that studio can handle. I suppose MPEG. Panasonic includes software for windoze but I don't use windoze.
Does anyone know a decent OSS converter for linux? I've been searching the web for a couple hours. I tried to see if the latest ubuntu studio has converters included. From what I can tell they don't. Thanks in advance, Tom |
|
|
|
|
|
#2 |
|
Just Give Me the Beans!
![]() Join Date: Apr 2007
Location: Ohio
Beans: 51
Ubuntu 9.10 Karmic Koala
|
Re: AVCHD converter
ffmpeg is king here. I would assume it is included with the studio flavor of Ubuntu, if not you will find it in the repos. I just converted a 1080i AVCHD file yesterday with...
Code:
ffmpeg -i input.MTS -f mpeg -b 16M -deinterlace output.mpeg Regards, Metol |
|
|
|
|
|
#3 |
|
Fresh Brewed Ubuntu
![]() Join Date: Jun 2005
Location: Belgium
Beans: 1,384
Ubuntu 9.04 Jaunty Jackalope
|
Re: AVCHD converter
This is what I use:
mencoder (mplayer): Code:
mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=1920:1080,harddup -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=8000:keyint=15:aspect=16/9:threads=4 00126.MTS -vf lavcdeint -ofps 25 -fps 50 -o 00126.mpg Code:
ffmpeg -i 00106.MTS -vcodec libxvid -b 18000k -acodec libmp3lame -ac 2 -ab 320k -deinterlace -s 1920x1080 00106.avi Code:
find ~/encode -name '*.MTS' -type f -exec mencoder '{}' -oac copy -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=1920:1080,harddup -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=8000:keyint=15:aspect=16/9:threads=4 -vf lavcdeint -ofps 25 -fps 50 -o '{}'.mpg \;
__________________
AMD64X2 3800+ 3GB Ram: 8.04 & 9.04 64 bit |
|
|
|
|
|
#4 |
|
Just Give Me the Beans!
![]() Join Date: Nov 2009
Location: Yaroslavl, Russia
Beans: 55
Ubuntu
|
Re: AVCHD converter
I recommend Winff as nice GUI for FFmpeg. No spell with ffmpeg & mencoder now
__________________
Bombono DVD | Author DVD Freely |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|