Page 1 of 1

Re: [RESOLVED] DGIndexNV batch job

Posted: Tue Jan 02, 2018 3:31 pm
by Jagutherrschaften
Thank you for your reply.

Code: Select all

@echo off
for %%m in (%*) do (
	"C:\Program Files\MeGUI\tools\dgindexnv\DGIndexNV.exe" -i %%m -od "%%~nm.dgi" -h 
	echo Indexed "%%~nxm".
)
pause
This is what I am using at the moment. If I add

Code: Select all

-a
after "%%~nm.dgi" nothing changes. Seems I don't understand how to use it :? .

Re: [RESOLVED] DGIndexNV batch job

Posted: Tue Jan 02, 2018 3:59 pm
by Guest
Try it before -od and see if it works

Re: [RESOLVED] DGIndexNV batch job

Posted: Tue Jan 02, 2018 4:32 pm
by Jagutherrschaften
Same result, demuxing the video works fine, no audio file is created.

Re: [RESOLVED] DGIndexNV batch job

Posted: Tue Jan 02, 2018 4:40 pm
by Guest
Are you using the 32 bit or 64 bit version?

Open up DGIndexNV directly and drag and drop your file into it
Enable audio demux and then save project with video demux
Does it work?

Re: [RESOLVED] DGIndexNV batch job

Posted: Wed Jan 03, 2018 6:51 am
by admin
As gonca suggests, you must have Enable_Audio_Demux=1 in the INI file. You can either edit it manually or you can enable it in the DGIndexNV GUI via Audio/Enable audio processing.

For the next slipstream I will make -a automatically assume processing is enabled.

If this does not resolve your issue, can you make available a short unprocessed source sample (50MB is fine)? You can cut TS files with DGSplit, or you can open it in DGIndexNV, set a range, and then do File/Output Trimmed TS.

Re: [RESOLVED] DGIndexNV batch job

Posted: Thu Jan 04, 2018 7:18 am
by Jagutherrschaften
Thank you for your help :hat: .

I realized that the "Enable_Audio_Demux=1" was already in the INI-file, I additionally checked "Enable audio processing" in the GUI.
The setting wasn't there after closing and reopening the GUI. I then changed the permissions of the file DGIndexNV.ini - I gave all the different rights to all users and reapplied the settings. This solved my problem, the settings are saved and now demuxing audio and video and indexing the files works with the following batch-code:

Code: Select all

@echo off
for %%m in (%*) do (
	"C:\Program Files (x86)\MeGUI\tools\dgindexnv\DGIndexNV.exe" -i %%m -a -od "%%~nm.dgi" -h 
	echo Indexed "%%~nxm".
)
pause


This makes DGIndexNV even more valuable for me, thanks a lot :bow:

Re: [RESOLVED] DGIndexNV batch job

Posted: Thu Jan 04, 2018 7:41 am
by admin
Good to hear you have it sorted out and thank you for the status update.