Posts: 329
Threads: 107
Joined: May 2017
Selur, please fix other bugs.
1. I change the sampling rate of the source file 44100 to 48000 and try remux this file in the *.ts container. TS-muxer does display an error "not supported 44100Hz for LPCM format".
2. Quote:problem is probably with the mkvmerge muxing call
3. Another bug - the output file is fully distorted.
Posts: 10.607
Threads: 57
Joined: May 2017
Quote:1. I change the sampling rate of the source file 44100 to 48000 and try remux this file in the *.ts container. TS-muxer does display an error "not supported 44100Hz for LPCM format".
Fixed that here, when you reported it, Hybrid did check against the input not the output sample rate.
Quote:problem is probably with the mkvmerge muxing call
also fixed
Quote: Another bug - the output file is fully distorted.
no problem here after the fix, so that was due to the mkvmerge call.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 329
Threads: 107
Joined: May 2017
(24.09.2019, 19:32)Selur Wrote: Quote:1. I change the sampling rate of the source file 44100 to 48000 and try remux this file in the *.ts container. TS-muxer does display an error "not supported 44100Hz for LPCM format".
Fixed that here, when you reported it, Hybrid did check against the input not the output sample rate.
Quote:problem is probably with the mkvmerge muxing call
also fixed
Quote: Another bug - the output file is fully distorted.
no problem here after the fix, so that was due to the mkvmerge call.
Cu Selur
where can I download fixed version?
Posts: 10.607
Threads: 57
Joined: May 2017
Working on something else which prevents me from building a dev version which is usable atm. will try to provide you with a usable dev version tomorrow.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 28
Threads: 6
Joined: Dec 2017
I hope I have followed the discussion well
Excuse me but have you tried to use the AC3 codec and x264
only ac3 temporary files are not deleted
video not problem using ts
Posts: 10.607
Threads: 57
Joined: May 2017
25.09.2019, 07:12
(This post was last modified: 25.09.2019, 08:05 by Selur.)
I'll look into it.
-> found and fixed
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 329
Threads: 107
Joined: May 2017
Quote:I change the sampling rate of the source file 44100 to 48000 and try remux this file in the *.ts container. TS-muxer does display an error "not supported 44100Hz for LPCM format".
It fixed
Quote:When I mux this file in the *.mkv with Mkvtoolnix output file has a constant frame rate. It's right.
When I mux this file in the *.mkv with Hybrid output file indicated as vfr. It's wrong!
It fixed
Another bug
Another bug - the output file is fully distorted. It still exist.
"Avisynth preview" working normally, "Preview" with checked box "No Avisynth during Preview' working normally, with uncheck this - preview stretched vertically. After close "Preview" window appears message "Couldn't delete C:\Users\Orion\AppData\Local\Temp\tempPreviewAvisynthFile14_03_56_298.avs"
Posts: 10.607
Threads: 57
Joined: May 2017
Quote:"Avisynth preview" working normally
good
Quote:"Preview" with checked box "No Avisynth during Preview' working normally
good
Quote:with uncheck this - preview stretched vertically.
Okay,... looking at the avisynth script of the debug output:
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\LoadDll.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\FFT3DFilter.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\MosquitoNR.dll")
LoadDLL("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\libfftw3f-3.dll")
LoadCPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\ffms2.dll")
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
# loading source: D:\clips\new10\aspect\2\brak\Slipping Through My Fingers.mov
# input color sampling YUY2
# input luminance scale pc
Source = FFVideoSource("D:\clips\new10\aspect\2\brak\Slipping Through My Fingers.mov",cachefile="C:\Users\Orion\AppData\Local\Temp\mov_39e335b2bddc0b43a82621e59a460eae_853323747_1_0.ffindex",fpsnum=25,colorspace="YUY2")
# current resolution: 768x576
SourceFiltered = Source
SourceFiltered = SourceFiltered.AssumeFrameBased().SeparateFields()
# cropping to 762x480
SourceFiltered = SourceFiltered.Crop(4,46,-2,-50)
# current resolution: 762x480 (SourceFiltered)
Source = Source.AssumeFrameBased().SeparateFields()
Source = Source.Crop(4,46,-2,-50)
# current resolution: 762x480 (Source)
# filtering
# color modifications
SourceFiltered = SourceFiltered.Tweak(sat=0.30,startHue=305,endHue=15)
SourceFiltered = SourceFiltered.Levels(22,1.00,255,0,215)
# denoising using fft3dfilter
SourceFiltered = SourceFiltered.FFT3DFilter(sharpen=0.80,interlaced=true)
# deringing using MosquitoNR
SourceFiltered = SourceFiltered.MosquitoNR()
# scaling
Source = Source.Spline36Resize(762,480)
# current resolution: 762x480
Source = Source.Weave()
SourceFiltered = SourceFiltered.Spline36Resize(762,480)
SourceFiltered = SourceFiltered.Weave()
# stacking horizontal for filter preview
SourceFiltered = SourceFiltered.ConvertToRGB32(matrix="PC.709")
Source = Source.ConvertToRGB32(matrix="PC.709")
StackHorizontal(Source, SourceFiltered)
PreFetch(2)
return last
Probably related to the weave, resize, crop and filter combination,the YUY2 colorspace.
My guess is that the preview is correct if you use an Avisynth deinterlacer.
-> use a deinterlacer, try whether this is related to one of the filters you used.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Posts: 329
Threads: 107
Joined: May 2017
[quote='Selur' pid='6221' dateline='1569592521']
Quote:Probably related to the weave, resize, crop and filter combination,the YUY2 colorspace.
My guess is that the preview is correct if you use an Avisynth deinterlacer.
-> use a deinterlacer, try whether this is related to one of the filters you used.
Cu Selur
When I enable QTGMC deinterlacer "Preview" and output file is normally.
When I disable all Avisynth filter (include deinterlacer) and then press "Preview" button, "Preview" window appears and immediately closed.
Posts: 10.607
Threads: 57
Joined: May 2017
Can't reproduce this here with any of the sources you shared.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
|