I am looking for a program (or programs) that can convert TS / TP stream files to MPG in order to process those to DVD (gasp!!!). I understand I will be losing quality / resolution in converting and then down-scaling the video.
Part of what I want is to save HD videos that I have recorded, and as they take so much space, there are some that I would like to save but not necesarily in the 1920x1080 that they were broadcast in (tho of course there are others I will save in full resolution)
Patrick
+ Reply to Thread
Results 1 to 5 of 5
-
Shuttle SH55-J2-BK-V1 w/4.00gb Ram, INTEL i3-550, 3.2ghz, WIN7 home premium 64bit
hauppauge 950q, 1600, 1250 -
cool, I'll look at that one later today. does it give the option to specify the MPG/DVD resolution or does it default to a certain resolution?
Shuttle SH55-J2-BK-V1 w/4.00gb Ram, INTEL i3-550, 3.2ghz, WIN7 home premium 64bit
hauppauge 950q, 1600, 1250 -
I believe that hdtv2dvd does not allow you to modify the resolution. It's meant to be a simple tool that just works, so almost nothing is user configurable. I don't know what Super uses to do this kind of down conversion in resolution, but I would think that it's probably not as good as how hdtv2dvd does it. I haven't tested this though.
-
I've used a combination of dgIndex and an AviSynth script to get it to DVD resolution. You need to know your source. If it is video, it will behave differently than if it is film. In my case, it was video. Here is my script:
Code:# HDTV .ts conversion (1920x1080i) # loadplugin("C:\video\dgMPEGdec\deDecode.dll") vNTSC=MPEG2Source("c:\video\work\bonjovi.d2v")//.cropbottom(8) #a=AC3source("bonjovi AC3 T01 3_2ch 384Kbps DELAY -737ms.ac3") return v720x480i(vNTSC) # Converts 1920x1080i to 720x480i anamorphic function v720x480i(v) { # Separate fields and interpolate them to full height v=bob(v) # resize and reinterlace v=v.BilinearResize(720,480)# (anamorphic) #v=v.SeparateFields.SelectEvery(4,0,3)# BFF (even) v=v.SeparateFields.SelectEvery(4,1,2)# TFF (odd) v=converttoyuy2(v)# corrects interlacing artifacts v=weave(v) return(v) }
Darryl
Similar Threads
-
HDTV to DVD - How To?
By JoRodd in forum DVB / IPTVReplies: 4Last Post: 21st Jan 2009, 19:55 -
Do Samsung HDTV's have an RF antenna connector for receiving off-air HDTV?
By pianopeddler in forum DVB / IPTVReplies: 2Last Post: 6th Aug 2008, 21:43 -
Need al little help getting my new ati hdtv pci card to sense HDTV channels
By MidnightMike in forum ComputerReplies: 8Last Post: 23rd Jul 2008, 02:12 -
Problems with connection with my Panasonic HDTV and Timewaner HDTV box...
By S4one in forum DVB / IPTVReplies: 7Last Post: 2nd Nov 2007, 22:39 -
Enigmavision HDTV - HDTV viewer software for ATSC TV tuner cards.
By gc04 in forum Latest Video NewsReplies: 9Last Post: 7th May 2007, 00:32