Log in

View Full Version : VC1 to MPEG2


chrkou
29th June 2007, 01:24
Is there any way that i can convert vc1 .ts file to mpeg?
Thank you.

Blue_MiSfit
29th June 2007, 04:49
Well, it should be possible to at the very least load the VC1 .TS in AviSynth with DirectShowSource (assuming you can open the TS with a DirectShow media player like Media Player Classic or Windows Media Player.

Once you get the video into AviSynth, it can be processed into any resolution you desire (HD or SD, or anything else), and encoded with any encoder you want - like HCenc or QuEnc for MPEG-2.

DirectShowSource is far from perfect, there may be a more native way to decode VC1 video in AviSynth, but I'm not up on the whole topic :)

~MiSfit

chrkou
30th June 2007, 18:38
I tried, this method, but nothing, i can't do it.
The file that Quenc generates is an m2v file, with size 0byte and no audio.

Does anybody knows any other way or software?

Blue_MiSfit
1st July 2007, 01:39
Well, now that I think about it, I don't think QuEnc supports HD.

What happens if you load your AviSynth script into VirtualDub? Do you get a picture?

If so, try HCEnc after that, as it does support HD properly.

~MiSfit

chrkou
1st July 2007, 20:00
I have made an avs script file in notepad

DirectShowSource("C:\video file.ts")
converttoyv12()

When i try to load the file in Virtualdub, i have no picture.
Hcenc loads the file, but when i try to encode it, i get an error "No frames to encode"

chrkou
2nd July 2007, 04:48
At least, is there any way that i can demux it in video and audio?

Blue_MiSfit
2nd July 2007, 08:21
Try using mencoder / ffmpeg?

chrkou
2nd July 2007, 12:38
The result i get from Mencoder is:
MEncoder dev-SVN-r19260-4.0.3 (C) 2000-2006 MPlayer Team
CPU: Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz (Family: 6, Model: 15, Step
ping: 6)
CPUflags: Type: 6 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2

success: format: 0 data: 0x0 - 0x12ffffb0
TS file format detected.
NO VIDEO! NO AUDIO! NO SUBS (yet)!
Video stream is mandatory!

Exiting...


Am i doing something wrong?

chrkou
2nd July 2007, 12:57
Can you please tell me the command line for ffmpeg?