NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 549 550 551 552 553 … 1231 Next »
Help me with creating a Transcoding config setting

 
  • 0 Vote(s) - 0 Average
Help me with creating a Transcoding config setting
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#1
2007-05-02, 08:39 PM
I would like to use GB-PVR to easily convert recorded TV shows and videos to XviD for playback on my Palm (Zire 71).

I currently use Pocket DivX Encoder and have some conversion settings setup that work well on the low spec Palm hardware. It uses mencoder for its conversion but I reckon, given the right parameters GB-PVR's ffmpeg can do the same thing.

Unfortunately I know squat about mencoder/ffmpeg command line options so wondered if anyone here could help me? The command Pocket DivX Encoder uses is:
Quote:./mencoder.exe "D:\My Documents\My Videos\GBPVR and Palm transcoding tests\3min clip.mpg" -subfont-autoscale 3 -subcp "latin1" -font "C:\WINDOWS\Fonts\Arial.ttf" -noodml -nosound -vf scale=320:180 -sws 9 -ofps 16 -ovc lavc -lavcopts vcodec=mpeg4:turbo:vhq:vmax_b_frames=2:vbitrate=164:vpass=1 -ffourcc DX50 -o "D:\My Documents\My Videos\GBPVR and Palm transcoding tests\3min clip_2nd go.avi" >> 1.txt 2>> 2.txt
./mencoder.exe "D:\My Documents\My Videos\GBPVR and Palm transcoding tests\3min clip.mpg" -audio-preload 0.8 -delay 0.1 -af volnorm -srate 32000 -oac mp3lame -lameopts mode=3:cbr:br=32 -subfont-autoscale 3 -subcp "latin1" -font "C:\WINDOWS\Fonts\Arial.ttf" -noodml -vf scale=320:180 -sws 9 -ofps 16 -ovc lavc -lavcopts vcodec=mpeg4:vhq:vmax_b_frames=2:vbitrate=164:vpass=2 -ffourcc DX50 -o "D:\My Documents\My Videos\GBPVR and Palm transcoding tests\3min clip_2nd go.avi">> 1.txt 2>> 2.txt

The general settings I use for the Palm video file are (I don't know what they all mean mind):
Video 320x180, 16fps, 24kbps, 2-pass encoding with b-frames
Audio 3200hz, 32kbps, mono
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#2
2007-05-02, 10:49 PM
So far I've got this:
Quote:ffmpeg.exe -i INPUTFILE -b 220k -s 320x180 -vcodec mpeg4 -ar 22050 -ac 1 -ab 32 -acodec mp3 -f avi -bf 2 -r 16 -vtag DIVX OUTPUTFILE
Which works OK but Windows reports the bit rate as 32kbps even tho I've specified -b 220k. I would like to do 2-pass encoding as I believe this will be better.

Anyone good at this kind of stuff? :eek:
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#3
2007-05-02, 11:54 PM
OK this is doing my head in - is there anyway of getting GB-PVR to launch mencoder instead, with a command line like the one in my first post?
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#4
2007-05-03, 12:13 AM
You should be able to specify something like the following in the config.xml:

<Conversion name="Palm" exe="mencoder.exe" cmd="........" targetExtension=".avi" />

For this to work you'd need mencoder.exe in the "c:\program files\devnz\gbpvr\third party" directory.
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#5
2007-05-03, 12:29 AM
Sub, you're a legend. Working great now Smile
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#6
2007-05-03, 12:32 AM
McBainUK Wrote:Sub, you're a legend. Working great now Smile

What were the final settings you used? I'd like to add them as defaults into ZProcess for FFmpeg, MEncoder and VLC...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#7
2007-05-03, 08:03 AM
zehd Wrote:What were the final settings you used?
The transcoding config line I've decided on is below, its ripped straight from the command line Pocket DivX Encoder uses.

Quote: <Conversion name="Palm" exe="mencoder.exe" cmd="{SOURCE_FILE} -audio-preload 0.8 -delay 0.1 -af volnorm -srate 32000 -oac mp3lame -lameopts mode=3:cbr:br=32 -noodml -vf scale=320:180,dsize=-1 -sws 9 -ofps 16 -ovc xvid -xvidencopts max_bframes=2:bitrate=164 -ffourcc XVID -o {DEST_FILE}" targetExtension=" (Palm).avi" />

This is for the relatively old Zire 71 Palm, newer ones have larger screens and could probably handle more fps.
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#8
2007-05-03, 01:32 PM
McBainUK Wrote:The transcoding config line I've decided on is below, its ripped straight from the command line Pocket DivX Encoder uses.

This is for the relatively old Zire 71 Palm, newer ones have larger screens and could probably handle more fps.

That is a monster. And you said you don't know anything about transcoders...

Big Grin
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
McBainUK
Offline

Posting Freak

Posts: 4,711
Threads: 429
Joined: Sep 2005
#9
2007-05-03, 01:38 PM
zehd Wrote:That is a monster. And you said you don't know anything about transcoders...
Had a bit of a crash course last nite Big Grin
Wiki profile
My Projects
Programs Plugin [SIZE=2](retired)
| Volume OSD Plugin (retired) | Documentation Wiki (retired)
[/SIZE]
taz
Offline

Member

Posts: 102
Threads: 30
Joined: May 2006
#10
2007-05-03, 05:22 PM
sub Wrote:You should be able to specify something like the following in the config.xml:

<Conversion name="Palm" exe="mencoder.exe" cmd="........" targetExtension=".avi" />

For this to work you'd need mencoder.exe in the "c:\program files\devnz\gbpvr\third party" directory.

I am assuming then that I can use other applications (besides ffmpeg or mencoder) as long as it is the correct directory and accepts command line parameters?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Setting for Numeric Channel Change Timeout? smajor 6 2,959 2011-03-16, 07:21 PM
Last Post: sub
  Automatic Transcoding Not Working taz 3 2,334 2010-11-22, 09:01 AM
Last Post: goelectric
  Channels with identical names-manually creating a channel? keith_leitch 4 2,112 2010-09-25, 08:21 PM
Last Post: martint123
  Can't view channels in config donschjr 8 3,001 2010-08-13, 12:50 AM
Last Post: donschjr
  Easy way to toggle Client/Server without using Config? Dan the man 2 2,187 2010-08-02, 11:53 AM
Last Post: Reddwarf
  Strange database problem -- pvrx2 not seeing updates, EWA and Config.exe are. 86atc250r 5 2,555 2010-07-26, 10:09 AM
Last Post: martint123
  Setting up BDA.ini for new Kworld 450 T tuner mark_lt 2 1,923 2010-06-24, 06:37 AM
Last Post: mark_lt
  Problem with Config Vasbert 1 1,509 2010-06-23, 06:20 PM
Last Post: sub
  HVR 1600 There is sound but no picture ? config problem? frank532 7 3,212 2010-06-11, 06:59 PM
Last Post: ShiningDragon
  Config crashing. JP23 6 2,643 2010-05-30, 04:07 PM
Last Post: sub

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode