Transcode for G1

Moderators: snarkout, Patrick, dann, dmfrey

Post Reply
User avatar
spotslayer
Posts: 184
Joined: Thu Dec 28, 2006 9:01 am
Location: Texas
Contact:

Transcode for G1

Post by spotslayer » Sun May 16, 2010 8:31 pm

I have finally gotten my new mythbox up and running. Now I want to transcode recordings for my HTC G1. My old box did not have the horsepower to do this. I don't have a clue how to proceed.

Is the default method and/or script the best?
Is there a better way?
What is a good script for this?

I would appreciate any input and suggestions. I am really learning something new now.

David

User avatar
Patrick
Site Admin
Posts: 2519
Joined: Tue Apr 27, 2004 11:38 am
Location: Easton, PA
Contact:

Re: Transcode for G1

Post by Patrick » Mon May 17, 2010 7:05 pm

2 pass FFMPEG on the commandline:

Code: Select all

ffmpeg -i inputfile.mpg -aspect 16:9 -s 320x240 -vcodec libx264 -b 480k -r 13 -acodec libfaac -ab 128k -sameq -pass 1 -f rawvideo -an -y /dev/null && ffmpeg -i inputfile.mpg -aspect 16:9 -s 320x240 -vcodec libx264 -b 480k -r 13 -acodec libfaac -ab 128k -ac 2 -sameq -pass 2 outputfile.mp4
Transmageddon:
http://www.linuxrising.org/transmageddon/

Arista:
http://programmer-art.org/projects/arista-transcoder

Handbrake:
http://handbrake.fr/


Mythexport:
In the Mythexport setup select 'custom' and name it
'AndroidG1'. This will create a skeleton entry in 'mythexport_settings.cfg'.
Add the following to the ffmpegArgs line:

Code: Select all

'ffmpegArgs=-aspect 16:9 -s 320x240 -vcodec libx264 -b 480k -r 13
-deinterlace -acodec libfaac -ab 128k -sameq -pass 1 -f rawvideo -an -y
/dev/null | -aspect 16:9 -s 320x240 -vcodec libx264 -b 480k -r 13
-deinterlace -acodec libfaac -ab 128k -ac 2 -sameq -pass 2'
Ego contemno licentia

User avatar
spotslayer
Posts: 184
Joined: Thu Dec 28, 2006 9:01 am
Location: Texas
Contact:

Re: Transcode for G1

Post by spotslayer » Tue May 18, 2010 6:39 am

Thank's Pat! There are so many things I can do with a little power. I use to just record and watch. I have so much to learn.

Onward thru the fog.

D

User avatar
lobosolo
Posts: 69
Joined: Mon Oct 12, 2009 11:10 am

Re: Transcode for G1

Post by lobosolo » Wed May 19, 2010 9:00 pm

hey Pat , were you ever going to revisit mythexport. I'm still a bit confused on how to use it and i thought you were going to do a show with the developer. or did that one get trashed in the google phone ?

User avatar
Patrick
Site Admin
Posts: 2519
Joined: Tue Apr 27, 2004 11:38 am
Location: Easton, PA
Contact:

Re: Transcode for G1

Post by Patrick » Wed May 19, 2010 9:05 pm

lobosolo wrote:hey Pat , were you ever going to revisit mythexport. I'm still a bit confused on how to use it and i thought you were going to do a show with the developer. or did that one get trashed in the google phone ?
That was one of 2 shows that got thrashed.
Ego contemno licentia

Post Reply