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 … 201 202 203 204 205 … 1231 Next »
Best or most popular encoder for TS files?

 
  • 0 Vote(s) - 0 Average
Best or most popular encoder for TS files?
time_lord
Offline

Senior Member

Posts: 265
Threads: 44
Joined: Jul 2008
#1
2008-11-20, 07:58 AM
Hi I had a quick scan through the forum & wiki and couldn't spot an answer (maybe it was too obvious for me Wink ) so I thought I'd ask here.

I've been using gbpvr for a couple of months now and letting it leave recordings in the default TS format. So the hard drive is happily filling up Smile
I never got around to turning on that task to auto-convert recordings to mpeg2, xvid, divx, wmv or whatever because I was unsure (a) which was most efficient/fastest and (b) which created the best quality (out of the box without endless hours of testing different encoder settings). I guess I'd avoid wmv.

1) So basically, is there a general consensus on which is best, or most popular? (This forum doesn't support polls... does it?)

2) Once I enable this post-processing, will gbpvr process everything? (How will it decide what is a recent recording and what isn't)

Cheers
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#2
2008-11-20, 08:26 AM
this mpeg2 or x264 based recordings?

I doubt the auto convert setting would ever be the best. For best results of mpeg2 to xvid or something you gennerally need to run a two pass conversion.

And x264 stuff, i don't think there are any converters around yet

(and you coming to drinks on the 5th?)
time_lord
Offline

Senior Member

Posts: 265
Threads: 44
Joined: Jul 2008
#3
2008-11-20, 08:55 AM
psycik Wrote:this mpeg2 or x264 based recordings?
I'm picking up freeview dvb-t; I assume digital channels are x264 (the digital recordings create .TS files, 5Gb/hour)?
Also I'm using an hvr2200 which is a hybrid, so recording analog Prime sometimes too - those recordings are saved as mpg files, close to 3Gb for 1 hour, so I guess they need encoding to reduce size?

psycik Wrote:For best results of mpeg2 to xvid or something you gennerally need to run a two pass conversion.
And x264 stuff, i don't think there are any converters around yet

So it's looking complicated... Actually I downloaded EasyXviD and thought I'd try that out first, but as soon as I chose a .TS file it complained 'No video sequence header found' and aborted. So that's why I started asking questions Smile

psycik Wrote:(and you coming to drinks on the 5th?)
Yeah was thinking about it, or in the very least putting some money behind the bar for sub Wink
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#4
2008-11-20, 09:05 AM
yeah the ts is really complicated, there still isn't any tools around that will take our sound.

Come along if possible, I doubt it will be a rowdy night, just a couple of quiet ones.
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#5
2008-11-20, 09:07 AM
yeah the ts is really complicated, there still isn't any tools around that will take our sound.

Come along if possible, I doubt it will be a rowdy night, just a couple of quiet ones.
JonnyCam
Offline

Posting Freak

Posts: 1,153
Threads: 87
Joined: Feb 2006
#6
2008-11-20, 09:58 AM
Yeah, once you have TS + h264, then you have trouble.
Mpeg2 TS files are not too bad, as it's only 2 or 3 mins to transcode to normal mpeg2, but h264 is another battle

You could keep the recordings as x264, using an MKV container, and reduce the bitrate down to what you want.
Have a go with autoMKV and see if that does what you want - I think it will handle the TS files natively as well
(and you'll be able to drop one of the audio streams if you want as well)
for mpeg, I use AutoGK which has always produced good looking files with a couple of clicks.

Looking around google, ffmpeg will do the job, but I think you'll have problems trying to get these commandlines as part of the usual transcoding.

Code:
ffmpeg.exe -i "input.ts" -threads 1 -benchmark -vcodec xvid -b 3000 -an -y "output.avi"
ffmpeg.exe -i "input.ts" -acodec mp3 -ab 320 -ac 2 -vn -y "output.mp3"


2-Pass
ffmpeg.exe -i "input.ts" -threads 1 -pass 1 -vcodec xvid -an -y "Discard.avi"
ffmpeg.exe -i "input.ts" -threads 1 -pass 2 -vcodec xvid -minrate 1500 -b 2000 -maxrate 3000 -an -y "Output.avi"
del Discard.avi

Tested it with this version:
http://tirnanog.fate.jp/mirror/ffmpeg/ffmpeg.rev6199.7z

I think transcoding the A/V separately might reduce sync problems. You'll have to mux with Vdub, or AvimuxGui, or...

From http://forum.doom9.org/archive/index.php/t-117919.html (they then go on to discuss best bitrates, resolution etc)

Cheers
"Shut up brain, or I'll stab you with a Q-Tip!"

--= Win7, C2D 2.93 GHz, ASUS 9400GT Silent, 2GB Ram, Few HDD's, 3TB unRAID server, Samsung 50" 1080p Plasma via HDMI, 40" 1080i LCD via VGA =-- * PVR2000 Analog PCI / Avermedia DVB-S PCI / Hauppauge 2200 DVB/Analog * PCH GBPVR Client * *BD-E6500 w/ NPVR client*
time_lord
Offline

Senior Member

Posts: 265
Threads: 44
Joined: Jul 2008
#7
2008-11-26, 09:21 AM
psycik Wrote:yeah the ts is really complicated, there still isn't any tools around that will take our sound.
See what you mean, I turned on the 'auto convert TS recordings' bizzo and ended up with a couple of recordings with zero sound, so turned that off in a hurry! Luckily they were nothing too interesting.
Come to think of it, they were recordings off Prime - so does that mean the audio of TS recordings will fail for both analog and digital channels? But I'm confused - with a card like my hybrid HVR2200, do both analog and digital channels come thru as a 'Transport Stream'? Then why - after a recording - do I end up with a .TS file for a digital recording and a .mpeg file for an analog? Is it because the digital h264 stays as-is, and for analog, the stream is already mpeg, so again it's simply stored with that extension?


JonnyCam Wrote:Yeah, once you have TS + h264, then you have trouble.
<<snip snip>>
Looking around google, ffmpeg will do the job, but I think you'll have problems trying to get these commandlines as part of the usual transcoding.
Holy crap, looks fiddly. So if there's all this tweaking to do, how do you specify the extra params etc when the 'auto convert TS recordings to' are read-only options for xvid, divx, etc, with nowhere for params? I've seen mention of processing bat files, but there's nowhere there to specify them...?


BTW, I assume I'll have just the same problems with DIVX as with xvid (i.e no sound after conversion)?
(And does anyone know - I'm sure years ago when I downloaded divx, the simple free version let you encode, just didn't have all the fancy features. But looking at the divx website now, they do their best to get you to buy... but after the 2 week pro trial runs out, can you still do basic encoding? They seem to have done their best not to tell you...)
sub
Online

Administrator

NextPVR HQ, New Zealand
Posts: 106,809
Threads: 769
Joined: Nov 2003
#8
2008-11-26, 11:50 AM
time_lord Wrote:Come to think of it, they were recordings off Prime - so does that mean the audio of TS recordings will fail for both analog and digital channels? But I'm confused - with a card like my hybrid HVR2200, do both analog and digital channels come thru as a 'Transport Stream'? Then why - after a recording - do I end up with a .TS file for a digital recording and a .mpeg file for an analog? Is it because the digital h264 stays as-is, and for analog, the stream is already mpeg, so again it's simply stored with that extension?
Analog recordings will produce .mpg files.

The extension of digital recordings will vary depending on the mux used - but in countries that use H.264 channels (like NZ DVB-T), it'll always use the TS Mux and produce .ts files.

You pretty much have to leave NZ DVB-T recordings as .ts files at this stage, because none of the conversion utilities understand the HE-AAC audio format New Zealand has adopted for use on DVB-T. I'm sure that'll change in future when projects like ffmpeg are updated to support this new audio format. Users in other countries that dont use HE-AAC audio dont have to worry about this, and can convert their recordings to other formats.
time_lord
Offline

Senior Member

Posts: 265
Threads: 44
Joined: Jul 2008
#9
2008-11-27, 03:59 AM
sub Wrote:You pretty much have to leave NZ DVB-T recordings as .ts files at this stage....
Oh, thanks for all the info. Guess then that either I need a huge drive to keep stuff or maybe try zipping those things I want to archive Smile
stustunz
Offline

Posting Freak

Posts: 5,111
Threads: 112
Joined: Oct 2006
#10
2008-11-27, 06:03 AM
thats why i went dvb-s for now
still digital and my tv is only 1280x720 so no real gain going to full hd anyway
« 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
  0 sized files pjm460 4 2,093 2010-12-17, 05:15 PM
Last Post: sub
  Zero-size recording files rawlings471 1 1,690 2010-12-05, 04:12 PM
Last Post: sub
  original files not deleting David B 2 1,774 2010-11-28, 07:22 PM
Last Post: David B
  Attempts to play .dvd files in Video Library results in PVRX2 not responding Jwbrit 2 2,082 2010-11-04, 11:37 PM
Last Post: Jwbrit
  Missing Crossbar Files? David B 8 3,172 2010-11-02, 01:12 AM
Last Post: David B
  FLV files as recordings keith_leitch 10 3,972 2010-09-22, 09:12 PM
Last Post: keith_leitch
  Unable to process .ts files for recording on DVD Trevor_de_S 1 1,566 2010-08-18, 10:50 PM
Last Post: sub
  Auto Converting TS Files To MPEG2 Not Working skycyclepilot 2 2,012 2010-07-06, 10:35 AM
Last Post: skycyclepilot
  GBPVR log files zonko 10 3,621 2010-07-03, 04:31 PM
Last Post: sub
  1.4.7 and Hauppauge 250 getting 0Kb files hi218 0 1,241 2010-06-15, 05:57 PM
Last Post: hi218

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

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

Linear Mode
Threaded Mode