A third option for encoding DV in CCE (re: field orders) » JavaScript Programming Language » FORUM for IT
FORUM for IT

FORUM for IT



ПоискПоиск   Users   Registration   Entrance
Today: 03.04.2025 - 04:40:06
Pages:  1  

A third option for encoding DV in CCE (re: field orders)

Advertising

.
AuthorMessage

spIkee36

user




Statistics:
Messages: 438
Registration: 03.20.2003

I often see threads relating to peoples trouble encoding DV material in CCE. So far I have seen two options suggested to deal with field order (of course, we all know that DV is bottom field first): 1) Use the 'top field first' flag in CCE to move the video up one line and in effect change the footage from bff to tff. 2) Encode in CCE then use pulldown, restream or whatever your preferred tool is for switching the tff/bff flags in the mpeg stream. I've been using a third option on my footage and find the results very pleasing so I thought that it could be worth sharing. Using AviSynth (v2.51) I use a simple script to change the DV material from bff to tff. This means that I can encode as usual and should anyone need to work with my footage later (e.g. rip from my DVD and re-encode for some reason) then the footage is tff and should not cause them any problems. The principal is simple: 1) Split the frames into separate fields 2) Add a blank field at the start and end of the footage. 3) Weave the fields back together and hey presto, it has changed to tff. Here's an example of the kind of script that I use: # Load the DV footage as individual fields, bottom field first is automatic. # Note: Fix the chroma upsampling of the Canopus DV codec. dv=AVISource("vhs.avi").FixBrokenChromaUpsampling.ConvertToYV12 fields=dv.SeparateFields # Add a blank field at the start and end of the original footage. BlankClip(fields, 1) + fields + BlankClip(fields, 1) # Weave the fields back together, the result being top field first. AssumeFieldBased.AssumeTFF.Weave # Trim the footage to the desired length. Trim(0, 106018) # Use the Convolution3D plugin to smooth out VHS capture nasties! Convolution3D(preset="vhsBQ") # Switch back to YUY2 colorspace for MPEG-2 encoding. YV12toYUY2 Maybe this trick will be of use (or just of interest) to you. It's just a little something that I came up with one day and been using ever since. Logiqx

---------------------
Message # 1 27.03.20 - 14:37:10
RE: A third option for encoding DV in CCE (re: field orders)

GreenM3

user




Statistics:
Messages: 265
Registration: 07.04.2002

To convert bff to tff in AVISynth, you can also simply do Code:

---------------------
1998 Boston Green M3 * Speed by Dinan Stage II Supercharger * Light by ZKW with DDEs * Sound by Sony and Apple iPod
Message # 2 27.03.20 - 14:44:00
RE: A third option for encoding DV in CCE (re: field orders)

lwebb12

user




Statistics:
Messages: 483
Registration: 09.08.2003

Thanks RB, That will remove most of the clutter from my DV related scripts. :) I should have spotted the DoubleWeave opportunity myself. Logiqx

---------------------
Message # 3 27.03.20 - 14:50:07
RE: A third option for encoding DV in CCE (re: field orders)

mdv

user




Statistics:
Messages: 270
Registration: 08.30.2002

Logiqx, this sounds interesting. But.. Since you add one black frame at the start of the video, doesn't the audio need to be moved forward 1 frame as well? That's 1/25 second in PAL video and 1/29.97 sec for NTSC. Maybe I'm totally off here, but I just want to check. ;)

---------------------
Message # 4 27.03.20 - 14:57:58
RE: A third option for encoding DV in CCE (re: field orders)

98technovlt

user




Statistics:
Messages: 847
Registration: 01.27.2003

The extra fields also insert the correct amount of silence too. I checked this by inserting 1001 blank fields as a test and getting ~20 seconds of black screen silence at the start of my PAL clip. I guess it's quite easy for VirtualDub to deal with this in PAL (since 48,000Hz audio can be divided exactly by 50) but it may lose a tiny bit of synchronisation in NTSC (since 48,000 / 59.97 doesn't work out exactly). I'm yet to try the DoubleWeave idea but I see no reason why it won't be just as good my longer method (except for the loss of one field at each end of the clip but I'm not that fussy, lol). Logiqx

---------------------
[IMG]http://[/IMG]
Message # 5 27.03.20 - 15:08:49
RE: A third option for encoding DV in CCE (re: field orders)

4-BNGR

user




Statistics:
Messages: 89
Registration: 07.03.2002

FixBrokenChromaUpsampling.ConvertToYV12 

---------------------
1997 Z3 1.9L - Downing Atlanta Super Charger,Rspeed Check Valve,VDO Boost Gague,Custom Panel,NGK Plugs,SS CatBack Exhaust,Dinan CAI,Ron Stygar Short Shifter,Ron Stygar Clutch Stop,Alpine CD Tuner,MBQ 5.25" Drivers 2003 Mitsubishi Lancer Evolution VII
Message # 6 27.03.20 - 15:19:19
RE: A third option for encoding DV in CCE (re: field orders)

85735iohmy

user




Statistics:
Messages: 577
Registration: 05.08.2003

can you explain what this line is for. Do I need this when encoding my minidv material?????? FixBrokenChromaUpsampling.ConvertToYV12

---------------------
Message # 7 27.03.20 - 15:24:56
RE: A third option for encoding DV in CCE (re: field orders)

AvusBluR

user




Statistics:
Messages: 2,255
Registration: 05.23.2002

The FixBrokenChromaUpsampling is only required if you use the Canopus codec (read the sticky thread at the top of this forum for further information). It definitely is needed for the Canopus codec... it is easy to see why when examining interlaced material in particular. The ConvertToYV12 is because I am using Avisynth 2.5x and in theory, subsequent filters should be faster in that colorspace. The version of Convolution3D for AviSynth 2.5x may only work in that colorspace too, I forget. Note how I have to switch back to YUY2 at the end of the script anyway.

---------------------
Message # 8 27.03.20 - 15:36:05
RE: A third option for encoding DV in CCE (re: field orders)

MD326

user




Statistics:
Messages: 807
Registration: 06.24.2003

what if you just use the m$ dv codec? do you still need to use the FixBrokenChromaUpsampling line?

---------------------
Message # 9 27.03.20 - 15:46:46
RE: A third option for encoding DV in CCE (re: field orders)

squirrel

user




Statistics:
Messages: 453
Registration: 08.07.2003

Not to my knowledge but I have not used the Microsoft codec. I opted for the Canopus codec after reading the sticky thread in this forum and examining the example images: Logiqx

---------------------
Bleed Green Club member 2
Message # 10 27.03.20 - 15:50:06
RE: A third option for encoding DV in CCE (re: field orders)
firewire question : Previous topicNext topic: Does ceramic coating protect against scratches?
Pages:  1  

The administrator has prohibited guests from replying to messages! To register, follow the link: register


Participants