View Full Version : MeGUI: bug reports and feature requests
Guest
22nd June 2010, 14:56
I still get the lines in Virtualdub. Then it has nothing to do with MEGUI.
After upgrading to 0.3.5.0, File Indexer does not demux audio files anymore. I have tried both demux all and demux selected, but no.
It works fine when I do it manually directly in DGIndex, though.
Log in MeGui shows no errors.
Anyone else has this problem?
Zathor
22nd June 2010, 22:13
I have tried it with a VOB file and the DG Indexer and I had no problems to extract the audio files.
Zathor
22nd June 2010, 22:37
Core 0.3.5.0 on the stable update server wont load (auto-unzip) .... broken? Tried running the update several times. The one on the developmental server seems OK though.
Thanks, one mirror had a bad zip file. Because I have no direct access I have uploaded 0.3.5 with a new file name and hopefully the mirror will be updated correctly this time.
Shevek
22nd June 2010, 22:43
After upgrading to 0.3.5.0, File Indexer does not demux audio files anymore. I have tried both demux all and demux selected, but no.
It works fine when I do it manually directly in DGIndex, though.
Log in MeGui shows no errors.
Anyone else has this problem?
No problems here - successful extract of DTS audio from a DVD VOB
I have tried it with a VOB file and the DG Indexer and I had no problems to extract the audio files.
The files I use are .ts files recorded with DVBViewer.
Guess I have to go back to v3.4.17 (if I can find it)
Edit: According to MeGui log, this is the command line for DGIndex while demuxing: [NoImage] Job commandline: "D:\Brukerprogrammer\Media\megui\tools\dgindex\dgindex.exe" -SD=< -AIF=<D:\Lager\nytt\PVR\06-22_18-25-00_Disney Channel (nor)_Phineas og Ferb.ts< -OF=<D:\Lager\nytt\PVR\06-22_18-25-00_Disney Channel (nor)_Phineas og Ferb< -FO=0 -exit -hide -OM=2
Hope this helps.
flebber
23rd June 2010, 00:19
Then it has nothing to do with MEGUI.
Actually found the error :) I stripped the megui script back to.
LoadPlugin("C:\Megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Rip\Source\MainMovie\DVD_VIDEO_1_1\VIDEO_TS\VTS_01_1.d2v")
#deinterlace
crop( 8, 2, -8, -2)
#resize
Its the "cpu=4, info=3" at the end of the DGDecode call that causes my error.
DGDecode_mpeg2source("C:\Rip\Source\Customize\DVD_VIDEO_S1_D3\VIDEO_TS\VTS_01_1.d2v", cpu=4, info=3)
How can this be fixed other than me manually changing it everytime?
Guest
23rd June 2010, 00:22
That does not cause any error for me.
Try adding this to the end of the script:
ConvertToRGB()
Then open it in VirtualDub. Just to see if your YV12 codec is screwed.
flebber
23rd June 2010, 00:36
I did it with two seperate files and scripts, the extra info/cpu casues error on both.
My PC details
2.80 gigahertz AMD Athlon II X2 240
256 kilobyte primary memory cache
2048 kilobyte secondary memory cache
64-bit ready
Multi-core (2 total)
Not hyper-threadedNVIDIA GeForce 9500 GT [Display adapter]
Guest
23rd June 2010, 01:12
Post the scripts.
Did you get the error with the sample file you uploaded?
flebber
23rd June 2010, 01:29
i had two scripts created by megui which caused the error.
I started off with a script like this.
# Set DAR in encoder to 16 : 9. The following line is for automatic signalling
global MeGUI_darx = 16
global MeGUI_dary = 9
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3dGPU.dll")
LoadPlugin("C:\Megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Rip\Source\MainMovie\DVD_VIDEO_1_3\VIDEO_TS\VTS_01_1.d2v", cpu=4, info=3)
LoadPlugin("C:\Megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
#deinterlace
crop( 8, 2, -8, -2)
LanczosResize(704,576) # Lanczos (Sharp)
#denoise
FFT3dGPU(sigma=1.5, plane=4, bt=0,sharpen=1, bw=32, bh=32)
I was then left with this which still produced error so removed the info cpu which left this and tested again and it then worked in Virtualdub.
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3dGPU.dll")
LoadPlugin("C:\Megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Rip\Source\MainMovie\DVD_VIDEO_1_3\VIDEO_TS\VTS_01_1.d2v", cpu=4, info=3)
#deinterlace
crop( 8, 2, -8, -2)
Guest
23rd June 2010, 01:33
I'll ask once more and if you don't answer, I will go away.
Did you produce the error with the sample clip that you uploaded? That exact clip. I ask because your script does not match the sample you gave me.
If so, can you please remove cpu and info one by one to see which is causing the problem?
Under Help/Detected SIMD, what is checked?
flebber
23rd June 2010, 01:45
No problem
removing cpu removes error. here is exact script as file uploaded working # Set DAR in encoder to 16 : 9. The following line is for automatic signalling
global MeGUI_darx = 16
global MeGUI_dary = 9
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3dGPU.dll")
LoadPlugin("C:\Megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Rip\Source\MainMovie\DVD_VIDEO_1_1\VIDEO_TS\VTS_01_1.d2v", info=3)
LoadPlugin("C:\Megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
#deinterlace
crop( 8, 2, -8, -2)
LanczosResize(704,576) # Lanczos (Sharp)
#denoise
FFT3dGPU(sigma=1.5, plane=4, bt=0,sharpen=1, bw=32, bh=32)
Guest
23rd June 2010, 01:47
Again, your script does not reference the sample clip you gave me. Therefore since you refuse to cooperate, I have nothing more to offer.
flebber
23rd June 2010, 01:50
Again, your script does not reference the sample clip you gave me. Therefore since you refuse to cooperate, I have nothing more to offer.
that is the exact clip i refernced in first post about thi issue. I am just trying to help and give as much as possible.
Guest
23rd June 2010, 01:53
Your sample is sample.vob.VOB_0.
Your script references VTS_01_1.d2v.
I want you to do this on the exact same clip you uploaded. Is it so hard?
I also asked for the Detected SIMD.
flebber
23rd June 2010, 01:56
Your sample is sample.vob.VOB_0.
Your script references VTS_01_1.d2v.
Why are you jerking me around?
I am not trying to jerk you around, believe me. I used dgsplit to take a small sample of the above vob to post from the dsv i just referenced.
Guest
23rd June 2010, 01:58
I give up. You won't do what I ask!
Maybe Zathor can help you find a way to disable the postprocessing.
flebber
23rd June 2010, 01:58
I give up. You won't do what I ask! Bye.
okay only trying to help. Will leave it there.
Guest
23rd June 2010, 02:03
Too bad, because if there's a bug in DGDecode's postprocessing, it would be nice to get it fixed.
I mean, how hard is it to load sample.vob.VOB_0 and do save project?
We have to be doing the exact same thing to get reliable debugging and compare our results. I'm not just being a pedant.
flebber
23rd June 2010, 03:15
Too bad, because if there's a bug in DGDecode's postprocessing, it would be nice to get it fixed.
I mean, how hard is it to load sample.vob.VOB_0 and do save project?
We have to be doing the exact same thing to get reliable debugging and compare our results. I'm not just being a pedant.
okay so it is a simple misunderstanding I will do sample vob,
flebber
23rd June 2010, 03:22
with error. I removed info and error still existed. Removinf Cpu resolves as script below.
# Set DAR in encoder to 16 : 9. The following line is for automatic signalling
global MeGUI_darx = 16
global MeGUI_dary = 9
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3dGPU.dll")
LoadPlugin("C:\Megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Rip\Source\MainMovie\DVD_VIDEO_1_1\VIDEO_TS\sample.vob.d2v", cpu=4, info=3)
LoadPlugin("C:\Megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
#deinterlace
crop( 8, 2, -8, -2)
LanczosResize(704,576) # Lanczos (Sharp)
#denoise
FFT3dGPU(sigma=1.5, plane=4, bt=0,sharpen=1, bw=32, bh=32)
okay works with this
# Set DAR in encoder to 16 : 9. The following line is for automatic signalling
global MeGUI_darx = 16
global MeGUI_dary = 9
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3dGPU.dll")
LoadPlugin("C:\Megui\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("C:\Rip\Source\MainMovie\DVD_VIDEO_1_1\VIDEO_TS\sample.vob.d2v", info=3)
LoadPlugin("C:\Megui\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
#deinterlace
crop( 8, 2, -8, -2)
LanczosResize(704,576) # Lanczos (Sharp)
#denoise
FFT3dGPU(sigma=1.5, plane=4, bt=0,sharpen=1, bw=32, bh=32)
Guest
23rd June 2010, 04:30
Thank you.
What is reported for Detected SIMD by DGIndex?
What is the version of DGMPGDec being used?
What is the version of Avisynth being used?
Zathor
23rd June 2010, 06:25
What is the version of DGMPGDec being used?
If he is using the update server:
http://forum.doom9.org/showpost.php?p=1383648&postcount=32
The files I use are .ts files recorded with DVBViewer.
Guess I have to go back to v3.4.17 (if I can find it)
Edit: According to MeGui log, this is the command line for DGIndex while demuxing: [NoImage] Job commandline: "D:\Brukerprogrammer\Media\megui\tools\dgindex\dgindex.exe" -SD=< -AIF=<D:\Lager\nytt\PVR\06-22_18-25-00_Disney Channel (nor)_Phineas og Ferb.ts< -OF=<D:\Lager\nytt\PVR\06-22_18-25-00_Disney Channel (nor)_Phineas og Ferb< -FO=0 -exit -hide -OM=2
At a first glance the command looks good (-OM=2 is used so all audio tracks should be demuxed). I cannot check it at the moment myself with a ts file. But if it has been working with 0.3.4.17 it should work with 0.3.5 because since then nothing has changed regarding the dgindexer.
At a first glance the command looks good (-OM=2 is used so all audio tracks should be demuxed). I cannot check it at the moment myself with a ts file. But if it has been working with 0.3.4.17 it should work with 0.3.5 because since then nothing has changed regarding the dgindexer.
I think I realized I have never indexed a file in MeGui before without cutting it in some other program (ProjectX, TSDoctor, SmartCutter) first :(
I have tried to run the DGIndex command line from command prompt, and same problem there.
If I however go into DGIndex -> Stream -> Detect PIDs: PAT/PMT and set the PIDs manually, it works fine.
The strange thing is that the audio PID is detected fine in the MeGui File Indexer, so why isn't that info "transferred" to the DGIndex command line that the File Indexer creates?
Maybe it's not possible for all I know :)
Anyway, the conclusion must be that the problem is in the files DVBViewer creates, and the cutting programs I have used has fixed the problems somehow before I have used the files in MeGui.
A builtin frame-accurate cutting / stream fixing program in MeGui is the ultimate goal of course :)
Thanks again.
flebber
23rd June 2010, 14:41
Thank you.
What is reported for Detected SIMD by DGIndex?
What is the version of DGMPGDec being used?
What is the version of Avisynth being used?
SIMD: Sorry I didn't know how to create a printed report for this, not sure if its correct.
http://farm2.static.flickr.com/1337/4726888141_bfa30710c7.jpg
What version DGMPGDec? Latest Megui version Dgindex lists as 1.58b
Avisynth version 2.60 build sep 27 2009
Guest
23rd June 2010, 15:14
Thank you, flebber. Investigating...
Guest
23rd June 2010, 15:17
@flebber
Can you test it with Avisynth 257 or 258?
flebber
24th June 2010, 00:15
tested with 258 build 22 dec 2008.
Working script works with cpu=4 in the script. Sorry for the trouble it appears it was an avisynth fault.
Guest
24th June 2010, 00:16
That's what I suspected. I will report this to IanB.
Vincent Vega
25th June 2010, 11:20
i've run into the following issue trying to downmix + slow down 3.1 ac3 tracks to 2.0 ac3. i ended up with 3.1 encodes instead of 2.0. tried two similar source files. all relevant info (hopefully) given below. megui updated yesterday to all development updates.
[Information] Versions
-[NoImage] MeGUI Version : 0.3.5.0
-[NoImage] OS : Windows Vista Ultimate Edition x64 SP2 (6.0.131072.6002)
-[NoImage] Latest .Net Framework installed : 4.0 (4.0.30319)
-[NoImage] Avisynth Version : 2.6.0.1
SOURCE01 [Mediainfo]:
Audio
Format : AC-3
Format/Info : Audio Coding 3
Mode extension : CM (complete main)
Duration : 1h 28mn
Bit rate mode : Constant
Bit rate : 384 Kbps
Channel(s) : 4 channels
Channel positions : Front: L C R, LFE
Sampling rate : 48.0 KHz
Stream size : 242 MiB (100%)
MEGUI AFTEN SETTINGS:
Downmix Multichannel to Stereo
Slow down 25 to 23.976
Normalize to 100%
Bitrate 192
RESULT01 [Mediainfo]:
Audio
Format : AC-3
Format/Info : Audio Coding 3
Mode extension : CM (complete main)
Duration : 1h 31mn
Bit rate mode : Constant
Bit rate : 192 Kbps
Channel(s) : 4 channels
Channel positions : Front: L C R, Side: C
Sampling rate : 48.0 KHz
Stream size : 126 MiB (100%)
MEGUI LOG:
[Information] Log for job3 (audio, SomeAudio01 T82 3_0ch 384Kbps DELAY 0ms.ac3 -> SomeAudio01 T82 3_0ch 384Kbps DELAY 0ms_new.ac3)
-[Information] [6/25/2010 12:41:31 AM] Started handling job
-[Information] [6/25/2010 12:41:31 AM] Preprocessing
-[NoImage] Avisynth script
--[NoImage] LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\NicAudio.dll")
--[NoImage] NicAc3Source("D:\SomePath\SomeAudio01\SomeAudio01 T82 3_0ch 384Kbps DELAY 0ms.ac3")
--[NoImage] 6<=Audiochannels(last)?x_stereo208cbea08f954eb0bf2ecb10e06f2226(ConvertAudioToFloat(last)):last
--[NoImage] SSRC((AudioRate()*1001+480)/960).AssumeSampleRate(AudioRate())
--[NoImage] Normalize()
--[NoImage] return last
--[NoImage] function x_stereo208cbea08f954eb0bf2ecb10e06f2226(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] c = GetChannel(a, 3)
--[NoImage] lfe = GetChannel(a, 4)
--[NoImage] sl = GetChannel(a, 5)
--[NoImage] sr = GetChannel(a, 6)
--[NoImage] l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
--[NoImage] c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
--[NoImage] r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
--[NoImage] l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
--[NoImage] r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
-[NoImage] Commandline used: -readtoeof 1 -b 192 - "{0}"
-[Information] [6/25/2010 12:41:31 AM] Encoding started
-[Information] [6/25/2010 12:41:31 AM] Encode thread started
-[Information] [6/25/2010 12:41:31 AM] Avisynth script environment opened
-[Information] [6/25/2010 12:41:31 AM] Script loaded
-[Information] Output Decoder
--[NoImage] Channels: 4
--[NoImage] Bits per sample: 32
--[NoImage] Sample rate: 48000
-[NoImage] Commandline: C:\Program Files (x86)\MeGUI\tools\aften\aften.exe -readtoeof 1 -b 192 - "D:\SomePath\SomeAudio01\SomeAudio01 T82 3_0ch 384Kbps DELAY 0ms_new.ac3"
-[Information] [6/25/2010 12:41:31 AM] Encoder process started
-[NoImage] Output from encoder via stderr
--[NoImage] Aften: A/52 audio encoder
--[NoImage] Version git
--[NoImage] (c) 2006-2009 Justin Ruggles, Prakash Punnoor, et al.
--[NoImage] input format: Microsoft WAVE Floating-point 32-bit little-endian 48000 Hz 4-channel
--[NoImage] output format: 48000 Hz 3/1
--[NoImage] SIMD usage: MMX SSE SSE2 SSE3
--[NoImage] Threads: 2
--[NoImage] progress: 100% | q: 251.7 | bw: 9.0 | bitrate: 192.0 kbps
-[Information] [6/25/2010 12:57:40 AM] Postprocessing
--[Information] Deleting intermediate files
-[Information] [6/25/2010 12:57:40 AM] Job completed
------------------------------------------------------------------------------------------------------------------------
SOURCE02 [Mediainfo]:
Audio
Format : AC-3
Format/Info : Audio Coding 3
Mode extension : CM (complete main)
Duration : 1h 49mn
Bit rate mode : Constant
Bit rate : 384 Kbps
Channel(s) : 4 channels
Channel positions : Front: L C R, Side: C
Sampling rate : 48.0 KHz
Stream size : 301 MiB (100%)
MEGUI AFTEN SETTINGS:
Downmix Multichannel to Stereo
Slow down 25 to 23.976
Normalize to 100%
Bitrate 192
RESULT02 [Mediainfo]:
Audio
Format : AC-3
Format/Info : Audio Coding 3
Mode extension : CM (complete main)
Duration : 1h 54mn
Bit rate mode : Constant
Bit rate : 192 Kbps
Channel(s) : 4 channels
Channel positions : Front: L C R, Side: C
Sampling rate : 48.0 KHz
Stream size : 157 MiB (100%)
MEGUI LOG:
[Information] Log for job6 (audio, SomeAudio02 T82 3_1ch 384Kbps DELAY 0ms.ac3 -> SomeAudio02 T82 3_1ch 384Kbps DELAY 0ms_new.ac3)
-[Information] [6/25/2010 4:13:25 AM] Started handling job
-[Information] [6/25/2010 4:13:25 AM] Preprocessing
-[NoImage] Avisynth script
--[NoImage] LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\NicAudio.dll")
--[NoImage] NicAc3Source("D:\SomePath\SomeAudio02\SomeAudio02 T82 3_1ch 384Kbps DELAY 0ms.ac3")
--[NoImage] 6<=Audiochannels(last)?x_stereo80cfe570cad743669b0ad15d5d30a008(ConvertAudioToFloat(last)):last
--[NoImage] SSRC((AudioRate()*1001+480)/960).AssumeSampleRate(AudioRate())
--[NoImage] Normalize()
--[NoImage] return last
--[NoImage] function x_stereo80cfe570cad743669b0ad15d5d30a008(clip a)
--[NoImage] {
--[NoImage] fl = GetChannel(a, 1)
--[NoImage] fr = GetChannel(a, 2)
--[NoImage] c = GetChannel(a, 3)
--[NoImage] lfe = GetChannel(a, 4)
--[NoImage] sl = GetChannel(a, 5)
--[NoImage] sr = GetChannel(a, 6)
--[NoImage] l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
--[NoImage] c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
--[NoImage] r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
--[NoImage] l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
--[NoImage] r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
--[NoImage] return MergeChannels(l, r)
--[NoImage] }
-[NoImage] Commandline used: -readtoeof 1 -b 192 - "{0}"
-[Information] [6/25/2010 4:13:25 AM] Encoding started
-[Information] [6/25/2010 4:13:25 AM] Encode thread started
-[Information] [6/25/2010 4:13:25 AM] Avisynth script environment opened
-[Information] [6/25/2010 4:13:26 AM] Script loaded
-[Information] Output Decoder
--[NoImage] Channels: 4
--[NoImage] Bits per sample: 32
--[NoImage] Sample rate: 48000
-[NoImage] Commandline: C:\Program Files (x86)\MeGUI\tools\aften\aften.exe -readtoeof 1 -b 192 - "D:\SomePath\SomeAudio02\SomeAudio02 T82 3_1ch 384Kbps DELAY 0ms_new.ac3"
-[Information] [6/25/2010 4:13:26 AM] Encoder process started
-[NoImage] Output from encoder via stderr
--[NoImage] Aften: A/52 audio encoder
--[NoImage] Version git
--[NoImage] (c) 2006-2009 Justin Ruggles, Prakash Punnoor, et al.
--[NoImage] input format: Microsoft WAVE Floating-point 32-bit little-endian 48000 Hz 4-channel
--[NoImage] output format: 48000 Hz 3/1
--[NoImage] SIMD usage: MMX SSE SSE2 SSE3
--[NoImage] Threads: 2
--[NoImage] progress: 100% | q: 260.8 | bw: 9.0 | bitrate: 192.0 kbps
-[Information] [6/25/2010 4:33:39 AM] Postprocessing
--[Information] Deleting intermediate files
-[Information] [6/25/2010 4:33:39 AM] Job completed
tebasuna51
25th June 2010, 12:28
i've run into the following issue trying to downmix + slow down 3.1 ac3 tracks to 2.0 ac3. i ended up with 3.1 encodes instead of 2.0. tried two similar source files. all relevant info (hopefully) given below. megui updated yesterday to all development updates.
...
--[NoImage] 6<=Audiochannels(last)?x_stereo208cbea08f954eb0bf2ecb10e06f2226(ConvertAudioToFloat(last)):last
...
The downmix only work for ac3 5.1
You can create a specific avs file to downmix others channels configurations, for instance:
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\NicAudio.dll")
a=NicAc3Source("D:\SomePath\SomeAudio01\SomeAudio01 T82 3_0ch 384Kbps DELAY 0ms.ac3")
flr = GetChannel(a, 1, 2)
fcc = GetChannel(a, 3, 3)
lfe = GetChannel(a, 4, 4)
clf = MixAudio(fcc, lfe, 0.2929, 0.2929)
MixAudio(flr, clf, 0.4142, 1.0)
And input the .avs to Megui instead the ac3 file
Include the slowdown (if you need) and normalize after.
The downmix work fine for the first sample (L,R,C,LFE), with the second (L,R,C,S) you need this mix:
flr = GetChannel(a, 1, 2)
fcc = GetChannel(a, 3, 3)
lrc = MixAudio(flr, fcc, 0.4142, 0.2929)
sl = GetChannel(a, 4)
sr = Amplify(sl, -1.0)
blr = MergeChannels(sl, sr)
MixAudio(lrc, blr, 1.0, 0.2929)
Vincent Vega
25th June 2010, 12:59
thanks so much tebasuna51, i'll try that right away.
also i have a totally stupid question: i don't understand the sample02 chan configuration: L C R, Side: C; what is "Side: C"?
Edit: i just tried this second sample in Ac3 filter it shows left, center, right and.. SL (side left), what kinda weird configuration is that? could it be a broken (in some way) audio track?
tebasuna51
26th June 2010, 03:01
also i have a totally stupid question: i don't understand the sample02 chan configuration: L C R, Side: C; what is "Side: C"?
A wrong translation:
L C R S (acmod 5 in ac3 header) means:
Left Center Right Surround
equivalent (after remapping) to wav channels
FL FR FC BC
FrontLeft FrontRight FrontCenter BackCenter
If you don't have a Back Center speaker a proper player must play the BC in BL-BR
Vincent Vega
26th June 2010, 07:03
so if AC3Filter plays the Surround channel in SL only it's a bug in it? i've always liked valex's decoder so much.. what ds filter would you recommend that can handle such chan config properly?
tebasuna51
26th June 2010, 11:36
so if AC3Filter plays the Surround channel in SL only it's a bug in it? i've always liked valex's decoder so much.. what ds filter would you recommend that can handle such chan config properly?
I always recommend use ffdshow instead AC3Filter.
With ffdshow you can remap (matrix mixer) the BC to BL-BR with 0.7071 coefficients.
Vincent Vega
26th June 2010, 11:46
ok thanks for your time man.
Sharktooth
29th June 2010, 14:54
nice to see Zathor worked on MeGUI while i was away :)
Zathor
29th June 2010, 14:58
nice to see Zathor worked on MeGUI while i was away :)
Welcome back! :)
Sharktooth
29th June 2010, 15:01
it seems you did a huge work zathor. thank you.
i guess i have to study the latest sources almost from scratch.
feel free to contact me and, obviously, give me some days and i will be back developing megui ;)
JoeH
30th June 2010, 08:00
Good to see you back Sharktooth.
Taurus
30th June 2010, 11:23
A warm welcome back Mr. Shark.
Where have you been so long?
So maybe Zathor & Shark = the new dreamteam?
I really appreciate your work on MeGui :thanks:
flebber
30th June 2010, 11:36
Has anyone else had trouble in megui with Warpsharp.dll and toon.dll.
I removed both dll's and my megui encodes perfectly. I replaced warpsharp.dll with the version from warpenterprises and it stopped the error.
But I re added toon.dll to my avisynth plugins and it cannot complete an encode with the toon.dll being used. Does anyone have a light toon/anime dll that plays well with megui. I haven't had to encode much anime previously.
Sharktooth
30th June 2010, 13:22
@flebber: it seems an avisynth problem more than a megui problem... try to find newer version of the toon plugin.
@Taurus: thanks, i had "troubles" of all kinds...
@JoeH: thanks :)
quantum5uicid3
30th June 2010, 13:49
changes to --level and --profile in their new location do not update the commandline below until after you close and save the x264 configuration dialog. and i still think they should be basic x264 settings. :)
edit
and i dont think the threads checkbox or field is working. nvm i think it's just doing the same thing as level and profile.
Sharktooth
30th June 2010, 13:52
i think i read somewhere zathor is working on the x264 configuration window.
saint-francis
30th June 2010, 20:57
Sharktooth, I am very glad to see you back!
I hope you health is up to speck and that all else is well with you.
quantum5uicid3
1st July 2010, 15:37
some fixes to profiles. ***for latest x264***
1. added "--open-gop coded" to bluray and avchd presets.
2. force disabled bframes and soft enabled CABAC for iphone profile.
3. force disabled b-pyramid and soft enabled CABAC for psp profile.
3. and removed redundency of setting vbv to 10000 when level 3 is already set. *correction*
http://www.mediafire.com/?zgr5wz25iim
md5: 75f2898b57f84b501ab92b2d0c31161a
addition
i packaged ffm2-312 (http://code.google.com/p/ffmpegsource/downloads/detail?name=ffms2-mt-r312.7z&can=2&q=) for the update server too just in case you hadn't had time. it seems stable. :)
http://www.mediafire.com/?qwgnnyjmmzc
md5: e8a202a143774340d7ee869ea52694f3
edit2:
wasnt thinking and disabled bframes completely on psp
also, the motorola droid supports --level 3.1 --profile baseline --ref 5 @ 856x480
Octo-puss
1st July 2010, 17:40
Whoa, Sharktooth is back! Glad to see you! Has your health improved then??
Sharktooth
1st July 2010, 18:48
im pretty good and recovering well but my health is OT here
however, thanks ;)
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.