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 … 640 641 642 643 644 … 1231 Next »
does the transcode option in video library work? is it experimental?

 
  • 0 Vote(s) - 0 Average
does the transcode option in video library work? is it experimental?
zeltak
Offline

Member

Posts: 79
Threads: 20
Joined: Dec 2005
#1
2006-12-31, 11:37 AM
Hi all!

i usually transcode my mpeg2 files to avi in order to save space. i used mediacoder so far which i use on my desktop computer. i just noticed (when switching back from the myvideos plugin to the video library plugin) that it has a transcode option. I tried to test a recording i made but it did nothing. i cant see it working and there is no output file. is this still experimental? it would be awesome to do all the transcoding from the HTPC. if its not experimental what am i missing? i cant find any setting for it in the config.

thx alot

Zeltak
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#2
2006-12-31, 11:56 AM (This post was last modified: 2006-12-31, 12:03 PM by HtV.)
Edit: sorry pasted something completely wrong.
I'll be back.
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.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#3
2006-12-31, 12:18 PM
One more try.
On my system it works now.
It uses ffmpeg with the following lines in config.xml

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" />
</CustomFFmpegConversions>

Are you using the latest gbpvr-version. There were some changes in this area in the latest versions.
In my config.xml the lines were completely wrong in config.xml.
The new ones were behind the old ones. I don't know if setup screwed up or if I screwed up the setup.:o I really can't remember though tampering with these lines. This is what they looked like in my config.xml:

Code:
<CustomFFmpegConversions>
    <Conversion name="XviD" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000 -vtag XVID {DEST_FILE}" targetExtension=".avi">-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000k -vtag XVID {DEST_FILE}</Conversion>
    <Conversion name="DivX" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000 -vtag DIVX {DEST_FILE}" targetExtension=".avi">-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000k -vtag DIVX {DEST_FILE}</Conversion>
    <Conversion name="Video Ipod" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f mp4 -vcodec mpeg4 -s 320x240 -r 15 {DEST_FILE}" targetExtension=".mp4" />
    <Conversion name="Sony PSP" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f psp -r 29.97 -s 368x208 -b 768 -ar 24000 -ab 32 {DEST_FILE}" targetExtension=".mp4">-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f psp -r 29.97 -s 368x208 -b 768k -ar 24000 -ab 32 {DEST_FILE}</Conversion>
    <Conversion name="Mobile .3GP" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -acodec aac -vcodec mpeg4 -s qcif -aspect 4:3 -hq {DEST_FILE}" targetExtension=".3gp" />
    <Conversion name="WMV-1200kb/s" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -vcodec wmv2 -b 1200 {DEST_FILE}" targetExtension=".wmv">-y -i {SOURCE_FILE} -vcodec wmv2 -b 1200k {DEST_FILE}</Conversion>
    <Conversion name="MPEG2" exe="ffmpeg.exe" cmd="-y -i {SOURCE_FILE} -b 2400 -ac 2 -ab 128 -r 25 -s 352x288 -f svcd {DEST_FILE}" targetExtension=".mpg">-y -i {SOURCE_FILE} -b 2400k -ac 2 -ab 128 -r 25 -s 352x288 -f svcd {DEST_FILE}</Conversion>
  </CustomFFmpegConversions>
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.
zeltak
Offline

Member

Posts: 79
Threads: 20
Joined: Dec 2005
#4
2006-12-31, 12:53 PM
Awesome !

it works! ive used the first option (since im using 0.99.5). Is there any guide for how to add/change profiles? i would love to modify it so i can output it in PAL and have an option to transcode for Pocket pcs and maybe to change the output dir!

thx again

Zeltak
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#5
2006-12-31, 01:30 PM
You could start with some reading hereWink :
http://ffmpeg.mplayerhq.hu/documentation.html

For pal all you have to do I think, is add -r 25 to the output options.
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.
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#6
2006-12-31, 02:10 PM
HtV Wrote:You could start with some reading hereWink :
http://ffmpeg.mplayerhq.hu/documentation.html

That's a terrifying place to go :eek: - well it was for me when I saw that link the other day.
zeltak
Offline

Member

Posts: 79
Threads: 20
Joined: Dec 2005
#7
2006-12-31, 02:20 PM
thx for the answers guys!

i just noticed (5 minute ago!) that zproccess can replace ffmpeg and work within gb-pvr. it seems much easier to configure so i think ill give that a chance before i dive in the scary world of ffmpeg (I agree it does look scary for a non programer like me!Big Grin )

thx

Zeltak
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#8
2006-12-31, 02:20 PM
martint123 Wrote:That's a terrifying place to go :eek: - well it was for me when I saw that link the other day.

Well, someone's got to do it.Big Grin
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.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,708
Threads: 767
Joined: Nov 2003
#9
2006-12-31, 04:26 PM
Bugger: http://forums.nextpvr.com/showthread.php?t=22656

Thanks HtV for the info.
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#10
2006-12-31, 05:04 PM
Hi sub, happy new year to you too.Big Grin
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.
« 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
  USB-UIRT InterCodeDelay - does it work? blader_se 19 9,322 2019-03-09, 11:50 AM
Last Post: jksmurf
  Composite Source using Hauppauge PVR500 gives sound but no video DukeBrymin 1 3,026 2012-02-03, 02:41 AM
Last Post: slowtech
  Two Channels Without Video skycyclepilot 5 3,469 2011-10-29, 07:49 PM
Last Post: sub
  GBPVR Webserver does not work - Windows 7 Pro, 64 Bit Ijaja 6 4,447 2011-10-19, 07:21 PM
Last Post: Basher52
  Zehd's Video Library Slick Skin Snooze 0 2,220 2011-09-03, 01:09 AM
Last Post: Snooze
  Will A Hauppauge Colossus work in 1.4.7? hondophred 5 3,729 2011-06-29, 09:12 PM
Last Post: sub
  Unable to get Sony MPeg2 card to work... AssarGabrielson 43 17,478 2011-03-17, 11:09 PM
Last Post: Snooze
  New Machine (probably old problems), Video Render Options jvcleave 12 5,309 2011-02-01, 08:37 AM
Last Post: stustunz
  No Video in PVRX2 GUI TonySmith35 13 4,860 2011-01-09, 10:31 PM
Last Post: steevo
  Transcode Problem axeman91 7 3,302 2010-11-22, 09:02 AM
Last Post: goelectric

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

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

Linear Mode
Threaded Mode