Posts: 1,554
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 627 thank(s) in 372 post(s)
Country:
2017-05-10, 01:38 AM
(This post was last modified: 2017-05-10, 01:39 AM by Chewtobacca.)
You want to fix just that one shot? In that case, separate the fields and step through them. You will find that most of the fields in that particular shot are blended, but there is one field (more or less) for each unique frame that remains unblended. I'd use NNEDI2 (or something like it) on those fields to make them into whole frames and then replace the surrounding blended frames with duplicates of the reconstructed ones. (Your video is full of duplicates anyway.) That's if I wanted to fix just that one shot and splice it back in. For processing the whole film, it would be a different matter. Good luck!
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Wookies are supposed to rip arms away, and not be patient giving advices!
Just kidding kamihikouki; follow what he wrote, and you would find a solution.
Posts: 2,251
Threads: 82
Joined: 2015 Jan
Thanks: 488
Given 844 thank(s) in 439 post(s)
Don't load .m2ts files into avisynth, it's known to have problems with them. first re-mux to mkv or mp4.
You may be able to adapt & scale this code:
Code: FFMpegSource2("00005-cut please help me.mkv")
assumefps(29.97)
separatefields()
interleave(\
interleave( \
selecteven().selectevery(30,3),\
selecteven().selectevery(30,6),\
selecteven().selectevery(30,10),\
selecteven().selectevery(30,14),\
selecteven().selectevery(30,18),\
selecteven().selectevery(30,21),\
selecteven().selectevery(30,25),\
selecteven().selectevery(30,29)\
),\
interleave( \
selectodd().selectevery(30,2),\
selectodd().selectevery(30,6),\
selectodd().selectevery(30,10),\
selectodd().selectevery(30,13),\
selectodd().selectevery(30,17),\
selectodd().selectevery(30,21),\
selectodd().selectevery(30,25),\
selectodd().selectevery(30,28)\
)\
)
weave()
changefps(23.976,linear=False)
Posts: 13
Threads: 1
Joined: 2017 May
Thanks: 3
Given 0 thank(s) in 0 post(s)
Country:
thanks for me good teach, but i was check too late o m g..
just i did but i do not use nnedi2...
coz that's sooo many working...
anyway i did..fix done..
https://s4.postimg.cc/46o66tw99/06-before.png
https://s4.postimg.cc/r9ep5zxql/07-fix.png
https://s4.postimg.cc/49cn7epal/08-before.png
https://s4.postimg.cc/k8vaqylcd/09-fix.png
th first img problem the 2nd img fix..
but i think something need more..
btw m2ts files into avisynth load what's problem?
please tell me..
Posts: 2,251
Threads: 82
Joined: 2015 Jan
Thanks: 488
Given 844 thank(s) in 439 post(s)
It's not frame accurate, it has problems, just re-mux first to .mp4 or .mkv. Also, directshowsource is less reliable than FFMpegSource2. The official recommendation is to use DGAVCDecode for all AVC, and you can do it that way if you want.
Posts: 13
Threads: 1
Joined: 2017 May
Thanks: 3
Given 0 thank(s) in 0 post(s)
Country:
(2017-05-11, 09:22 AM)Valeyard Wrote: It's not frame accurate, it has problems, just re-mux first to .mp4 or .mkv. Also, directshowsource is less reliable than FFMpegSource2. The official recommendation is to use DGAVCDecode for all AVC, and you can do it that way if you want.
wow!!
i was right...
when i 3d bluray working first mkv or mp4 mu and load
avsp..
but that's I need twice as much storage space
This time, m2ts file
By loading a single
so I worked m2ts file..
and can i ask something
do you know
3d bluray 2d+3d both
one file mux?
i just was side by side made
but i was found one file 2d+3d..mkv file
i wonder how working that..
if u want u can found that file
Guardians of the Galaxy 2014 IMAX 1080p Blu-ray Remux AVC DTS-HD MA 7.1 - KRaLiMaRKo
Container.......: Matroska
Size............: 32.8 GB
Duration........: 2:00:51 (h:m )
Source(s).......: 3D Blu-ray 1080p AVC DTS-HD MA 7.1 - HDAccess (thanks!)
Blu-ray 1080p AVC DTS-HD MA 7.1 - HDAccess (thanks!)
CZE Blu-ray 1080p AVC DTS-HD MA 7.1 - CzC (thanks!)
EUR Blu-ray 1080p AVC DTS-HD MA 7.1 - NiP (thanks!)
EUR Blu-ray 1080p AVC DTS-HD MA 7.1 - NTb (thanks!)
TWN Blu-ray 1080p AVC DTS-HD MA 7.1 - hgking (thanks!)
I mainly buy 3d movie Blu-ray
And side by side file operations
but if i can 2d+3d just one file mux..
i want that..
and if i again problem
can i more ask to you?
Posts: 13
Threads: 1
Joined: 2017 May
Thanks: 3
Given 0 thank(s) in 0 post(s)
Country:
(2017-05-10, 02:41 AM)Valeyard Wrote: Don't load .m2ts files into avisynth, it's known to have problems with them. first re-mux to mkv or mp4.
You may be able to adapt & scale this code:
Code: FFMpegSource2("00005-cut please help me.mkv")
assumefps(29.97)
separatefields()
interleave(\
interleave( \
selecteven().selectevery(30,3),\
selecteven().selectevery(30,6),\
selecteven().selectevery(30,10),\
selecteven().selectevery(30,14),\
selecteven().selectevery(30,18),\
selecteven().selectevery(30,21),\
selecteven().selectevery(30,25),\
selecteven().selectevery(30,29)\
),\
interleave( \
selectodd().selectevery(30,2),\
selectodd().selectevery(30,6),\
selectodd().selectevery(30,10),\
selectodd().selectevery(30,13),\
selectodd().selectevery(30,17),\
selectodd().selectevery(30,21),\
selectodd().selectevery(30,25),\
selectodd().selectevery(30,28)\
)\
)
weave()
changefps(23.976,linear=False)
thanks for good information but..
i can't that need sooo many working...
o m g..
but i save that when i try that..
thanks for to me good information again.
Posts: 13
Threads: 1
Joined: 2017 May
Thanks: 3
Given 0 thank(s) in 0 post(s)
Country:
(2017-05-10, 01:38 AM)Chewtobacca Wrote: You want to fix just that one shot? In that case, separate the fields and step through them. You will find that most of the fields in that particular shot are blended, but there is one field (more or less) for each unique frame that remains unblended. I'd use NNEDI2 (or something like it) on those fields to make them into whole frames and then replace the surrounding blended frames with duplicates of the reconstructed ones. (Your video is full of duplicates anyway.) That's if I wanted to fix just that one shot and splice it back in. For processing the whole film, it would be a different matter. Good luck!
NNEDI2 that was not working..
but thanks for to me good teach.
Posts: 13
Threads: 1
Joined: 2017 May
Thanks: 3
Given 0 thank(s) in 0 post(s)
Country:
and also i wonder i have 4k blu-ray too
but only can be read my samsung uhd player.
i have portable BD Writer Model SE-506CB
they do not read working 4k blu-ray
so i ask something that too..
how now 4k blu-ray file Extraction?
coz i found The.Smurfs.2.2013.COMPLETE.UHD.BLURAY....
and when i ask how you are Extraction??
but they did not answer me..
they was sooo mean to me..
if somebody know 4k blu-ray Extraction?
please tell me...
Posts: 1,246
Threads: 12
Joined: 2015 Oct
Thanks: 267
Given 393 thank(s) in 257 post(s)
Country:
AFAIK, everybody here would love to know how the 4k UHD was extracted.
At the moment this seems to be an almost impossible task.
"Never cut a deal with a dragon..."
- Old Shadowrun wisdom
|