Hello guest, if you like this forum, why don't you register? https://fanrestore.com/member.php?action=register (December 14, 2021) x


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Partially Field Blended NTSC DVD info
#21
I'm just using this script:

MPEG2Source("X:\valeyard.d2v")
Separatefilds()

It's only for a small amount of footage that this happens to the rest of the disc is fine. Now that I've noticed it, I can see it when watching the scenes on the DVD too.
Reply
Thanks given by:
#22
Yep, it could be the cause. Try different ones (dss2, directshowsource, ffvideosource etc.) and see if using another one could solve the problem.
Reply
Thanks given by:
#23
I can only get it to open with ffvideosource, which looks identical to before. I get errors with dss2 and directshowsource.
Reply
Thanks given by:
#24
Code:
part1bad=trim(xxx,yyy) # make sure to cut exactly the part

a1=part1bad.selectevery(5,0)
a2=part1bad.selectevery(5,1)
a3=part1bad.selectevery(5,2)
a4=part1bad.selectevery(5,3)
a5=part1bad.selectevery(5,4)

part1fix=interleave(a1,mergechroma(a2,a3),mergechroma(a3,a2),a4,a5)

# repeat with bad parts, assemble all the good and fixed parts, deinterlace etc.
Reply
Thanks given by:
#25
I'm getting an "I don't know what "end" means" error. Could I be missing a plugin?
Reply
Thanks given by:
#26
My fault, sorry! I corrected the script in the previous post.
Reply
Thanks given by:
#27
(2017-02-10, 07:46 PM)spoRv Wrote: My fault, sorry! I corrected the script in the previous post.

No worries, now AvsPmod is saying "Not a Clip". I take it xxx and yyy are frame number?
Reply
Thanks given by:
#28
You should call the clip before, or make something like:

part1bad=youclip.trim(xxx,yyy)

yes, xxx is the start and yyy is the end frame.
Reply
Thanks given by:
#29
Here's where I'm at:

mpeg2source("X:\valeyard.d2v")

part1bad=valeyard.d2v.trim(050,100) # make sure to cut exactly the part

a1=part1bad.selectevery(5,0)
a2=part1bad.selectevery(5,1)
a3=part1bad.selectevery(5,2)
a4=part1bad.selectevery(5,3)
a5=part1bad.selectevery(5,4)

part1fix=interleave(a1,mergechroma(a2,a3),mergechroma(a3,a2),a4,a5)

I'm getting the response "I don't know what "valeyard" means", haha.
Reply
Thanks given by:
#30
Code:
valeyard=mpeg2source("X:\valeyard.d2v")

part1bad=valeyard.trim(050,100) # make sure to cut exactly the part

a1=part1bad.selectevery(5,0)
a2=part1bad.selectevery(5,1)
a3=part1bad.selectevery(5,2)
a4=part1bad.selectevery(5,3)
a5=part1bad.selectevery(5,4)

part1fix=interleave(a1,mergechroma(a2,a3),mergechroma(a3,a2),a4,a5)
Reply
Thanks given by:


Possibly Related Threads…
Thread Author Replies Views Last Post
  Some info about analog capture spoRv 8 10,269 2016-04-07, 11:09 AM
Last Post: Evit

Forum Jump:


Users browsing this thread: 1 Guest(s)