Posts: 300
Threads: 24
Joined: 2015 Jan
Thanks: 39
Given 86 thank(s) in 48 post(s)
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.
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Yep, it could be the cause. Try different ones (dss2, directshowsource, ffvideosource etc.) and see if using another one could solve the problem.
Posts: 300
Threads: 24
Joined: 2015 Jan
Thanks: 39
Given 86 thank(s) in 48 post(s)
I can only get it to open with ffvideosource, which looks identical to before. I get errors with dss2 and directshowsource.
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
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.
Posts: 300
Threads: 24
Joined: 2015 Jan
Thanks: 39
Given 86 thank(s) in 48 post(s)
I'm getting an "I don't know what "end" means" error. Could I be missing a plugin?
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
My fault, sorry! I corrected the script in the previous post.
Posts: 300
Threads: 24
Joined: 2015 Jan
Thanks: 39
Given 86 thank(s) in 48 post(s)
(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?
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
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.
Posts: 300
Threads: 24
Joined: 2015 Jan
Thanks: 39
Given 86 thank(s) in 48 post(s)
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.
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
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)
|