Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#1 | Link |
|
Registered User
Join Date: Dec 2001
Location: Viersen, Germany
Posts: 270
|
TS-File > x264
Hi there Iīm completely astonished, that there isnīt yet more information on the net about this.
Well itīs the following: I record DVB-S2 Streams with my satelite-receiver which I can put into a single HUGE TS-File. Since 720p isnt that much less quality than 1080i Iīd like to reencode the video-stream. My aim is a normal DVD-R. At least Iīd like to try to. So I looked out for possible ways. So far...staxrip, MeGui....all programs REFUSE to take the TS-Files. Best way so far...Iīm using TMPGenc Xpress 4.0 with the x264vfw version and put it into a avi-container. Then I take the x264video out of that avi-container mux it with org. AC3-File and put it into mkv. Another project for me in the future will be bringing those reencoded videos back to the vantage Hd7100 to see, if it plays. Last edited by Rodger; 20th January 2008 at 20:31. |
|
|
|
|
|
#3 | Link |
|
.
![]() Join Date: Oct 2001
Location: Germany
Posts: 7,995
|
'normal' way in megui for ts streams would be:
1. demux raw streams form the file with tsremux 2. run avc raw stream through dgavcdec 3. load .dga file via avcsource through an avisynth script and resize e.g. AVCSource("c:\test.dga") LanczosResize(1280,720) remember to deinterlace if needed before resizing 4. load .avs file and audio raw in megui as source files 5. do your settings and start encoding |
|
|
|
|
|
#4 | Link |
|
RipBot264 author
Join Date: May 2006
Location: Poland
Posts: 7,952
|
There is a lot easier way. Use RipBot264.
__________________
Windows 7 Image Updater - SkyLake\KabyLake\CoffeLake\Ryzen Threadripper |
|
|
|
|
|
#5 | Link |
|
Registered User
Join Date: Dec 2001
Location: Viersen, Germany
Posts: 270
|
RipRobot also sucks doing this Joy, like all other tools.
@Selur Please Explain Step 3+4 little more. I created a avs-spcript looking like this: "LoadPlugin("DGAVCDecode.dll") AVCSource("d:\Vantage-Files\Zathura.dga") kerneldeint() LanczosResize(1280,720) I donīt know anythinb better than trying to load it in MeGui directly which ends up in an Error attached. Guess I need to learn avi-synth-scripting, if there comes no automation soon. By the way...you may write it in german, it you like to
Last edited by Rodger; 21st January 2008 at 00:35. |
|
|
|
|
|
#6 | Link |
|
.
![]() Join Date: Oct 2001
Location: Germany
Posts: 7,995
|
Have to wait for a mod to aprove the attachment to see the error message,..
![]() @Atak_Snajpera: afaik RipBot264 would only work if decoding via directshowsource works correctly, or do newer versions of RipBot264 use DGAVCDec ? Last edited by Selur; 21st January 2008 at 06:30. |
|
|
|
|
|
#8 | Link | |
|
RipBot264 author
Join Date: May 2006
Location: Poland
Posts: 7,952
|
Quote:
Did you check for errors? Did you cut properly? How about sending a small sample for us?
__________________
Windows 7 Image Updater - SkyLake\KabyLake\CoffeLake\Ryzen Threadripper Last edited by Atak_Snajpera; 21st January 2008 at 13:54. |
|
|
|
|
|
|
#10 | Link |
|
Registered User
Join Date: Sep 2006
Location: UK
Posts: 416
|
Why can't you use an imagehost like imageshack, it's quicker than attachments.
Also have you seen what the error is if you open the avs script in a media player? |
|
|
|
|
|
#11 | Link |
|
RipBot264 author
Join Date: May 2006
Location: Poland
Posts: 7,952
|
If were you I would use CoreAVC or FFDShow. One more thing! Make sure they are used during decoding.
__________________
Windows 7 Image Updater - SkyLake\KabyLake\CoffeLake\Ryzen Threadripper Last edited by Atak_Snajpera; 21st January 2008 at 15:55. |
|
|
|
|
|
#12 | Link |
|
Angel of Night
![]() Join Date: Nov 2004
Location: Tangled in the silks
Posts: 9,549
|
"Script error: Syntax error, line 2, column 13" sounds pretty self-explanatory to me. MeGUI obviously didn't make it, and if you don't post the full unedited script causing the error, how can anyone help?
|
|
|
|
|
|
#13 | Link |
|
Registered User
Join Date: Dec 2001
Location: Viersen, Germany
Posts: 270
|
In post #5 THERE IS my complete script.
It my be totally wrong...but I donīt know.... In case some developers are here. Here is a example-Folder of what my sat-receiver is recording. http://rapidshare.com/files/85750220...08_01.ZIP.html Last edited by Rodger; 22nd January 2008 at 19:08. |
|
|
|
|
|
#14 | Link |
|
.
![]() Join Date: Oct 2001
Location: Germany
Posts: 7,995
|
Code:
AVCSource("PREMIEREHD 22-01-2008_01.dga")
LanczosResize(1280,720)
Autocrop(mode=0, wMultOf=16, hMultOf=16) #since I'm to lazy to do cropping manually
So seems more like a typo somewhere on your side,.. |
|
|
|
|
|
#15 | Link |
|
Registered User
Join Date: Dec 2001
Location: Viersen, Germany
Posts: 270
|
I made it...I made it through that sh...
![]() I finally found out, what was the error. All PlugIns that I use need to be registered. See the working script: ================================================== LoadPlugin("C:\Programme\AviSynth 2.5\plugins\DGAVCDecode.dll") LoadPlugin("C:\Programme\AviSynth 2.5\plugins\kerneldeint.dll") LoadPlugin("C:\Programme\AviSynth 2.5\plugins\Autocrop.dll") AVCSource("Zathura.dga") KernelDeint(order=0) LanczosResize(1280,720) Autocrop(mode=0, wMultOf=16, hMultOf=16) ================================================== So can anyone tell me, how to register plugins permanently? greetz Rodger |
|
|
|
|
|
#16 | Link | |
|
.
![]() Join Date: Oct 2001
Location: Germany
Posts: 7,995
|
Quote:
|
|
|
|
|
|
|
#22 | Link | |
|
Registered User
Join Date: Dec 2001
Location: Viersen, Germany
Posts: 270
|
Quote:
It seems to run in compatibility-mode... Last edited by Rodger; 31st January 2008 at 17:20. |
|
|
|
|
|
|
#24 | Link |
|
Registered User
Join Date: Dec 2001
Location: Viersen, Germany
Posts: 270
|
Hey lucky hell,
until few minutes ago...my opinion was that it doesnīt support H264 material. Then I tried it to the hardest. first message from AVIdemux: seems like MPEG....should I make Index? YOU HAVE THE SAY "YES" at this point...otherwise...END! second message after this: looks like h264....should I try to work with that thream? OF COURSE ONLY "YES" leads to a further working with the TS-Files. So still I absolutely wouldīnt advise ANYBODY to use AVIdemux with a TS-File. Safe Usage looks different to me
|
|
|
|
|
|
#26 | Link |
|
Angel of Night
![]() Join Date: Nov 2004
Location: Tangled in the silks
Posts: 9,549
|
Rodger, you'd advise against using avidemux even though it opens the files fine, just because it asks a couple questions first? (Although I've recommended more than once that it always perform the actions instead of asking uselessly.)
|
|
|
|
![]() |
|
|