Normal
@ MacGuyverI downloaded the source code and managed to get it to launch Roxio CinePlayer and start playing.Here are the lines I changed, although you've made a lot of changes since the source code I downloaded. Maybe you can share it?[CODE] /// <summary> /// Launch external player /// </summary> private void LaunchPlayer() { string _RoxioDriveLetter = _driveLetterInConfig + "\\"; Log.Info("Blu-Ray Player Launcher: LaunchPlayer"); Log.Info("Blu-Ray Player Launcher: PlayerPath" + " " + _playerExecutable); Log.Info("Blu-Ray Player Launcher: DriveLetter" + " " + _RoxioDriveLetter); ProcessStartInfo psi = new ProcessStartInfo(); _playerProcess = new Process(); psi.FileName = _playerExecutable; psi.Arguments = _RoxioDriveLetter;[/CODE]I was hoping we could add to your source code and just add another player selection tab for CinePlayer that then uses the _driveLetterinConfig as an argument when launching the player.Out of interest have you tried this for PowerDVD? This is all autoplay does so I don't see why it wouldn't work.
@ MacGuyver
I downloaded the source code and managed to get it to launch Roxio CinePlayer and start playing.
Here are the lines I changed, although you've made a lot of changes since the source code I downloaded. Maybe you can share it?
[CODE] /// <summary>
/// Launch external player
/// </summary>
private void LaunchPlayer()
{
string _RoxioDriveLetter = _driveLetterInConfig + "\\";
Log.Info("Blu-Ray Player Launcher: LaunchPlayer");
Log.Info("Blu-Ray Player Launcher: PlayerPath" + " " + _playerExecutable);
Log.Info("Blu-Ray Player Launcher: DriveLetter" + " " + _RoxioDriveLetter);
ProcessStartInfo psi = new ProcessStartInfo();
_playerProcess = new Process();
psi.FileName = _playerExecutable;
psi.Arguments = _RoxioDriveLetter;[/CODE]
I was hoping we could add to your source code and just add another player selection tab for CinePlayer that then uses the _driveLetterinConfig as an argument when launching the player.
Out of interest have you tried this for PowerDVD? This is all autoplay does so I don't see why it wouldn't work.