View Full Version : How to run eac3to
Drakoliona
3rd October 2013, 08:16
Hi, i have downloaded eac3to and extract it in syswow64, and installed eac3to decoder pack,i have installed ffdshow and i have extract arcsoft DTS decoder in syswow64 With eac3to and click install, i have too haali media splitter, when i use command eac3to -test arcsoft Works fine, in ffdshow i have desactivate DTS, it´s good ? Or i re active DTS in ffdshow ?
tebasuna51
3rd October 2013, 09:15
..., in ffdshow i have desactivate DTS, it´s good ? Or i re active DTS in ffdshow ?
eac3to don't use ffdshow for nothing.
ffdshow is used for players, you can keep DTS active if your player need it.
Drakoliona
3rd October 2013, 09:38
eac3to don't use ffdshow for nothing.
ffdshow is used for players, you can keep DTS active if your player need it.
Okay Thanks, and if eac3to is installed in syswow64, With arcsoft DTS decoder un same folder, and haali média splitter + eac3to décoder pack it´s good for remux ?
tebasuna51
3rd October 2013, 09:56
Okay Thanks, and if eac3to is installed in syswow64, With arcsoft DTS decoder un same folder, ...
I can help you about the best location in a 64 bits OS, I'm a 32 bits user. If work for you then is OK.
... it's good for remux?
eac3to isn't a remuxer, is a demuxer and audio recoder.
To remux use MkvMerge, tsMuxeR, ...
Drakoliona
3rd October 2013, 10:00
I have windows 64bits, i have downloaded eac3to, i extract it on syswow64? because don't work on system32, or in system32 and syswow64?
After, i have eac3to decoder pack.exe, i install it, and i have arcsoft dts decoder pack 1.1.0.8, i install it in syswow64? (same folder of eac3to if is syswow64)
And after i install haali media splitter.exe, and finally ffdshow
In ffdshow i active DTS? or don't needed ? if i have arcsoft dts decoder
And last question, extensions
for extract DTS HD MA extension is .dtshd?
for Dolby Digital is .ac3 ?
Dolby TrueHD is .thd ?
DTS HIGH RESOLUTION is .dtshr?
for vidéos always .mkv ?
And finnaly for pcm is really .pcm ? because i don't know how extract LPCM of pearl harbor, extension .pcm in mkvmerge is open on mpeg-4 part 10..
And it's all? or i need install others programs/decoders? i demux/remux just BDs with 90% of dts hd ma/dts / thd / ac3..
kevmitch
11th October 2013, 09:36
I have windows 64bits, i have downloaded eac3to, i extract it on syswow64? because don't work on system32, or in system32 and syswow64?
After, i have eac3to decoder pack.exe, i install it, and i have arcsoft dts decoder pack 1.1.0.8, i install it in syswow64? (same folder of eac3to if is syswow64)
And after i install haali media splitter.exe, and finally ffdshow
In ffdshow i active DTS? or don't needed ? if i have arcsoft dts decoder
You will want the Arcsoft decoder if you want to correctly decode any of the lossless or lossy extensions to dts.
The DLL is best kept in the same directory as eac3to if at all possible. Windows Syswow system is enough to make one's head spin.
Put the redundantly nammed dtsdecoderdll.dll and ASAudioHD.ax in the eac3to directory and run
regsvr32 C:\EAC3TO_DIRECTORY\ASAudioHD.ax
followed by
eac3to.exe -test
to see if it worked.
And finnaly for pcm is really .pcm ? because i don't know how extract LPCM of pearl harbor, extension .pcm in mkvmerge is open on mpeg-4 part 10..
You should be able to extract the .pcm correctly to .flac files once and for all with eac3to. If your target player doesn't support flac, you can still convert it to whatever lossless or lossy format you need becuase you have the lossless source. You could try .wav files, but those tend to go haywire with multi channel HD tracks that make the file larger than the dreaded 2GB limit for traditional 32-bit wav files.
And it's all? or i need install others programs/decoders? I demux/remux just BDs with 90% of dts hd ma/dts / thd / ac3..
Get the Arcsoft DTS decoder for blu ray lossless tracks. The ffmpeg build included with eac3to will handle the lossless thd decode correctly.
For the lossy formats the damage has already been done. I find it's best just to pull those tracks untouched. The exact decoded result may vary from player to player. You might want to get the Nero 7 decoder to decode the aac as best you can, and apparently the 1.1.0.0 Arcsoft lib is the best for lossy DTS. However, then, you're stuck either with running it through another encoding process (best with the Nero encoder), or encoding it to flac and significantly enlarging the file.
Given this, once you've Arcsoft hooked up to eac3to, you're golden as far demuxing to disk. Unfortunately, the remuxing and mastering is a frightening and unfamiliar for me.
Overdrive80
11th October 2013, 17:10
@Drakoliona... You can use this *.bat script:
@echo off
Title Installer ARCSoft Decoder
set /a loop=0
:inicio
echo ############################################
echo # #
echo # #
echo # Installer by Overdrive #
echo # #
echo # #
echo # #
echo # Version 1.1 #
echo # #
echo ############################################
echo.
if %loop%==0 (goto :main) else (echo Press any button to exit of installer.&pause>nul&exit)
:main
Echo Please, be patient...
rem Determinamos el sistema operativo
FOR /f "tokens=3,4,5" %%a IN ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName') DO (
set OS=%%a %%b %%c
)
rem Determinamos la arquitectura del sistema
If NOT EXIST "C:\windows\syswow64" (
Echo.
Echo Detected: %OS% of 32bits.
rem Copiado de las dlls necesarias
copy "%~dp0ASAudioHD.ax" "C:\Windows\System32" 1>nul
copy "%~dp0MagCore.dll" "C:\Windows\System32" 1>nul
copy "%~dp0MagPCMac.dll" "C:\Windows\System32" 1>nul
copy "%~dp0MagUIEngine.dll" "C:\Windows\System32" 1>nul
copy "%~dp0MagUIInter.dll" "C:\Windows\System32" 1>nul
copy "%~dp0checkactivate.dll" "C:\Windows\System32" 1>nul
copy "%~dp0DtsDec.dll" "C:\Windows\System32" 1>nul
copy "%~dp0dtsdecoderdll.dll" "C:\Windows\System32" 1>nul
) ELSE (
Echo.
Echo Detected: %OS% of 64bits.
rem Copiado de las dlls necesarias
copy "%~dp0ASAudioHD.ax" "C:\Windows\System32" 1>nul
copy "%~dp0MagCore.dll" "C:\Windows\System32" 1>nul
copy "%~dp0MagPCMac.dll" "C:\Windows\System32" 1>nul
copy "%~dp0MagUIEngine.dll" "C:\Windows\System32" 1>nul
copy "%~dp0MagUIInter.dll" "C:\Windows\System32" 1>nul
copy "%~dp0checkactivate.dll" "C:\Windows\System32" 1>nul
copy "%~dp0DtsDec.dll" "C:\Windows\System32" 1>nul
copy "%~dp0dtsdecoderdll.dll" "C:\Windows\System32" 1>nul
copy "%~dp0ASAudioHD.ax" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0MagCore.dll" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0MagPCMac.dll" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0MagUIEngine.dll" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0MagUIInter.dll" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0checkactivate.dll" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0DtsDec.dll" "C:\Windows\SysWOW64" 1>nul
copy "%~dp0dtsdecoderdll.dll" "C:\Windows\SysWOW64" 1>nul
)
rem Registra ASAudioHD.ax en DirectShow
regsvr32.exe ASAudioHD.ax
set /a loop=1
cls
goto inicio
Put all *.dlls and *.ax files in same folder, and execute as administrator the script file.
the_weirdo
11th October 2013, 18:13
You only need ASAudioHD.ax, checkactivate.dll, dtsdecoderdll.dll in eac3to folder, and then run "regsvr32.exe path\to\ASAudioHD.ax". That should be enough, at least in my case. I wouldn't want to mess up my System32/SysWOW64 folders.
EDIT: The checkactivate.dll I've been using is the custom version from here (http://forum.doom9.org/showthread.php?t=154070), which doesn't depend on those Mag*.dll
Drakoliona
12th October 2013, 17:24
@the_weirdo @Overdrive80 @kevmitch Thank's for your answers, i'm sorry but i don't understand all because i'm French, but i have understand juste a little bit, so i have .ax .dll of arcsoft, i have extract it and copy them in SYSWOW64 (with eac3to), and i click on install, after that i need use regsvr32? or click on install only is good?
PS: I haven't all understand, i copy only eac3to in syswow64? or i copy in system32 + syswow64?
And i use regsvr for all .dll ? or only .ax?
tebasuna51
12th October 2013, 18:57
@Drakoliona
Don't worry, the -test (send to me by PM) is OK.
Other questions also solved by PM.
Drakoliona
12th October 2013, 20:04
Thank's
digitaldelboy
16th October 2013, 13:56
Is there a way I can demux everything, All video tracks, Audio and subtitles. -demux only demuxes the 1st video track and all audio and subtitle tracks.
LigH
16th October 2013, 14:11
That will depend on the container format you are trying to demultiplex. There are probably specialist tools for each format which are able to handle multiple video streams (e.g. mkvextract for MKV, MP4Bo for MP4, etc.), whereas eac3to may be a simplified tool which is focused on audio and may assume only one video track per media file (because multiple video tracks are very unusual).
A full MediaInfo analysis is always helpful.
digitaldelboy
16th October 2013, 14:38
Thanks for being kind enough to reply, It's actually a 1:1 Bluray so there for were looking at multiple m2ts containers.
LigH
16th October 2013, 15:31
Well, if the reason for "multiple video streams" is in fact 3D video, then this will require a specific processing anyway.
It may be suitable to rip the Blu-ray losslessly into one MKV container using MakeMKV and then use MKV tools.
digitaldelboy
16th October 2013, 16:23
The bluray is not 3D, I don't think you understand what I'm trying to achieve. Within the BDMV\STREAM folder of a bluray we have multiple .m2ts container's, I'd like to take 00001.m2ts and demux it. Then repeat this with 00002.m2ts and so on.
the_weirdo
16th October 2013, 16:57
The bluray is not 3D, I don't think you understand what I'm trying to achieve. Within the BDMV\STREAM folder of a bluray we have multiple .m2ts container's, I'd like to take 00001.m2ts and demux it. Then repeat this with 00002.m2ts and so on.
Change working directory in Command Prompt to the folder contains M2TS files and use this command line:
FOR %M IN (*.m2ts) DO eac3to %M -demux
digitaldelboy
16th October 2013, 18:07
Thanks but I'm a little new to eac3to could you show me a screenshot as an example or explain what you mean a little more.
Drakoliona
17th October 2013, 12:35
For update my arcsoft dts decoder pack, i can only replace files? or i need delete all .dlls and clean all registry ?
digitaldelboy
17th October 2013, 12:38
Anyone willing to help me upderstand FOR %M IN (*.m2ts) DO eac3to %M -demux
Shevek
17th October 2013, 13:03
Anyone willing to help me upderstand FOR %M IN (*.m2ts) DO eac3to %M -demux
you need to open a command line window
CD (change directory) to wherever your m2ts files are stored
Then type that command
the_weirdo
17th October 2013, 13:07
For update my arcsoft dts decoder pack, i can only replace files? or i need delete all .dlls and clean all registry ?
Just replacing files is enough.
Anyone willing to help me upderstand FOR %M IN (*.m2ts) DO eac3to %M -demux
I was under the impression that you know how to use eac3to and at least some basic knowledge of Command Prompt. How did you use eac3to before?
As I've said, open Command Prompt, change current working directory to the folder which contains m2ts files, for example:
CD /D E:\BDs\SomeBD\BDMV\STREAM
Then run this command line:
FOR %M IN (*.m2ts) DO path\to\eac3to.exe %M -demux
It'll loop through every m2ts files in that folder and run eac3to -demux on them.
LigH
17th October 2013, 14:25
But demultiplexing each M2TS file separately is possibly not the recommended action anyway. Blu-ray content is usually (logically) concatenated to a whole "movie" by following a playlist file (*.pls) describing the order of the media file segments to be played as a sequence. Therefore you may usually prefer demultiplexing the sequence, instead of separate segments. This is certainly more useful than concatenating separately demultiplexed segments afterwards, at least for processing one whole movie over its complete playtime.
The better you describe the reasons of your task, the better we may understand if the planned task is sensible at all.
digitaldelboy
17th October 2013, 15:13
Thanks but it didn't work, It just scanned through them all like you see below, anyway I'll try and explain in more detail about what I'm trying to do.
Know how there are sometimes extras/special features on blu-ray's these are in the STREAM folder. I want to take the ones that are extras/special features and demux em, I don't care for trailers and other such garbage such as logos. Then use mkvmerge to create .mkv's without the subtitles.
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01026.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01027.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01028.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01029.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01030.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01031.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01032.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01033.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01034.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01043.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01044.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01045.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01046.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01047.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01048.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01049.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01050.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01051.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01052.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01053.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01055.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01056.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01057.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01058.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01059.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01060.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01061.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01062.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01063.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01064.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01065.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01066.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01067.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01068.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01069.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01070.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01071.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01072.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01073.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01074.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01075.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01076.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01077.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01078.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01079.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01080.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01081.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01082.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01083.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01084.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01085.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01086.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01087.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01088.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01089.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01090.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01091.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01092.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01093.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01094.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01095.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01096.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01097.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01098.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01099.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01100.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01101.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01102.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01103.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01104.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01105.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01106.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01107.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01108.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01109.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01112.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01113.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01114.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01115.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01116.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01118.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01119.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01120.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01121.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01122.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01123.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01124.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01133.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01134.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01135.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01136.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01137.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01138.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01139.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01140.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01150.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01151.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01152.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01153.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01154.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01155.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01156.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01157.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01158.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01160.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01162.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01163.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01164.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01165.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01166.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01167.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01168.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01169.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01170.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01171.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01172.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01173.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01174.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01175.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01176.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01177.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01178.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01179.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01180.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01181.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01182.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01183.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01184.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01185.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01186.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01187.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01188.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01189.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01190.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01191.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01192.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01193.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01194.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01195.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01196.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01197.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01198.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01199.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01200.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01201.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01202.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01205.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01228.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>path\to\eac3to.exe 01229.m2ts -demux
C:\Monsters Inc 2001\BDMV\STREAM>
LigH
17th October 2013, 15:17
The part "path\to\" has to be substituted by the actual path where this tool is installed; and if it contains a space, then it has to be included in double-quotes.
Do not only copy and paste. Read and understand. RTFM.
Try to discover where your eac3to.exe resides.
digitaldelboy
17th October 2013, 15:24
Damn I'm an idiot, I managed to get it working. Also I will be sure to RTFM in future.
Drakoliona
17th October 2013, 15:28
Are you sure only replace .ax and .DLLs is good ? Because all people say : Don't good to have "some" decoders
After i re-use command regsvr32 ?
Boulder
17th October 2013, 16:23
Use eac3to -test and you'll see which version it uses.
Drakoliona
17th October 2013, 17:31
@Boulder I have the version 1.1.0.8, i dont know what is the last version but i download TMT6 Trial for Copy files,
But i don't know if i ONLY REPLACE and use regsvr32 ? Or clean be needed
Boulder
17th October 2013, 18:15
Just replace. Eac3to will use the one that is in the same folder as the eac3to executable.
Drakoliona
17th October 2013, 22:59
@Boulder Thank's :)
Just one last question, because i'm on Windows 7 64 bits i have extract eac3to in system32 and in SysWOW64, and extract arcsoft dts decoder pack in the SysWOW64 folder, it's good?
Boulder
18th October 2013, 03:48
Don't use those folders. You can extract eac3to and the dlls in any folder and run it from there. It's much better to not mess with the system folders.
Drakoliona
18th October 2013, 13:38
@Boulder Okay but cmd dońt rencognize eac3to If isńt in system folder
Okay so if i want update i only replace .dll
Regsvr32 is not necessary?
Boulder
18th October 2013, 13:45
You need to CD to the directory where eac3to is.
the_weirdo
18th October 2013, 14:11
Or add eac3to folder to PATH environment variable, or call eac3to by its full path...
Drakoliona
18th October 2013, 14:19
i cd the eac3to folder and for choose the BDMV folder i use what?
I have extract it in desktop but because eac3to is in 32 bits don't work i need copy it in syswow64
LigH
18th October 2013, 15:06
Never "install" applications to the system folders! Instead,
add eac3to folder to PATH environment variable
There are thousands of guides all over the web how to do that.
Overdrive80
18th October 2013, 19:04
I have never troubles installing dlls in system32 or syswow64, what type of conflicts exist for you??
@drakoliona I´m going to put to you a example of like adding a variable to PATH enviroment variable: (Maybe you must reboot windows)
@echo off
set Path=%Path%;C:\Program Files (x86)\MeGUI\tools\eac3to
rem echo %Path%
rem pause
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path /t REG_EXPAND_SZ /d "%Path%" /f
Or you can use in your script too:
@echo off
rem Here you have write your path to folder with dlls inside.
path "C:\Program Files (x86)\MeGUI\tools\eac3to"
73ChargerFan
19th October 2013, 05:47
Change the PATH this way:
Control Panel -> System
Advanced system settings
on the bottom is a button "Environment Variables"
In the lower box "System variables" you'll find "Path"
Log off then back on, or perhaps a restart.
Now, back to our regularly scheduled topic...
Drakoliona
19th October 2013, 18:05
Wait i send one screen
Drakoliona
20th October 2013, 12:10
@Overdrive80 @73ChargerFan
Thank's, okay so if i have really understand, PATH Environement want mean when i use an .exe in cmd, it's "searched on all HDD?"
PATH is really necessary? Because i have eac3to in system32 & SysWOW64, Arcsoft DTS Decoder pack ONLY on SysWOW64, for don't have conflict, look my command -test
It's good? Because i haven't use PATH Environment, and i don't know if is necessary? My parameters are good?
http://img36.imageshack.us/img36/2614/llx8.jpg
And how update nero in eac3to ? with what files?
Shevek
20th October 2013, 12:46
PATH is really necessary? Because i have eac3to in system32 & SysWOW64, Arcsoft DTS Decoder pack ONLY on SysWOW64
This is just a bad, bad, bad idea
YOU SHOULD NOT MANUALLY ADD, REMOVE OR CHANGE ANYTHING, ANYWHERE, UNDER YOUR WINDOWS DIRECTORY (under normal circumstances)
It is called WINDOWS for a reason.
This is why the PATH variable exists - so you can put them somewhere else, add it to PATH and the system will still see them.
Yes, your way works... but that doesn't make it the correct way to do it.
You should put them in a folder such as C:\Applications\eac3to and then add ;C:\Applications\eac3to to the end of your path variable.
tebasuna51
20th October 2013, 18:26
And how update nero in eac3to ? with what files?
You only need NeroAacEnc.exe at same folder than eac3to.exe, like the message show you.
Drakoliona
21st October 2013, 12:18
@Shevek Okay thank's, i go CLEAN ALL MY PC, i formats it, with the W7 CD, and after how i use the path? i don't understand?
LigH
21st October 2013, 12:26
The PATH is an "environment variable". It will already contain several directories as a list, separated with semicola. You can edit the path in the advanced settings of your System in the Control Center.
Let Me Google That For You: "Windows 7 edit path variable"
How to set the path in Windows 7. (http://geekswithblogs.net/renso/archive/2009/10/21/how-to-set-the-windows-path-in-windows-7.aspx)
How To Add/Edit Environment Variables in Windows 7 (http://www.nextofwindows.com/how-to-addedit-environment-variables-in-windows-7/)
How to set the path and environment variables in Windows (http://www.computerhope.com/issues/ch000549.htm)
...
Make sure to keep the previous content. Only add another semicolon, and then the path where you installed eac3to.
Drakoliona
21st October 2013, 14:39
I send on screen (it's on test only for know if it's good or not, before formats)
http://img19.imageshack.us/img19/6844/wicl.png
1 - I go on C: WINDOWS (HDD) and create "Applications" folder, in this folder (Applications) i create an "eac3to" folder (when i formats i extract RAR of eac3to in "eac3to" folder i've create)
2 - I right click computer, and go properties, and VARIABLES ENVIRONMENT
3 - One click on PATH, and click on modify (red cadre)
4 - I go on C: WINDOWS -> Applications -> EAC3TO folder, right click on the bar adress and copy link at text, and i go on path and copy the text with ; (i copy this in path ;C:\Applications\eac3to)
After i reboot, and it's good ? i don't know if after eac3to i use "\" like this ;C:\Applications\eac3to\
LigH
21st October 2013, 14:43
Yes, that sounds like it should work...
So you keep unmanaged applications out of the Windows system area, and still make eac3to accessible from anywhere.
You may not even need to reboot. Logging out and back in may be enough, if it doesn't already work immediately with a CMD window opened after saving the changes.
Drakoliona
21st October 2013, 15:15
Thank's for help me :)
Create foler in HDD it's not a problem? (My new folder Application in C: WINDOWS)
And for finish, my last question is... decoders^^'
So what i need for decoding in good parameters?
i have
- FFDShow (desactivate DTS because i have Arcsoft DTS Decoder pack)
-Arcsoft DTS Decoder pack (in C:\Applications\eac3to folder (the .dlls are in the same folder of .exe of eac3to)
I have too the eac3to decoder pack.exe i don't know if i install it because i don't want problems with decoder...
And the version TRIAL of TMT6 (15 Days trial of 6.0.1.123) are good for copy .dlls? or i need use a full version ?
if i don't install eac3to decoder pack .exe what i need for remux blu ray correctly ?
Thank's
Groucho2004
21st October 2013, 15:38
This thread is really getting polluted with stuff that should be in some computer noob section.
LigH
21st October 2013, 15:42
Creating a directory C:\Applications should not be an issue — if it does not yet exist as the default applications directory, being managed by Windows' UAC.
Because I have installed MeGUI, which uses eac3to as tool, I prefer to use "C:\Program files\MeGUI\tools\eac3to" (or your local equivalent) as its directory.
TMT 6 DLLs are not supported by eac3to, IIRC; the support was restricted to versions 2 or 3, I believe. Don't rely on me here, though. I don't care too much about HD audio, I don't have an audiophile home cinema in by basement.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.