Ja ich benutze eac3to.
[Warning] Log
-[Information] Versions
--[Information] [02.03.2017 15:04:25] MeGUI: 2624
--[Information] [02.03.2017 15:04:25] Operating System: Windows 10 Enterprise x64 (10.0.0.14393)
--[Information] [02.03.2017 15:04:25] .NET Framework: 4.0 (4.0.0.0)
--[Information] [02.03.2017 15:04:25] .NET Framework: 4.6.x (4.6.01586)
--[Information] [02.03.2017 15:04:25] AviSynth: 2.5.8.5 (21-12-2008)
--[Information] [02.03.2017 15:04:25] AvisynthWrapper: (02-01-2009)
--[Information] [02.03.2017 15:04:25] Haali Matroska Splitter not installed properly.
--[Information] [02.03.2017 15:04:25] Therefore DSS2() will not and certain functions of FFVideoSource() and the HD Streams Extractor may not work.
--[Information] [02.03.2017 15:04:25] Please download and install it from [url]http://haali.su/mkv/[/url]
--[Information] [02.03.2017 15:04:25] Haali DSS2: not installed
--[Information] [02.03.2017 15:04:25] ICSharpCode.SharpZipLib: 0.85.5.452 (07-08-2008)
--[Information] [02.03.2017 15:04:25] MediaInfo: 0.7.79.0 (02-11-2015)
--[Information] [02.03.2017 15:04:25] MediaInfoWrapper: 0.7.61.0 (06-01-2013)
--[Information] [02.03.2017 15:04:25] MessageBoxExLib: 1.0.2218.28317 (19-12-2008)
--[Information] [02.03.2017 15:04:25] SevenZipSharp: 0.64.3890.29348 (02-01-2011)
--[Information] [02.03.2017 15:04:25] 7z: 9.20 (18-11-2010)
-[Information] Update detection
--[Information] [02.03.2017 15:04:25] Automatic update is disabled
--[Information] [02.03.2017 15:04:25] Using cached update config and server: [url]http://megui.tmebi.de/stable/[/url]
--[Information] [02.03.2017 15:04:25] No package requires an update
-[Warning] Log for job2 (audio, test.dts -> test.ac3)
--[Information] [02.03.2017 15:05:19] Started handling job
--[Information] [02.03.2017 15:05:19] Preprocessing
--[Information] [02.03.2017 15:05:19] MediaInfo
---[Information] [02.03.2017 15:05:19] File: D:\Filme\Anschauen\test.dts
---[Information] General
----[Information] Format: DTS
----[Information] FormatString: DTS
----[Information] FileSize: 2193031016
----[Information] PlayTime: 02:22:54.901
---[Information] Audio
----[Information] ID:
----[Information] StreamOrder:
----[Information] Format: DTS
----[Information] FormatProfile: HRA / Core
----[Information] FormatSettingsSBR:
----[Information] FormatSettingsPS:
----[Information] SamplingRate: 48000
----[Information] SamplingRateString: 48.0 KHz
----[Information] Channels: 8 / 6
----[Information] ChannelsString: 8 channels / 6 channels
----[Information] ChannelPositionsString2: 3/2/2.1 / 3/2/0.1
----[Information] BitRateMode: CBR
----[Information] Delay:
----[Information] Title:
----[Information] Language:
----[Information] LanguageString:
----[Information] Default:
----[Information] DefaultString:
----[Information] Forced:
----[Information] ForcedString:
----[Information] [02.03.2017 15:05:19] The language information is not available for this track. The default MeGUI language has been selected.
--[Information] [02.03.2017 15:05:19] Trying to open the file with FFAudioSource()
--[Information] [02.03.2017 15:05:45] Failed opening the file with FFAudioSource(). FFAudioSource: No audio track found
--[Information] [02.03.2017 15:05:45] Trying to open the file with NicAudio
--[Information] [02.03.2017 15:05:46] Successfully opened the file with NicAudio
--[Warning] [02.03.2017 15:05:46] channel count mismatch! The input file is reporting 8 channels and the AviSynth script is reporting 6 channels
--[Warning] [02.03.2017 15:05:46] ignoring downmix because of the channel count mismatch
--[Information] [02.03.2017 15:05:46] Avisynth script
---[NoImage] LoadPlugin("E:\Video Bearbeitung\Encoding\MeGUI_2525_x86\tools\avisynth_plugin\NicAudio.dll")
---[NoImage] NicDtsSource("D:\Filme\Anschauen\test.dts")
---[NoImage] __film = last
---[NoImage] __just_audio = __film
---[NoImage] __blank = BlankClip(length=191645, fps=23.976)
---[NoImage] __film = AudioDub(__blank, __film)
---[NoImage] __t0 = __film.trim(0, 191645)
---[NoImage] __t0
---[NoImage] AudioDubEx(__just_audio, last)
---[NoImage] # detected channels: 8 channels / 6 channels
---[NoImage] # detected channel positions: 3/2/2.1 / 3/2/0.1
---[NoImage] Normalize(0.95)
---[NoImage] 32==Audiobits(last)?ConvertAudioTo16bit(last):last
---[NoImage] return last
---[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> stereo + LFE
---[NoImage] function c6_stereo(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] lf = GetChannel(a, 4)
---[NoImage] sl = GetChannel(a, 5)
---[NoImage] sr = GetChannel(a, 6)
---[NoImage] fl_sl = MixAudio(fl, sl, 0.2929, 0.2929)
---[NoImage] fr_sr = MixAudio(fr, sr, 0.2929, 0.2929)
---[NoImage] fc_lf = MixAudio(fc, lf, 0.2071, 0.2071)
---[NoImage] l = MixAudio(fl_sl, fc_lf, 1.0, 1.0)
---[NoImage] r = MixAudio(fr_sr, fc_lf, 1.0, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,C,SL,SR or L,R,LFE,SL,SR-> Stereo
---[NoImage] function c5_stereo(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] sl = GetChannel(a, 4)
---[NoImage] sr = GetChannel(a, 5)
---[NoImage] fl_sl = MixAudio(fl, sl, 0.3694, 0.3694)
---[NoImage] fr_sr = MixAudio(fr, sr, 0.3694, 0.3694)
---[NoImage] l = MixAudio(fl_sl, fc, 1.0, 0.2612)
---[NoImage] r = MixAudio(fr_sr, fc, 1.0, 0.2612)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,C,LFE,S -> Stereo
---[NoImage] function c52_stereo(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] lf = GetChannel(a, 4)
---[NoImage] bc = GetChannel(a, 5)
---[NoImage] fl_bc = MixAudio(fl, bc, 0.3205, 0.2265)
---[NoImage] fr_bc = MixAudio(fr, bc, 0.3205, 0.2265)
---[NoImage] fc_lf = MixAudio(fc, lf, 0.2265, 0.2265)
---[NoImage] l = MixAudio(fl_bc, fc_lf, 1.0, 1.0)
---[NoImage] r = MixAudio(fr_bc, fc_lf, 1.0, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 4 Channels Quadro L,R,SL,SR -> Stereo
---[NoImage] function c4_stereo(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] sl = GetChannel(a, 3)
---[NoImage] sr = GetChannel(a, 4)
---[NoImage] l = MixAudio(fl, sl, 0.5, 0.5)
---[NoImage] r = MixAudio(fr, sr, 0.5, 0.5)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 4 Channels L,R,C,LFE or L,R,S,LFE or L,R,C,S -> Stereo
---[NoImage] function c42_stereo(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] lf = GetChannel(a, 4)
---[NoImage] fc_lf = MixAudio(fc, lf, 0.2929, 0.2929)
---[NoImage] l = MixAudio(fl, fc_lf, 0.4142, 1.0)
---[NoImage] r = MixAudio(fr, fc_lf, 0.4142, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 3 Channels L,R,C or L,R,S or L,R,LFE -> Stereo
---[NoImage] function c3_stereo(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] l = MixAudio(fl, fc, 0.5858, 0.4142)
---[NoImage] r = MixAudio(fr, fc, 0.5858, 0.4142)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic
---[NoImage] function c6_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] sl = GetChannel(a, 5)
---[NoImage] sr = GetChannel(a, 6)
---[NoImage] bc = MixAudio(sl, sr, 0.2265, 0.2265)
---[NoImage] fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
---[NoImage] fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
---[NoImage] l = MixAudio(fl_fc, bc, 1.0, 1.0)
---[NoImage] r = MixAudio(fr_fc, bc, 1.0, -1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic
---[NoImage] function c5_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] sl = GetChannel(a, 4)
---[NoImage] sr = GetChannel(a, 5)
---[NoImage] bc = MixAudio(sl, sr, 0.2265, 0.2265)
---[NoImage] fl_fc = MixAudio(fl, fc, 0.3205, 0.2265)
---[NoImage] fr_fc = MixAudio(fr, fc, 0.3205, 0.2265)
---[NoImage] l = MixAudio(fl_fc, bc, 1.0, 1.0)
---[NoImage] r = MixAudio(fr_fc, bc, 1.0, -1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic
---[NoImage] function c52_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] sl = GetChannel(a, 4)
---[NoImage] sr = GetChannel(a, 5)
---[NoImage] bc = MixAudio(sl, sr, 0.2929, 0.2929)
---[NoImage] l = MixAudio(fl, bc, 0.4142, 1.0)
---[NoImage] r = MixAudio(fr, bc, 0.4142, -1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,C,LFE,S -> Dolby ProLogic
---[NoImage] function c53_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] bc = GetChannel(a, 5)
---[NoImage] fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
---[NoImage] fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
---[NoImage] l = MixAudio(fl_fc, bc, 1.0, 0.2929)
---[NoImage] r = MixAudio(fr_fc, bc, 1.0, -0.2929)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic
---[NoImage] function c4_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] sl = GetChannel(a, 3)
---[NoImage] sr = GetChannel(a, 4)
---[NoImage] bc = MixAudio(sl, sr, 0.2929, 0.2929)
---[NoImage] l = MixAudio(fl, bc, 0.4142, 1.0)
---[NoImage] r = MixAudio(fr, bc, 0.4142, -1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 4 Channels L,R,LFE,S -> Dolby ProLogic
---[NoImage] function c42_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] bc = GetChannel(a, 4)
---[NoImage] l = MixAudio(fl, bc, 0.5858, 0.4142)
---[NoImage] r = MixAudio(fr, bc, 0.5858, -0.4142)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 4 Channels L,R,C,S -> Dolby ProLogic
---[NoImage] function c43_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] bc = GetChannel(a, 4)
---[NoImage] fl_fc = MixAudio(fl, fc, 0.4142, 0.2929)
---[NoImage] fr_fc = MixAudio(fr, fc, 0.4142, 0.2929)
---[NoImage] l = MixAudio(fl_fc, bc, 1.0, 0.2929)
---[NoImage] r = MixAudio(fr_fc, bc, 1.0, -0.2929)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 3 Channels L,R,S -> Dolby ProLogic
---[NoImage] function c3_dpl(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] bc = GetChannel(a, 3)
---[NoImage] l = MixAudio(fl, bc, 0.5858, 0.4142)
---[NoImage] r = MixAudio(fr, bc, 0.5858, -0.4142)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5.1 Channels L,R,C,LFE,SL,SR -> Dolby ProLogic II
---[NoImage] function c6_dpl2(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] sl = GetChannel(a, 5)
---[NoImage] sr = GetChannel(a, 6)
---[NoImage] ssl = MixAudio(sl, sr, 0.2818, 0.1627)
---[NoImage] ssr = MixAudio(sl, sr, -0.1627, -0.2818)
---[NoImage] fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
---[NoImage] fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
---[NoImage] l = MixAudio(fl_fc, ssl, 1.0, 1.0)
---[NoImage] r = MixAudio(fr_fc, ssr, 1.0, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,C,SL,SR -> Dolby ProLogic II
---[NoImage] function c5_dpl2(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] fc = GetChannel(a, 3)
---[NoImage] sl = GetChannel(a, 4)
---[NoImage] sr = GetChannel(a, 5)
---[NoImage] ssl = MixAudio(sl, sr, 0.2818, 0.1627)
---[NoImage] ssr = MixAudio(sl, sr, -0.1627, -0.2818)
---[NoImage] fl_fc = MixAudio(fl, fc, 0.3254, 0.2301)
---[NoImage] fr_fc = MixAudio(fr, fc, 0.3254, 0.2301)
---[NoImage] l = MixAudio(fl_fc, ssl, 1.0, 1.0)
---[NoImage] r = MixAudio(fr_fc, ssr, 1.0, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 5 Channels L,R,LFE,SL,SR -> Dolby ProLogic II
---[NoImage] function c52_dpl2(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] sl = GetChannel(a, 4)
---[NoImage] sr = GetChannel(a, 5)
---[NoImage] ssl = MixAudio(sl, sr, 0.3714, 0.2144)
---[NoImage] ssr = MixAudio(sl, sr, -0.2144, -0.3714)
---[NoImage] l = MixAudio(fl, ssl, 0.4142, 1.0)
---[NoImage] r = MixAudio(fr, ssr, 0.4142, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
---[NoImage] # 4 Channels Quadro L,R,SL,SR -> Dolby ProLogic II
---[NoImage] function c4_dpl2(clip a)
---[NoImage] {
---[NoImage] fl = GetChannel(a, 1)
---[NoImage] fr = GetChannel(a, 2)
---[NoImage] sl = GetChannel(a, 3)
---[NoImage] sr = GetChannel(a, 4)
---[NoImage] ssl = MixAudio(sl, sr, 0.3714, 0.2144)
---[NoImage] ssr = MixAudio(sl, sr, -0.2144, -0.3714)
---[NoImage] l = MixAudio(fl, ssl, 0.4142, 1.0)
---[NoImage] r = MixAudio(fr, ssr, 0.4142, 1.0)
---[NoImage] return MergeChannels(l, r)
---[NoImage] }
--[Information] [02.03.2017 15:05:46] Command line used: -i - -y -acodec ac3 -ab 128k "{0}"
--[Information] [02.03.2017 15:05:46] Avisynth script environment opened
--[Information] [02.03.2017 15:05:46] Script loaded
--[Information] [02.03.2017 15:05:46] Output Decoder
---[Information] [02.03.2017 15:05:46] Channels: 6
---[Information] [02.03.2017 15:05:46] Bits per sample: 16
---[Information] [02.03.2017 15:05:46] Sample rate: 48000
--[Information] [02.03.2017 15:05:46] Job command line: E:\Video Bearbeitung\Encoding\MeGUI_2525_x86\tools\ffmpeg\ffmpeg.exe -i - -y -acodec ac3 -ab 128k "D:\Filme\Anschauen\test.ac3"
--[Information] [02.03.2017 15:05:46] Process started
--[Information] [02.03.2017 15:05:46] Standard output stream
--[Information] [02.03.2017 15:05:46] Standard error stream
---[Information] [02.03.2017 15:05:46] ffmpeg version 2.8.2 Copyright (c) 2000-2015 the FFmpeg developers
---[Information] [02.03.2017 15:05:46] built with gcc 5.2.0 (GCC)
---[Information] [02.03.2017 15:05:46] configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib
---[Information] [02.03.2017 15:05:46] libavutil 54. 31.100 / 54. 31.100
---[Information] [02.03.2017 15:05:46] libavcodec 56. 60.100 / 56. 60.100
---[Information] [02.03.2017 15:05:46] libavformat 56. 40.101 / 56. 40.101
---[Information] [02.03.2017 15:05:46] libavdevice 56. 4.100 / 56. 4.100
---[Information] [02.03.2017 15:05:46] libavfilter 5. 40.101 / 5. 40.101
---[Information] [02.03.2017 15:05:46] libswscale 3. 1.101 / 3. 1.101
---[Information] [02.03.2017 15:05:46] libswresample 1. 2.101 / 1. 2.101
---[Information] [02.03.2017 15:05:46] libpostproc 53. 3.100 / 53. 3.100
---[Information] [02.03.2017 15:17:57] Guessed Channel Layout for Input Stream #0.0 : 5.1
---[Information] [02.03.2017 15:17:57] Input #0, w64, from 'pipe:':
---[Information] [02.03.2017 15:17:57] Duration: N/A, bitrate: 4608 kb/s
---[Information] [02.03.2017 15:17:57] Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 48000 Hz, 6 channels, s16, 4608 kb/s
---[Information] [02.03.2017 15:17:57] Output #0, ac3, to 'D:\Filme\Anschauen\test.ac3':
---[Information] [02.03.2017 15:17:57] Metadata:
---[Information] [02.03.2017 15:17:57] encoder : Lavf56.40.101
---[Information] [02.03.2017 15:17:57] Stream #0:0: Audio: ac3, 48000 Hz, 5.1, fltp, 128 kb/s
---[Information] [02.03.2017 15:17:57] Metadata:
---[Information] [02.03.2017 15:17:57] encoder : Lavc56.60.100 ac3
---[Information] [02.03.2017 15:17:57] Stream mapping:
---[Information] [02.03.2017 15:17:57] Stream #0:0 -> #0:0 (pcm_s16le (native) -> ac3 (native))
---[Information] [02.03.2017 15:25:27] video:0kB audio:124894kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.000000%
--[Information] [02.03.2017 15:25:27] MediaInfo
---[Information] [02.03.2017 15:25:27] File: D:\Filme\Anschauen\test.ac3
---[Information] General
----[Information] Format: AC-3
----[Information] FormatString: AC-3
----[Information] FileSize: 127891456
----[Information] PlayTime: 02:13:13.216
---[Information] Audio
----[Information] ID:
----[Information] StreamOrder:
----[Information] Format: AC-3
----[Information] FormatProfile:
----[Information] FormatSettingsSBR:
----[Information] FormatSettingsPS:
----[Information] SamplingRate: 48000
----[Information] SamplingRateString: 48.0 KHz
----[Information] Channels: 6
----[Information] ChannelsString: 6 channels
----[Information] ChannelPositionsString2: 3/2/0.1
----[Information] BitRateMode: CBR
----[Information] Delay:
----[Information] Title:
----[Information] Language:
----[Information] LanguageString:
----[Information] Default:
----[Information] DefaultString:
----[Information] Forced:
----[Information] ForcedString:
----[Information] [02.03.2017 15:25:27] The language information is not available for this track. The default MeGUI language has been selected.
--[Information] [02.03.2017 15:25:27] Postprocessing
---[Information] [02.03.2017 15:25:27] Deleting intermediate files
--[Information] [02.03.2017 15:25:27] Job completed
Display More