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 … 594 595 596 597 598 … 1231 Next »
Can you transcode and AVI to MPEG2?

 
  • 0 Vote(s) - 0 Average
Can you transcode and AVI to MPEG2?
armyb77
Offline

Junior Member

Posts: 10
Threads: 4
Joined: Aug 2004
#1
2007-02-21, 10:25 AM
I am playing with GB-PVR again after a year without it. I see the new feature for Transcoding, but I don't see where it will allow me to convert to MPEG2? I have lots of AVIs, and WMVs that my wife would like to be able to burn to DVD, so having the ability to transcode to MPEG2 (DVD Compliant) is a big feature that I need to have so I can switch from SageTV to GB-PVR. If this is already possible, or there is a plugin with this feature please let me know. I noticed that Showburner only adds the tags, but the it seems to already have to be a MPEG2 DVD compliant video for it to work.

Thanks
Armyb77
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#2
2007-02-21, 12:47 PM
The Z-process plugin will do this I think.
Or you could add your own transcoding line to config.xml -CustomffmpegConversions like this:

Code:
<CustomFFmpegConversions>
    <Conversion name="XviD" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -deinterlace -vcodec xvid -b 1250k -vtag XVID {DEST_FILE}" targetExtension=".avi" />
    <Conversion name="DivX" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000k -vtag DIVX {DEST_FILE}" targetExtension=".avi" />
    <Conversion name="Video Ipod" cmd="-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f mp4 -vcodec mpeg4 -s 320x240 -r 15 {DEST_FILE}" targetExtension=".mp4" />
    <Conversion name="Sony PSP" cmd="-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f psp -r 29.97 -s 368x208 -b 768k -ar 24000 -ab 32 {DEST_FILE}" targetExtension=".mp4" />
    <Conversion name="Mobile .3GP" cmd="-y -i {SOURCE_FILE} -acodec aac -vcodec mpeg4 -s qcif -aspect 4:3 -hq {DEST_FILE}" targetExtension=".3gp" />
    <Conversion name="WMV-1200kb/s" cmd="-y -i {SOURCE_FILE} -vcodec wmv2 -b 1200k {DEST_FILE}" targetExtension=".wmv" />
    <Conversion name="WMV-700kb/s" cmd="-y -i {SOURCE_FILE} -vcodec wmv2 -b 700k {DEST_FILE}" targetExtension=".wmv" />
    <Conversion name="MPG-DVD 16:9" cmd="-y -i {SOURCE_FILE} -target pal-dvd -b 4500k -aspect 16:9 -s 720x576 -acodec mp2 -ab 224 -ac 2 -mbd 2 -qmin 2 -async 1 {DEST_FILE}" targetExtension=".mpg" />
    <Conversion name="MPG-DVD 4:3" cmd="-y -i {SOURCE_FILE} -target pal-dvd -b 4500k -aspect 4:3 -s 720x576 -acodec mp2 -ab 224 -ac 2 -mbd 2 -qmin 2 -async 1 {DEST_FILE}" targetExtension=".mpg" />
  </CustomFFmpegConversions>

I added the last two lines (MPEG-DVD). If you are in ntsc-land you would have to change it in:

Code:
Conversion name="MPG-DVD 16:9" cmd="-y -i {SOURCE_FILE} -target ntsc-dvd -b 4500k -aspect 16:9 -s 720x480 -acodec mp2 -ab 224 -ac 2 -mbd 2 -qmin 2 -async 1 {DEST_FILE}" targetExtension=".mpg" />
    <Conversion name="MPG-DVD 4:3" cmd="-y -i {SOURCE_FILE} -target ntsc-dvd -b 4500k -aspect 4:3 -s 720x480 -acodec mp2 -ab 224 -ac 2 -mbd 2 -qmin 2 -async 1 {DEST_FILE}" targetExtension=".mpg" />
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
wtg
Offline

Posting Freak

Posts: 1,402
Threads: 120
Joined: Mar 2005
#3
2007-02-21, 12:53 PM
There's not a default option to do this but ffmpeg can transcode an AVI to MPG and it's delivered with GB-PVR. In fact, it's used to convert AVIs to MPG on the fly so that the MVP client can view an AVI.

There's a Transcode button in Video Library who's menu options can be modified to include a custom ffmpeg command line. Look in config.xml for the custom conversion settings... this is where you add your own conversions. There's lots of info on ffmpeg on the web for it's command line options, but further down in the config.xml file there's PAL and NTSC command line options used by the MVP that'll show you some command line settings that work. Those command lines convert to a lower bitrate and resolution that you probably want to for DVD burning, but it's something to start with.
wtg
Offline

Posting Freak

Posts: 1,402
Threads: 120
Joined: Mar 2005
#4
2007-02-21, 12:54 PM
LOL... HtV is all over it, and gives you better info too.
armyb77
Offline

Junior Member

Posts: 10
Threads: 4
Joined: Aug 2004
#5
2007-02-21, 09:33 PM
Hey all I can say is it's great guys like you that really make GB-PVR so great!!

Thank you all for your quick and perfect responses!

Armyb77Big Grin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  Disappointing MPEG2 decoding wtg 236 182,879 2011-10-19, 01:09 PM
Last Post: meccano
  Unable to get Sony MPeg2 card to work... AssarGabrielson 43 18,080 2011-03-17, 11:09 PM
Last Post: Snooze
  New channel 11 scans as h.264, actually MPEG2. shaunpatrick77 2 1,835 2011-02-19, 08:40 AM
Last Post: shaunpatrick77
  Transcode Problem axeman91 7 3,380 2010-11-22, 09:02 AM
Last Post: goelectric
  No Sound for MPEG2 video dartis 5 10,915 2010-09-12, 11:46 PM
Last Post: rw1
  Auto Converting TS Files To MPEG2 Not Working skycyclepilot 2 2,000 2010-07-06, 10:35 AM
Last Post: skycyclepilot
  Gb-PVR 1.4.7 does not transcode videos themightygandalf 8 3,299 2010-03-09, 08:29 PM
Last Post: themightygandalf
  How to transcode digital *.ts to "Medium Quality" *.mpg? mrbigsteel 1 1,450 2010-02-20, 06:04 PM
Last Post: luttrell1962
  Transcoding dvr-ms to DivX and recording to Mpeg2 Boworr 23 11,035 2010-02-04, 07:54 AM
Last Post: LeCoux
  Transcode Xvid profile aspect ratio Warwick 0 1,294 2009-10-07, 08:46 AM
Last Post: Warwick

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

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

Linear Mode
Threaded Mode