
Originally Posted by
curlyween
I must admit I have never used the Panasonic HD-Writer software. I'm a long-time
Premiere Pro user, and currently have CS5.5.
I had never used
AVISynth either and like you was quite daunted by the whole scripting thing as well.
But, I followed the instructions that came with the hd2sd() function, the script is just a simple text file, and it worked out great.
To be honest I believe it's worth persisting with. The little bit of extra work involved really is worth it.
Tackle Avisynth scripts sooner rather than later I'd say. You can start here, it is very simple and it gives you an idea how it works, , it is working with avi file, :
http://www.youtube.com/watch?v=NT_aBWHxFJ4
You can try different lines in the script like:
Spline36Resize(720,480)# it resizes video, PAL DVD demands 720x576
SelectEven()#drops every other frame so you get 25p from 50p
to make 50i from 50p you use:
Code:
AssumeFrameBased().AssumeTFF().SeparateFields().SelectEvery(4, 0, 3).Weave()
So Avi file you will load with AviSource() command
mts file is more difficult to load, AviSource() command will not load it, you need some different commands (leave it for later)
so you can use some uncompressed or lossless codecs from Premiere , where AviSource() command will load it into Avisynth script
or you use Debugmode Frame server and load video directly from Premiere's timeline into Avisynth script!
last thing is to load working avisynth script (after testing in MPC HC or in Virtual Dub for example) into encoder HCencoder (mpeg2 for DVD) or Megui, ripBot264...for H.264), yes this is the concept program can load a script instead of video and everything works just fine, like loading that script into player as if it was video
Do not switch to interlace !
Do not shoot interlace, it makes no sense with Panasonic camcorders.