Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
The MUSE players, like any DVD player, use a red laser, instead of the infrared one used on normal PAL and NTSC players; hence, it can read better some disc with mild laserrot, and squeeze a bit more resolution from a well mastered disc.
Have you noted the tridimensionality of the video, or it's just my plasma display that shows it?
Posts: 113
Threads: 14
Joined: 2015 Aug
Thanks: 34
Given 4 thank(s) in 4 post(s)
Country:
Also tried to download the sample to get nothing. I'll try your link zoidberg. I found this disc while scouting the internet, 115 pounds from Japan.
Now only to get together the other 3000 for the player LOL
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Do not fotget the MUSE decoder, though...
Posts: 2,049
Threads: 56
Joined: 2016 Dec
Thanks: 161
Given 1008 thank(s) in 612 post(s)
I'll keep the MUSE link up for the foreseeable. Perhaps someone would like to IVTC/Decimate it?
Posts: 22
Threads: 4
Joined: 2015 Jan
Thanks: 0
Given 0 thank(s) in 0 post(s)
Country:
(2017-01-18, 04:48 PM)zoidberg Wrote: I'll keep the MUSE link up for the foreseeable. Perhaps someone would like to IVTC/Decimate it?
Well, I tried my hands upon it and, personally, I don't like the results. Long story short, I used AviSynth to decimate it and, well, for some reason beyond me, my attempts results in a 18 FPS interlaced video! No joke! So naturally, I tried my best to restore the original FPS of the sample. For the curious, here's the code:
Code: Cores=4
SetMemoryMax(512)
SetMTMode(3, Cores)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\svpflow1.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\svpflow2.dll")
Import("D:\InterFrame-2.8.2\InterFrame-2.8.2\InterFrame2.avsi")
DirectShowSource("D:\JPmuse.mkv", fps=30.000, audio=false, convertfps=true).AssumeFPS(30,1)
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\TIVTC.dll")
ConvertToYUY2()
TDecimate(cycleR=2) # returns 18 fps video
crop(34, 82, -28, -46)
LeakKernelDeint(1) # for improved vertical resolution
ConvertToYV12()
SetMTMode(2)
InterFrame(Cores=Cores, NewNum=30, NewDen=1, Tuning="Smooth", GPU=true)
ConvertToYUY2()
Here's the result of the code: JPmuse (Emils code v1)
I think the code needs improvement somewhere, I just don't know where. But at least I wrote a second code that just uses LeakKernelDeint to deinterlace and in my opinion, I like that code better after seeing the results of the code above. Try it out if you'd like:
Code: DirectShowSource("D:\JPmuse.mkv", fps=30.000, audio=false, convertfps=true).AssumeFPS(30,1)
ConvertToYUY2()
LeakKernelDeint(1) # for improved vertical resolution
crop(34, 82, -28, -46)
Posts: 13
Threads: 1
Joined: 2015 Jan
Thanks: 1
Given 3 thank(s) in 3 post(s)
I still have a Muse player and decoder, but the only MUSE disc I have is a league of their own.
Posts: 22
Threads: 4
Joined: 2015 Jan
Thanks: 0
Given 0 thank(s) in 0 post(s)
Country:
Never mind, I think I found a solution already:
Code: DirectShowSource("D:\JPmuse.mkv", fps=30.000, audio=false, convertfps=true).AssumeFPS(30,1)
ConvertToYUY2()
PFR()
crop(34, 82, -28, -46)
Posts: 2,290
Threads: 39
Joined: 2015 Jan
Thanks: 177
Given 187 thank(s) in 133 post(s)
Wouldn't the frame rate there be 29.970 and NOT 30??
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Should be:
Assumefps(30000,1001)
Posts: 22
Threads: 4
Joined: 2015 Jan
Thanks: 0
Given 0 thank(s) in 0 post(s)
Country:
(2017-02-05, 03:20 PM)spoRv Wrote: Should be:
Assumefps(30000,1001)
Gotcha, posting corrected code now:
Code: DirectShowSource("D:\JPmuse.mkv", fps=30.000, audio=false, convertfps=true).Assumefps(30000,1001)
ConvertToYUY2()
PFR()
crop(34, 82, -28, -46)
|