- December 18, 2007
- 79
- 2
- Home Country
-
Germany
I use the MP-TVSeries v2.3.3538 Stable Release [08-Sep-09]
and MP 1.0.1
Is it possible that MP is the problem?
At the moment I have no time for an update but I will try in a few weeks.
Just for understanding, what do you say to this part of the source code:
// If the file is an image file, it should be mounted before playing
string filename = m_currentEpisode[DBEpisode.cFilename];
if (m_bIsImageFile) {
if (!GUIVideoFiles.MountImageFile(GUIWindowManager.ActiveWindow, filename)) {
return false;
}
}
// Start Listening to any External Player Events
listenToExternalPlayerEvents = true;
// Play File
result = g_Player.Play(filename, g_Player.MediaType.Video);
does the GUIVideoFiles.MountImageFile(GUIWindowManager.ActiveWindow, filename) return the new filename?
For example the image d:\imageFiles\image.iso on harddisc is mounted to the virtual disc drive V:. Does "filename" then point to the virtual drive? Then i think it should work.
If "filename" is still the path to the iso, this declares my old error when TvSeries trys to play the iso directly.
I hope it was understandable. I have no experience with c# and the programming in for mp
and MP 1.0.1
Is it possible that MP is the problem?
At the moment I have no time for an update but I will try in a few weeks.
Just for understanding, what do you say to this part of the source code:
// If the file is an image file, it should be mounted before playing
string filename = m_currentEpisode[DBEpisode.cFilename];
if (m_bIsImageFile) {
if (!GUIVideoFiles.MountImageFile(GUIWindowManager.ActiveWindow, filename)) {
return false;
}
}
// Start Listening to any External Player Events
listenToExternalPlayerEvents = true;
// Play File
result = g_Player.Play(filename, g_Player.MediaType.Video);
does the GUIVideoFiles.MountImageFile(GUIWindowManager.ActiveWindow, filename) return the new filename?
For example the image d:\imageFiles\image.iso on harddisc is mounted to the virtual disc drive V:. Does "filename" then point to the virtual drive? Then i think it should work.
If "filename" is still the path to the iso, this declares my old error when TvSeries trys to play the iso directly.
I hope it was understandable. I have no experience with c# and the programming in for mp