Log in

View Full Version : DeBlend a Music Video (25fps)


uralop
30th November 2008, 20:36
Hello,

I bought a new DVD of music videos.

It's a PAL DVD, and one of the music video has a lot of blended frames.

Like that :
http://img407.imageshack.us/img407/4340/capture30112008202404uu1.png

And a sample: http://www2.partage-facile.com/1088078-mmm.demuxed.m2v.html

(No wait, no premium account needed, just click the button "Télécharger")


How can I handle this ?

Thanks :)

Guest
1st December 2008, 00:12
What is the exact title and region of the DVD? I ask because I have never seen a commercial DVD encoded that badly (except Indian ones). It looks like somebody's cheap encode. Can you give us a VOB fragment instead?

Irakli
1st December 2008, 00:17
What is the exact title and region of the DVD? I ask because I have never seen a commercial DVD encoded that badly (except Indian ones). It looks like somebody's cheap encode. Can you give us a VOB fragment instead?

Unfortunately, music video DVDs almost always look like that.

Codex0nz
1st December 2008, 08:35
looks like cell division :P lol good luck with this one, call upon the avisynth gods i say!

thetoof
1st December 2008, 08:47
I don't think they could do something... this is so heavily blended that I don't think it can even be restored... one should create a frame out of both blends of the same image to recover both frames, since no clear frame can be found for many frames....... and there are more than 2 blended frames in a row...

uralop
1st December 2008, 11:05
What is the exact title and region of the DVD? I ask because I have never seen a commercial DVD encoded that badly (except Indian ones). It looks like somebody's cheap encode. Can you give us a VOB fragment instead?

The video comes from a R0 DVD. And this is the bonus DVD which came with the Natalie Imbruglia's CD "The Singles 97-07".
I thought the DVD was R2, but it seems it is R0, but I don't think it matters.


Strangely, the others videos don't have that ghosting.

How do you think the video has been produced?


Thanks :)

ankurs
1st December 2008, 11:06
What is the exact title and region of the DVD? I ask because I have never seen a commercial DVD encoded that badly (except Indian ones). It looks like somebody's cheap encode. Can you give us a VOB fragment instead?

indian one's -> suck !

try rock on for instance for a musical movie ..

Unfortunately, music video DVDs almost always look like that.


I don't think they could do something... this is so heavily blended that I don't think it can even be restored... one should create a frame out of both blends of the same image to recover both frames, since no clear frame can be found for many frames....... and there are more than 2 blended frames in a row...

http://forum.doom9.org/showthread.php?t=142967

refer to this thread for almost the same scenario ^^

didee advised restorefps ,it's *quite* *Fast* as compared to removeblend/blockbuster/unblend/ m/srestore(when used only to deblend)/cdeblend etc and is somewhat effective .

something which i did with rock on was to simply unblend (using unblend + checkmate+ cdeblend) and leave it at 29 fps . Then i used YATTA to decimate the frames and get it to 23.976 and voila it worked fine :p


would seperating fields and then selectodd()/selecteven() works on this ? just an idea :rolleyes: ?

let me download the sample and give it a shot ..

uralop
1st December 2008, 11:12
I am uploading a VOB sample.

Here's the link: http://www.partage-facile.com/146178-TITLE01-ANGLE1-CHAPTER11.vob.html (Just click "Télécharger") - 37MB

uralop
3rd December 2008, 21:55
Any help please? :)

2Bdecided
4th December 2008, 11:38
There's weird bad deinterlacing on some frames before whatever blending was done (I think), and in some frames the highlights/sharpening appear to bleed through while nothing else does.

Find another version?! ;)

Cheers,
David.

uralop
4th December 2008, 15:14
I spoke with another DVD's owner who got the NTSC version, he told me there are some ghosting in the NTSC version too. :/

Comatose
4th December 2008, 17:28
But that might be fixable.

Efenstor
8th December 2008, 13:34
Did you try simple subtract?

a = DeleteFrame(0)
b = Overlay(a, mode="Subtract")
Overlay(b, mode="Subtract")

2Bdecided
9th December 2008, 11:12
But that might be fixable.Maybe not - given that the artist is from Australia (a PAL country) it's more likely the NTSC version it just taken from the PAL version - unless this specific footage was shot in an NTSC country - but again, it could have gone NTSC>PAL>NTSC to get to the NTSC version, so still look worse.

Maybe worth trying, but not hopeful.

Cheers,
David.

uralop
9th December 2008, 17:28
Did you try simple subtract?

a = DeleteFrame(0)
b = Overlay(a, mode="Subtract")
Overlay(b, mode="Subtract")

I will try thanks.