The following warnings occurred:
Warning [2] Undefined array key 1 - Line: 313 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 313 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined array key 1 - Line: 314 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 314 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined array key "" - Line: 327 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 327 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once



This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Audio encoding crash
#20
Okay, strange thing is muxing ac3 works fine here. :/
According to the log:
  1. audio is extracted using: (20_59_21_5810_01_audio)
    "C:\Audio-video App\Hybrid\64bit\mkvextract.exe" tracks "D:\Temp\Remux\video\video.mkv" 1:"C:\Users\*****\AppData\Local\Temp\iId_1_aid_0_lang_en_20_59_21_5810_01.dts"
  2. which created:
    C:\Users\*****\AppData\Local\Temp\iId_1_aid_0_lang_en_20_59_21_5810_01.dts (6912.2 MB)
  3. audio is reencoded to ac3 using: (20_59_21_5810_02_audio)
    "C:\Audio-video App\Hybrid\64bit\ffmpeg.exe" -y -threads 8 -loglevel fatal -nostdin -i "C:\Users\*****\AppData\Local\Temp\iId_1_aid_0_lang_en_20_59_21_5810_01.dts" -ac 8 -ar 48000 -sample_fmt s32 -f sox - | "C:\Audio-video App\Hybrid\64bit\sox.exe" --multi-threaded  --temp "C:\Users\*****\AppData\Local\Temp\20_59_21_581001" --buffer 524288 -S -t sox - -b 32 -t sox - remix -m 1v0.243804,7v0.062798,3v0.172392,6v0.044404,8v0.044404,5v0.432198 2v0.243804,7v0.062798,3v0.172392,5v0.044404,8v0.044404,6v0.432198 | "C:\Audio-video App\Hybrid\64bit\ffmpeg.exe" -y -threads 8 -f sox -i - -b:a 224k -ar 48000 -channel_layout stereo "C:\Users\*****\AppData\Local\Temp\iId_1_aid_0_lang_en_20_59_21_5810_02.ac3"
  4. which created:
    C:\Users\ctapp\AppData\Local\Temp\iId_1_aid_0_lang_en_20_55_31_5810_02.ac3 (236.711 MB)
  5. the extracted audio file (C:\Users\ctapp\AppData\Local\Temp\iId_1_aid_0_lang_en_20_55_31_5810_01.dts) is deleted (20_55_31_5810_03)
  6. the Vapoursynth script (C:\Users\ctapp\AppData\Local\Temp\encodingTempSynthSkript_20_55_31_5810.vpy) is created (20_55_31_5810_04_create)
    # Imports
    import os
    import sys
    import vapoursynth as vs
    core = vs.get_core()
    # Import scripts folder
    scriptPath = 'C:/Audio-video App/Hybrid/64bit/vsscripts'
    sys.path.append(os.path.abspath(scriptPath))
    # Loading Plugins
    core.std.LoadPlugin(path="C:/Audio-video App/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
    core.std.LoadPlugin(path="C:/Audio-video App/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
    # Import scripts
    import tmap
    # input color space: YUV420P10, bit depth: 10
    # Loading D:\Temp\Remux\video\video.mkv using LWLibavSource
    clip = core.lsmas.LWLibavSource(source="D:/Temp/Remux/video/video.mkv", format="YUV420P10", cache=0, fpsnum=24000, fpsden=1001, prefer_hw=0)
    # making sure input color matrix is set as 2020ncl
    clip = core.resize.Point(clip, matrix_in_s="2020ncl",range_s="limited")
    # making sure frame rate is set to 23.976
    clip = core.std.AssumeFPS(clip, fpsnum=24000, fpsden=1001)
    # Setting color range to TV (limited) range.
    clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
    # Color Adjustment
    clip = tmap.hablehdr10tosdr(clip=clip, source_peak=1000, desat=50, tFormat=vs.YUV420P8, tMatrix="709", tRange="limited", color_loc="center", lin="True", show_satmask="False", show_clipped="False")
    clip = core.fmtc.resample(clip=clip, kernel="spline16", w=716, h=388, interlaced=False, interlacedd=False)
    # adjusting output color from: YUV420P16 to YUV420P8 for xvidModel (i420)
    clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P8, range_s="limited")
    # Output
    clip.set_output()
  7. 2pass 1st pass is processed using: (20_55_31_5810_05_video)
    "C:\Audio-video App\Hybrid\64bit\Vapoursynth\vspipe.exe" "C:\Users\ctapp\AppData\Local\Temp\encodingTempSynthSkript_20_55_31_5810.vpy" - --y4m | "C:\Audio-video App\Hybrid\64bit\ffmpeg.exe" -y -loglevel fatal -noautorotate -nostdin -threads 8 -f yuv4mpegpipe -i - -an -sn -vf zscale=rangein=tv:range=tv -pix_fmt yuv420p -vsync 0  -f rawvideo - | "C:\Audio-video App\Hybrid\64bit\mencoder.exe" -demuxer rawvideo -rawvideo w=716:h=388:fps=24.0 - -noskip -vf scale,format=i420 -forcedsubsonly -nosound -lavdopts threads=8 -mc 0 -fps 24000/1001 -ovc xvid -xvidencopts pass=1:turbo:bitrate=1500:me_quality=6:quant_type=h263:min_iquant=1:max_iquant=31:min_pquant=1:max_pquant=31:min_bquant=1:max_bquant=31:max_key_interval=250:keyframe_boost=10:kfthreshold=1:kfreduction=20:quant_type=h263:max_bframes=2:bquant_ratio=150:bquant_offset=100:bf_threshold=0:vhq=2:bvhq=1:curve_compression_high=0:curve_compression_low=0:overflow_control_strength=10:max_overflow_improvement=10:max_overflow_degradation=10:trellis:noqpel:nogmc:nocartoon:chroma_opt:chroma_me:nointerlacing:par=ext:par_width=1:par_height=1:closed_gop:nopacked:threads=8 -passlogfile "C:\Users\ctapp\AppData\Local\Temp\video.stats" -o NUL
  8. 2pass 2nd pass is processed using: (20_55_31_5810_06_video)
    "C:\Audio-video App\Hybrid\64bit\Vapoursynth\vspipe.exe" "C:\Users\ctapp\AppData\Local\Temp\encodingTempSynthSkript_20_55_31_5810.vpy" - --y4m | "C:\Audio-video App\Hybrid\64bit\ffmpeg.exe" -y -loglevel fatal -noautorotate -nostdin -threads 8 -f yuv4mpegpipe -i - -an -sn -vf zscale=rangein=tv:range=tv -pix_fmt yuv420p -vsync 0  -f rawvideo - | "C:\Audio-video App\Hybrid\64bit\mencoder.exe" -demuxer rawvideo -rawvideo w=716:h=388:fps=24.0 - -noskip -vf scale,format=i420 -forcedsubsonly -nosound -lavdopts threads=8 -mc 0 -fps 24000/1001 -ovc xvid -xvidencopts pass=2:bitrate=1500:me_quality=6:quant_type=h263:min_iquant=1:max_iquant=31:min_pquant=1:max_pquant=31:min_bquant=1:max_bquant=31:max_key_interval=250:keyframe_boost=10:kfthreshold=1:kfreduction=20:quant_type=h263:max_bframes=2:bquant_ratio=150:bquant_offset=100:bf_threshold=0:vhq=2:bvhq=1:curve_compression_high=0:curve_compression_low=0:overflow_control_strength=10:max_overflow_improvement=10:max_overflow_degradation=10:trellis:noqpel:nogmc:nocartoon:chroma_opt:chroma_me:nointerlacing:par=ext:par_width=1:par_height=1:closed_gop:nopacked:threads=8 -passlogfile "C:\Users\ctapp\AppData\Local\Temp\video.stats" -force-avi-aspect 1.84536 -of avi -o "C:\Users\ctapp\AppData\Local\Temp\20_55_31_5810_06.avi"
  9. stats file ("C:\Users\ctapp\AppData\Local\Temp\video.stats) is deleted (20_55_31_5810_07_cleanUp)
  10. Vapoursynth script ("C:\Users\ctapp\AppData\Local\Temp\encodingTempSynthSkript_20_55_31_5810.vpy") is deleted (20_55_31_5810_08_cleanUp)
  11. avi is muxed using:
    "C:\Audio-video App\Hybrid\64bit\mencoder.exe" -ovc copy "C:\Users\ctapp\AppData\Local\Temp\20_55_31_5810_06.avi" -ffourcc XVID -force-avi-aspect 1.84536 -mc 0  -oac copy -audiofile "C:\Users\ctapp\AppData\Local\Temp\iId_1_aid_0_lang_en_20_55_31_5810_02.ac3" -ofps 24000/1001 -of avi -o "D:\Temp\Remux\The.Blues.Brothers.1980.EXTENDED.2160p.UHD.BluRay.x265-AViATOR\video.avi"
  12. Mencoder output:
    MEncoder SVN-r38184-9.3.0 (C) 2000-2020 MPlayer Team
    success: format: 0  data: 0x0 - 0x631a7d1a
    libavformat version 58.42.100 (internal)
    AVI file format detected.
    [aviheader] Video stream found, -vid 0
    ODML: Building ODML index (1 superindexchunks).
    VIDEO:  [XVID]  716x388  12bpp  23.976 fps  1495.2 kbps (182.5 kbyte/s)
    libavformat file format detected.
    [lavf] stream 0: audio (ac3), -aid 0
    [V] filefmt:65536  fourcc:0x44495658  size:716x388  fps:23.976  ftime:=0.0417
    [ac3 @ 000000000295cfe0]Estimating duration from bitrate, this may be inaccurate
    framecopy (716x388 12bpp fourcc=44495658)
    Forcing output FourCC to 44495658 [XVID].
    audiocodec: framecopy (format=2000 chans=2 rate=48000 bits=0 B/s=28000 sample-0)
    Writing header...
    ODML: vprp aspect is 16384:8878.
    Writing header...
    ODML: vprp aspect is 16384:8878.
    ...
    Writing index...
    Writing header...
    ODML: vprp aspect is 16384:8878.
    Video stream: 1495.199 kbit/s  (186899 B/s)  size: 1656793326 bytes  8864.605 secs  212538 frames
    Audio stream: 200704.000 kbit/s  (25088000 B/s)  size: 248209024 bytes  9.894 secs
  13. created:
    D:\Temp\Remux\The.Blues.Brothers.1980.EXTENDED.2160p.UHD.BluRay.x265-AViATOR\video.avi (1828.16 MB)

According to the debug output and the file has ac3 audio and when I try to reproduce the issue here all my encodings also have ac3 audio output?

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
Audio encoding crash - by Devilman1 - 01.06.2020, 17:45
RE: Audio encoding crash - by Selur - 02.06.2020, 05:07
RE: Audio encoding crash - by Selur - 02.06.2020, 15:43
RE: Audio encoding crash - by Selur - 02.06.2020, 16:03
RE: Audio encoding crash - by Devilman1 - 02.06.2020, 20:39
RE: Audio encoding crash - by Selur - 02.06.2020, 20:42
RE: Audio encoding crash - by Devilman1 - 02.06.2020, 20:56
RE: Audio encoding crash - by Selur - 03.06.2020, 04:55
RE: Audio encoding crash - by Devilman1 - 03.06.2020, 12:24
RE: Audio encoding crash - by Selur - 03.06.2020, 15:45
RE: Audio encoding crash - by Selur - 03.06.2020, 17:52
RE: Audio encoding crash - by Devilman1 - 03.06.2020, 20:14
RE: Audio encoding crash - by Selur - 03.06.2020, 21:02
RE: Audio encoding crash - by Devilman1 - 04.06.2020, 00:02
RE: Audio encoding crash - by Selur - 04.06.2020, 04:56
RE: Audio encoding crash - by Devilman1 - 04.06.2020, 08:51
RE: Audio encoding crash - by Selur - 04.06.2020, 15:48
RE: Audio encoding crash - by Devilman1 - 04.06.2020, 23:45
RE: Audio encoding crash - by Selur - 05.06.2020, 05:20
RE: Audio encoding crash - by Selur - 05.06.2020, 19:33
RE: Audio encoding crash - by Devilman1 - 06.06.2020, 00:19
RE: Audio encoding crash - by Selur - 06.06.2020, 05:18
RE: Audio encoding crash - by Devilman1 - 06.06.2020, 11:23
RE: Audio encoding crash - by Selur - 06.06.2020, 13:11
RE: Audio encoding crash - by Selur - 06.06.2020, 15:53
RE: Audio encoding crash - by Devilman1 - 06.06.2020, 16:21
RE: Audio encoding crash - by Selur - 06.06.2020, 16:54
RE: Audio encoding crash - by Devilman1 - 06.06.2020, 17:06
RE: Audio encoding crash - by Selur - 06.06.2020, 20:08
RE: Audio encoding crash - by Devilman1 - 07.06.2020, 13:12
RE: Audio encoding crash - by Selur - 07.06.2020, 13:25
RE: Audio encoding crash - by Devilman1 - 07.06.2020, 14:05
RE: Audio encoding crash - by Selur - 07.06.2020, 14:11
RE: Audio encoding crash - by Devilman1 - 07.06.2020, 14:57
RE: Audio encoding crash - by Selur - 07.06.2020, 14:59
RE: Audio encoding crash - by Devilman1 - 07.06.2020, 18:55
RE: Audio encoding crash - by Selur - 07.06.2020, 21:44
RE: Audio encoding crash - by Devilman1 - 09.06.2020, 00:27
RE: Audio encoding crash - by Selur - 09.06.2020, 05:03
RE: Audio encoding crash - by Devilman1 - 09.06.2020, 09:34
RE: Audio encoding crash - by Selur - 09.06.2020, 15:34
RE: Audio encoding crash - by Devilman1 - 10.06.2020, 20:53
RE: Audio encoding crash - by Selur - 10.06.2020, 21:21
RE: Audio encoding crash - by Devilman1 - 10.06.2020, 22:36
RE: Audio encoding crash - by Devilman1 - 11.06.2020, 07:34

Forum Jump:


Users browsing this thread: 3 Guest(s)