Code: Select all
Unhandled Exception: System.ComponentModel.Win32Exception: The system cannot find the file specified
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start()
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(String fileName, String arguments)
at Movies.Program.Main(String[] args)
Code: Select all
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="logDir" value="C:\Program Files\SABnzbd\scripts\logs\movies"/>
<add key="movieDir" value="D:\MOVIES"/>
<add key="hdMovieDir" value="D:\MOVIES"/>
<add key="ipodMovieDir" value="D:\MOVIES\iPod"/>
<!--Delete Movie Folder?-->
<add key ="deleteFolder" value="false"/>
<!--Use Folder Name as Movie Name?-->
<add key="useFolderName" value="false"/>
<!-- Update XBMC Library?-->
<add key ="updateXbmc" value="false"/>
<!-- XBMC Path to Movies-->
<add key ="xbmcMoviePath" value="W:\Test\Movies"/>
<!-- XBMC Path to HD Movies-->
<add key ="xbmcHdMoviePath" value="W:\Test\Movies\_HD"/>
<!-- XBMC Hostname/IP Address-->
<add key ="xbmcInfo" value="localhost:8080"/>
<!-- XBMC HTTP Username-->
<add key ="xbmcUsername" value="xbmc"/>
<!-- XBMC HTTP Password-->
<add key ="xbmcPassword" value="xbmc"/>
</appSettings>
</configuration>
For multi-CD releases, the incomplete files go to D:\incomplete\<Release Name>. The final, still split files go to D:\complete\<Release Name>\cd1.ext and cd2.ext. That's where the script fails.
I do have MEncoder in the same directory as movies.exe and am able to manually process the files from the command line. Non-split files move as expected.
Also worth mentioning that the <Release Name> folder does get created in D:\Movies. But since the script fails, nothing is moved to it.
Is there any other information I can provide?