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 … 582 583 584 585 586 … 1231 Next »
transcoding question (xvid)

 
  • 0 Vote(s) - 0 Average
transcoding question (xvid)
acheyne
Offline

Member

Posts: 81
Threads: 20
Joined: Dec 2005
#1
2007-03-08, 02:42 AM
I've been playing around with getting GBPVR to auto-transcode my recorded tv. I've found the section in the config file for configuring this, but can't seem to get the output I want.

What I'd like: - same or close quality I have with the mpeg-2 that comes off the hauppauge card, but a smaller file size.

The default settings for ffmpeg give a fairly blocky output.

Does anyone have some settings that will do this? I dont care if it takes a while for the processing to happen - I just want the final output to look good and take up less space on the drive.

Thanks!
Andrew
GBPVR 1.1.5 on
Pentium 4 2.0GHz
PVR-350
NVidia GeForce 5200 TV-Out
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#2
2007-03-08, 05:11 AM
here's one to try....adjust the -qscale number to your preferences...
Code:
<Conversion name="Make DVD ready"  cmd=" -y -i {SOURCE_FILE} -sc_threshold 1000000000  -flags +cgop+ildct -target ntsc-dvd -f dvd -qscale 5 -vcodec mpeg2video -acodec mp2 -ab 128 {DEST_FILE}" targetExtension=".new.mpg" />
-qscale 2 = highest qual./big files 16=lowest qual/small files

that is if you want dvd compat. output..
for divx, same principle, constant quality gives constant results, but some files will be bigger than others..

with mpeg4, youll have to play with it, and xvid or .264 will be your best bet, tho very slow..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#3
2007-03-08, 05:26 AM
pBS Wrote:
Code:
<Conversion name="Make DVD ready"  cmd=" -y -i {SOURCE_FILE} -sc_threshold 1000000000  -flags +cgop+ildct -target ntsc-dvd -f dvd -qscale 5 -vcodec mpeg2video -acodec mp2 -ab 128 {DEST_FILE}" targetExtension=".new.mpg" />
-qscale 2 = highest qual./big files 16=lowest qual/small files

+cgop is closed gop, but I haven't been able to find what it means or what it does...

+ildct and I think this is for interlace, But I don't know why you have it...

I'd love to know more about this...
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]
mikeh49
Offline

Posting Freak

Posts: 1,129
Threads: 81
Joined: Apr 2005
#4
2007-03-08, 05:50 AM
I found that replacing the "-b 1250K" Xvid conversion parameter in the <CustomFFmpegConversion> section of config.xml with the -qscale parameter mentioned above worked pretty well. (The -b 1250K parameter specifies a constant bit rate of 1250K which doesn't seem to be high enough for good quality.) With a qscale of 5 I could not tell the difference from the original MPEG. I raised the value to 7.5 to get a smaller file size and still could not detect a decrease in quality. I'm monitoring the file size of the conversions and the picture quality with the idea of going back to the 5 setting. This is using the TRANSCODE button on the Video Library menu, and selecting the Xvid conversion.

I'm also using the Xvid decoder from the main Xvid site, if that makes a difference.
HTPC: Optiplex 7010, HDHR Prime/Avermedia Duet A188, NPVR 4.2.5, Win10 Pro
Test:
acheyne
Offline

Member

Posts: 81
Threads: 20
Joined: Dec 2005
#5
2007-03-08, 02:20 PM
Thanks for the responses. I'm going to try this out. I've been working with and around encoding for a couple of years now from a software development perspective, and I still find all of the terminology confusing and archaic.

I ended up having to download some torrents of shows because the default xvid transcode settings that come with GBPVR made the transcoded shows unwatchable. That's not a slight at GBPVR, but it might be worth it if someone could provide sub with some new settings for those config.xml blocks to make them more usable out of the box?
GBPVR 1.1.5 on
Pentium 4 2.0GHz
PVR-350
NVidia GeForce 5200 TV-Out
acheyne
Offline

Member

Posts: 81
Threads: 20
Joined: Dec 2005
#6
2007-03-08, 03:08 PM
Cool. The qscale parameter gives me what I want. I have about the same quality image, but the files are now less than half the size of the original.

Even with a 250Gb hard drive, we were closing in on a full drive - we keep a lot of recorded shows on the machine for the kids so we have something half decent for them to watch when it's "TV time" instead of whatever happens to be on at that time.. 86 recordings of Dora, anyone?
GBPVR 1.1.5 on
Pentium 4 2.0GHz
PVR-350
NVidia GeForce 5200 TV-Out
Slice
Offline

Junior Member

Posts: 45
Threads: 4
Joined: Oct 2006
#7
2007-03-08, 03:23 PM
Excellent, be trying this tonight myself, was never happy with the xvid transcode quality and whenever I went at that line I always messed things up!

Ahh, the kids shows, once they learn to say "Daddy can you record this" your hard drive will never be the same again! Smile
[SIZE="1"]OS Windows 10 Hardware Hauppauge Nova T DVB-T Stick (Saorview) 2 x Hauppauge WinTV DVB-S/S2 (FreeSat) N-PVR Ver 3.5.7[/SIZE]
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,809
Threads: 769
Joined: Nov 2003
#8
2007-03-08, 03:36 PM
Post the final xvid settings you guys are happy with and I'll update the default profiles for the next release.
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#9
2007-03-08, 05:06 PM
mikeh49 Wrote:<CustomFFmpegConversion>.... section of config.xml

I'm also using the Xvid decoder from the main Xvid site, if that makes a difference.

If you are changing the settings here, then the XVid decoder you downloaded doesn't enter the picture. You are only tweaking the ffmpeg.exe settings...
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]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#10
2007-03-08, 05:08 PM
So, if you want to use a qscale value, you should remove the bitrate (-b) value?
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]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Automatic Transcoding Not Working taz 3 2,305 2010-11-22, 09:01 AM
Last Post: goelectric
  GBPVR Database question - Recording Schedule David B 1 1,672 2010-11-08, 09:21 PM
Last Post: sub
  Descriptive Audio Service Question mikeh49 3 3,184 2010-10-21, 10:49 PM
Last Post: sub
  Italian channels post and a question about compatibility with Seven 64 bit pinopallino 2 1,702 2010-08-18, 09:14 AM
Last Post: pinopallino
  Newbie Question rthefish 4 2,146 2010-05-25, 08:06 PM
Last Post: pBS
  Question About Recording Formats LewE 11 3,858 2010-04-27, 02:23 AM
Last Post: LewE
  Question about Haupblast.exe broadband412 2 2,541 2010-04-24, 08:59 PM
Last Post: broadband412
  A Complete noob question about remote controller mpooley 3 1,970 2010-04-01, 11:52 AM
Last Post: jw100
  MCE remote and netradio question collin 4 2,070 2010-03-23, 11:32 PM
Last Post: collin
  Question on EVR Renderer collin 4 2,522 2010-02-18, 02:39 PM
Last Post: collin

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

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

Linear Mode
Threaded Mode