Thursday, April 11, 2013
Tuesday, September 11, 2012
Interlace Fields
Interlace Fileds Interlace video image
What is what in the digital world of Metadata
With
so many variables, the video and
TV media cam became overwhelming some times, specialty now a day for some of us that still dealing with the transition between standard Definition TV known as NTSC and High Definition,720P, 1080i, 1080P, not to mention the new formats already been broadcast in Japan. Everyone in the Broadcast media industry have to struggle with so many incompatibilities with the system currently own, no matter how new or advance it is, I see it every day first hand and been able to mentor several people about it, I decide to make this issue the talk of the month. This is a subject that has confused many. What’s interlacing, what’s progressive, what’s the difference between film and video, how does telecining work, what’s the difference between hard and soft telecine, what’s BFF/TFF/RFF, what does those numbers in DVD2AVI/DGIndex mean, where does those CCNNC letters come from and oh god I’m dizzy…
TV media cam became overwhelming some times, specialty now a day for some of us that still dealing with the transition between standard Definition TV known as NTSC and High Definition,720P, 1080i, 1080P, not to mention the new formats already been broadcast in Japan. Everyone in the Broadcast media industry have to struggle with so many incompatibilities with the system currently own, no matter how new or advance it is, I see it every day first hand and been able to mentor several people about it, I decide to make this issue the talk of the month. This is a subject that has confused many. What’s interlacing, what’s progressive, what’s the difference between film and video, how does telecining work, what’s the difference between hard and soft telecine, what’s BFF/TFF/RFF, what does those numbers in DVD2AVI/DGIndex mean, where does those CCNNC letters come from and oh god I’m dizzy…
it’s
just insanely obfuscated, full of cryptic acronyms and generally confusing.
Topics covered in this post will be:
- Interlaced vs. progressive and
the difference between film and video
- Telecining and inverse
telecining (IVTC)
- Pulldown flags, progressive vs.
interlaced with MPEG2 and PAFF/MBAFF with H.264
- Various other related shit
“Real” interlacing
Start
at the beginning: interlacing. “Normal” film or video (video as you intuitively
would see it) is just a sequence of pictures, also known as frames (this is
called progressive). It’s also encoded as such; one picture at a time. Real
interlaced video is however a quite different creature; it doesn’t have frames
at all. Instead it has fields; each field contains half of the vertical
resolution (but both fields have the full horizontal resolution). But it isn’t
as easy as top and bottom half of the picture, that wouldn’t be evil enough.
Instead each field can be thought of as containing every other horizontal line
of a picture (this isn’t quite how it works, but we’ll get to that).
The
thing is, a normal camera captures one frame, waits a moment, captures next and
so on. An interlaced camera on the other hand captures one FIELD (that is, a
“frame” but with half the vertical resolution), waits a moment, captures next
field and so on. This means: if there is motion, you can NOT just pair two
fields together to get the whole picture! This is important, remember it.
So how do you display this without getting weird artifacts (like every other
line being out of sync with it neighbors)? There are two possibilities; either
you do it on an interlaced display that abuses some facts about how the human
vision works to hide the fact that it’s really displaying two different
pictures from two different points in time at the same time, or you deinterlace
it.
There
are several ways to deinterlace, each with their own drawbacks. Some of the
more common ones:
- Weave: Does not really deinterlace at all; takes pairs of
fields and puts them together (every other line) to one frame. Guaranteed
to have artifacts unless the clip is completely static. Avisynth builtin
function: weave().
- Field blending: Takes consecutive pairs of fields and blends them
together into one frame by averaging pixel values. Usually causes funky
ghosting artifacts (since in an interlaced clip, each field is at a temporally
separate point). Obviously very blurry since you effectively lose half the
spatial resolution as well as half the temporal resolution (blending
halves the frame- or fieldrate since every two fields are combined to one
frame, so instead of 60 fields/s you get 30 frames/s). Avisynth: Decomb
plugin, fielddeinterlace(blend=true).
- Bobbing/line doubling: Doubles the height of each field, effectively making
each field its own frame. Also shifts the field slightly up or down so the
picture won’t appear to jump up and down slightly. Quality depends on the
quality of the resizing filter, but like blending it’s blurry since half
the vertical resolution is lost in the upscale. Avisynth builtin function:
bob().
- Motion compensation: Uses, well, motion compensation (like in MPEG video
compression) in an attempt to take information from neighboring fields to
turn pairs of fields into a frame. Avisynth: f.ex. TomsMoComp plugin.
Then
there are hybrids, the best of which is probably motion-compensated bobbing
with a very high quality resizer (see the Avisynth script MCBob).
Telecining
Back
when TV’s were analog only and computers were the size of a flat, there was an
enormous difference between cinematic film and television-broadcast video. The
former was filmed with big photographic cameras on 35m celluloid film at 24
(not 23.976) frames per second, the latter with electronic
cathode ray tube cameras at 59.94 (NTSC, the US) or 50 (PAL, Europe)
interlaced fields per second. One was shown with cinematic projectors, the
other with cathode ray tube televisions. It wasn’t easy to get from one to the
other.
TERMINOLOGY: some literature calls all truly interlaced material VIDEO,
as opposed to non-interlaced material which is called FILM. This derives from
the historical reasons above; video was stuff filmed with video cameras and
shown on TV, film was filmed on, well, film and shown on cinema.
While
everything above so far has applied to both PAL and NTSC, I will now move on to
talk exclusively about NTSC. Since people wanted to watch movies on their TV
sets, a process (called telecining) to convert 24 frames/s film to 59.94
fields/s interlaced video was invented. Each frame is then split into two
fields; the first field gets all the even numbered horizontal lines (with 0
being the topmost line) and the second the odd numbered (this is called top
field first; the inverse is obviously bottom field first). Now we have 48
fields per second, which still doesn’t quite cut it. We need 25% more fields
per second to reach 60 fields/s, where to get them? Speeding the movie up by
25% obviously won’t go very well. Instead we take 8 fields at a time and
duplicate two of them, netting us 10 fields and our desired 60 fields/second, which
is then slowed down slightly to the NTSC standard ratio of 30000/1001 fields/s.
The duplicating is traditionally done as follows (the numbers are frame
numbers, t stands for top field and b for bottom field):
Note that we don’t just duplicate an entire original frame; that would make the result look jerky in pans and such. Instead one field at a time is duplicated, since this is much less visible on an interlaced display.
Note that we don’t just duplicate an entire original frame; that would make the result look jerky in pans and such. Instead one field at a time is duplicated, since this is much less visible on an interlaced display.
Inverse
telecining involves detecting which fields belong to which original frames,
matching them together (field matching) and removing the superfluous fields
(decimating). If we take the example above and do the field matching from the
bottom field, we’ll get a pattern like this (where C stands for “match field
from Current frame” and N stands for “match field from Next frame”):
Note that we’ll end up with a duplicate frame here (#4) which we can remove later, resulting in a 29.97->23.976 fps slowdown. If we don’t do this we’ll get one duplicate every 5 frames and that will make pans and other continous motion look jerky.
Note that we’ll end up with a duplicate frame here (#4) which we can remove later, resulting in a 29.97->23.976 fps slowdown. If we don’t do this we’ll get one duplicate every 5 frames and that will make pans and other continous motion look jerky.
Alternatively
we could match from the top field and end up like this (where P stands for
previous):
Same thing, really.
Same thing, really.
PAL
telecining works similarly but you only need two extra fields every 48 instead
of two extra every 8.
Telecining and interlacing on DVD
Back
when DVD was designed, the most important thing was compatibility with existing
equipment; that meant compatibility with analog NTSC televisions. Hence, a DVD
player must output a 59.94 fields/s analog NTSC signal. However, the DVD itself
isn’t analog and it was decided to allow progressive encoding as well and let
the DVD player worry about the output signal.
For
this reason, every frame on a DVD (or really, in any MPEG2 stream) can be
encoded in two ways: interlaced or progressive. If a 24 fps movie is encoded as
progressive, there are some flags (repeat field flag or RFF) set in the stream
that tell the player that certain frames should be split into fields and one of
those fields be repeated during playback; effectively letting the player do
telecining on the fly. If you’re familiar with DVD2AVI or DGIndex, it’ll tell
you the coding type under the “frame type” heading when previewing or saving a
project file; it’ll say either “interlaced” or “progressive”. However (and this
is quite possibly the most important point in this entire wall of text), the
coding type does not tell you what type of content you are dealing with!
In
an ideal world, cinematic movies (and anime) should always be encoded as
progressive with the proper RFF flags set (known as “soft telecining”), since
this lets users with progressive displays view the source without deinterlacing
(it also makes ripping easier, hur hur hur). If such flags are present
DVD2AVI/DGIndex will say FILM under the video type header; if they are not,
it’ll say NTSC (or PAL). Reality unfortunately disappoints. It’s very common to
see “hard telecined” material, i.e. it was telecined in the studio and the
entire DVD (not just the frames with repeated fields) is coded as interlaced.
This is suboptimal in several ways, not only for people with progressive
displays but also from an encoding standpoint in several ways (problems include
worse chroma subsampling and more overhead from the interlaced coding). DGIndex
will report this as interlaced, but that does not mean you should use a
deinterlacing filter on it. Instead you should use an inverse telecining filter
combination like TIVTC.
Other
more or less common fuckups on the DVD studio’s part include coding interlaced
material as progressive (looks horrible since there’ll be a lot of extremely
sharp edges where there’s any motion), taking interlaced material,
deinterlacing it with a terrible blending deinterlacer and coding the now
eyecancer-inducing progressive result as progressive, or a particular personal
favorite of mine: taking interlaced material, deinterlacing it with an
absolutely terrible deinterlacer that discards every other field and
interpolates the other, and coding the “progressive” result as interlaced on
the DVD (the best solution for this was to discard the broken fields and
re-interpolate them from the untouched ones with NNEDI).
H.264
is a fair bit more sophisticated than MPEG2, and allows not only encoding some
frames as progressive and some as interlaced (in H.264 terms known as PAFF,
Picture-adaptive frame-field coding), but also allows coding of parts of
frames as interlaced and other as progressive (known as MBAFF,
Macroblock-adaptive frame-field coding).
I
reiterate: THE ONLY WAY TO DETERMINE WHAT YOU’RE DEALING WITH IS TO ACTUALLY
LOOK AT IT.
How to tell interlacing from interlacing
If
DGIndex/DVD2AVI reports 100% progressive film or NTSC you’re most likely dealing
with one of the good ones; you just need to tell the indexing program to ignore
RFF flags and blammo you have your progressive stream, no inverse telecining or
decimating necessary. The setting is called “Force FILM”. This is usually the
only thing you need to check for; for everything other than 100% film the
process is mostly the same.
If
it reports 100% interlaced NTSC, you’re either dealing with actually interlaced
material or a “hard telecine”. They’re easy to tell apart; aside from the fact
that interlaced material will look, well, interlaced on every single frame
where there’s motion (telecined material will look interlaced one or two frames
out of five due to the repeated fields), there’s another reliable way of
telling. Use the following Avisynth script:
mpeg2source("x.d2v")
separatefields()
selecteven()
(separatefields() makes each field into its own frame, and selecteven() discards odd numbered frames)
Load it in Virtualdub or something, find a pan or something with movement every frame and step through it. If you see a duplicate field every 4, you have something telecined. If you don’t see any duplicates, you’re dealing with something interlaced (or 29.97fps progressive content coded as interlaced).
mpeg2source("x.d2v")
separatefields()
selecteven()
(separatefields() makes each field into its own frame, and selecteven() discards odd numbered frames)
Load it in Virtualdub or something, find a pan or something with movement every frame and step through it. If you see a duplicate field every 4, you have something telecined. If you don’t see any duplicates, you’re dealing with something interlaced (or 29.97fps progressive content coded as interlaced).
In
general the first thing you should do when trying to find out the nature of
something is separatefields() and some theorycrafting on what it could be and
what that could look like.
One
thing that makes all of this more interesting is the industry’s habit of mixing
different types of material. You can have:
- 23.976 fps progressive material
coded as progressive with RFF’s
- 23.976 fps progressive material
hard telecined and coded as interlaced
- 29.97 fps progressive material
coded as progressive without RFF’s
- 29.97 fps
interlaced/progressive hybrid material coded as interlaced
- 59.94 fields/s pure interlaced
material coded as interlaced
- etcetera
all
on the same DVD.
A
particularly nasty (and unfortunately common) combination is hard telecined
progressive material mixed with 59.94fps interlaced studio credits scrolling
over a 23.976fps progressive but hard telecined background, with the entire
thing being coded as interlaced. This is really hard to fix properly and
usually involves either using a creditless version or hitting the entire
section with a deinterlacer like NNEDI and hope it doesn’t fuck up the
background too much. You’ll just have to deal with the jerkiness caused by the
23.976fps background being displayed at 29.97 fps with duplicate frames.
More
on the Interlace fields coming soon.
Thursday, March 31, 2011
The trendy word among smart phone users
We are still assimilating the broad variety of new technological gadgets launched in the first quarter of this year, almost all that you need, is at your fingertips, it's time to wake up to the 21st century, for those who still live tied down to the phone book and a stack of broadsheets (SfB) full of yesterday’s news and outdated information in this modern over inform society, of course the only fresh ingredient is that annoying and staining ink all over our cloths and the wife’s favorite table cloth, well that SfB also serves another good purpose, ! To wrap around avocados, so it will ripe fast for Sunday’s barbecue. My teenage son send me a text message from his iPod touch 4G a few days ago, he asked me very impatiently about an inquietude thought he had of a new trend in group communication witch it can and be able to disseminate ideas to specific groups of common interest. Why limit the broadcast possibilities by posting just a blog on the web and strangle the chance to widely spread with greater efficiency to all receptive media, reaffirming his question with that statement. Well I think he is in the right track, I wonder myself, why haven’t I thought of that before? Many have found the answer in the APPS; Could this be the new social trend in response awaiting of an extremely impatience society, where they demand immediate answer to all their concerns and desires?
I know that many of you are questioning the previous comment about texting from the ipod, well of course the iPod does have the ability to become a virtual phone without having to unlock it or much less (jailbreak it) This app assign your device with its own phone number, so you may send and receive text messages as long as you access the Web via WiFi, a variety of these applications available on the App Store and Android Market, this is also an alternative for those with limited text messages from your mobile provider.
I know that many of you are questioning the previous comment about texting from the ipod, well of course the iPod does have the ability to become a virtual phone without having to unlock it or much less (jailbreak it) This app assign your device with its own phone number, so you may send and receive text messages as long as you access the Web via WiFi, a variety of these applications available on the App Store and Android Market, this is also an alternative for those with limited text messages from your mobile provider.
The trendy word among smart phone users is APPS, all of us use it, without paying attention to their meaning, some of us think that it stands for "Application" and others conclude that it is an acronym like most terms used in English. Whatever, !it is what it is!, is just the solution we found for the diverse amount of tasks that we want to resolve with our smart phones throughout the day in all our personal and professional activities, there are apps available for almost everything imaginable and every day they develop even more,! If after searching through more than half a million of these apps! you can not find one that fits the specific task you need, just write me and I will undertake the task to find someone who will develop an APP for your specific needs. Apple App Store has more than 350,000 APPS, of which 65,000 are dedicated to the IPAD and Android Market APPS surpasses the 300,000 Apps barrier, many of these apps have dual platform and others serve to cross between platforms. For example: Videoconferencing between i MAC OS devices are using the "Face time", while the APP Tango is available in iTunes App Store and Android Market which works great between my Android 2.2 and my son's ipod.
Some of my fans are wondering why BlackBerry does not make it, to be mention in this blog, well, for the same reason that no mention is made about Windows Phone System 7, the Palm OS Web, the BABA of Samsung or Nokia's Symbian, this last one been mention was one of the first smart phone operating systems in the US, with great success and acceptance .One of the main attributes was its open architecture in which it can be use by other smart phone brand manufactures, unfortunately for the U.S. customers, Symbian lost the battle early in the war between fruits and little aliens and was soon displaced by Apple and Google in the United States, but ever since Symbian remains in fist place around much of Europe, Asia and a significant presence in Latin America, the App Store from Nokia OVI has over 20.00 Apps. Samsung tablet Apps and Sony Ericsson uses Symbian as platform for their apps and Nokia plans to launch a great campaign and it will be introduce to the American public in April 2011. Nokia entered the American Rodeo with the C7 model on T Mobile network platform and AT & T a sign a huge contract with Nokia to expanded the range of Phone Win 7 with a new model Nokia is developing.
It has become such a great success is the diversification and apps integration; Apple has develop a window dedicated to the Apps in its new operating system Mac OS X "Lion," scheduled for release in summer 2011 and the monitor will not be need to be touch with your finger nor be a need to pin point the icon with the mouse, the answer for that, is Apple’s approach in the Mac Lion OSx developed over a dozen new gestures and the possibility of exchanging gestures, to use such gestures and gesticulations in Mac is as simple as simple movements we do with our fingers over the mouse pad, with either a single finger, or with two or three fingers together in all four directions, in addition to the pinch, the claw and expansion, this last one, being used exclusively for humans, because we are the only species to Use our thumb and forefinger to clamp.
No doubt Apple's operating systems continue to lead this year in its two strongest branches, personal computer with Mac OS X for Desktops, Laptops and Notebooks and iOS for iPhone, iPod and iPad respectively, while Microsoft is still the Chief in Corporate Business branch servers and sources of global mass distribution and NASA.
Microsoft Colleagues holding the title of Microsoft Systems Engineers MCSE and MCITP I will remind you to start preparing your self’s to take the update course for Win server 2011,soon to be to be available and obtain the Microsoft certification for Win Server 2011.
I welcome you to make comments in the box below.
Jimmy Correa. April 2011.
I welcome you to make comments in the box below.
Jimmy Correa. April 2011.
Subscribe to:
Posts (Atom)