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
please help me i can't remove that
#11
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!
Reply
Thanks given by:
#12
Wookies are supposed to rip arms away, and not be patient giving advices! Big Grin

Just kidding kamihikouki; follow what he wrote, and you would find a solution.
Reply
Thanks given by:
#13
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)
Reply
Thanks given by: kamihikouki
#14
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..
Reply
Thanks given by:
#15
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.
Reply
Thanks given by:
#16
(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:mConfused)
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?
Reply
Thanks given by:
#17
(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.
Reply
Thanks given by:
#18
(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.
Reply
Thanks given by:
#19
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...
Reply
Thanks given by:
#20
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
Reply
Thanks given by:


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to remove every 25th dupe frame from h264 video Plissken1138 8 5,424 2019-03-31, 12:04 AM
Last Post: Chewtobacca
  Remove Duplicate Frames PDB 10 11,798 2015-07-01, 02:39 AM
Last Post: Valeyard

Forum Jump:


Users browsing this thread: 1 Guest(s)