| |||||||
| 1.0 RC1 and SVN Builds Post bugs you have found in 1.0 RC1 or any later SVN-Snapshot here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Portal Member Join Date: Apr 2006 Location: San Sebastian
Posts: 397
Thanks: 7
Thanked 15 Times in 11 Posts
| Hi Gibman the fix on build 19191 breaks stop on playing drv-ms files, so drv-ms files are not able to stop "recorded TV would not resume from last point in timeline from previous viewing session. This bug only happens when using the unsupported feature 'avoid using RTSP in multiseat'." I don't know why but .dvr-ms files are treated as tv "recordings" when using Tvpluging, so on the code changed that you have made on tvrecorded.cs private void OnPlayRecordingBackStopped(MediaPortal.Player.g_Pl ayer.MediaType type, int stoptime, string filename) { Log.Info("TvRecorded:OnStopped {0} {1}", type, filename); if (type != g_Player.MediaType.Recording) return; if (filename.Substring(0, 4) == "rtsp") { filename = g_Player.currentFileName; } else if (!TVHome.UseRTSP()) // only keep the filename { FileInfo f = new FileInfo(g_Player.currentFileName);--------------------- THIS LINE MAKE AND EXCEPTION ON DVR-MS FILES because is g_Player.currentFileName is emptly filename = f.Name; } so I have change the code to: private void OnPlayRecordingBackStopped(MediaPortal.Player.g_Pl ayer.MediaType type, int stoptime, string filename) { Log.Info("TvRecorded:OnStopped {0} {1}", type, filename); if (type != g_Player.MediaType.Recording) return; if (filename.Substring(0, 4) == "rtsp") { filename = g_Player.currentFileName; } else if (!TVHome.UseRTSP()) // only keep the filename { if (g_Player.currentFileName != "") { FileInfo f = new FileInfo(g_Player.currentFileName); filename = f.Name; } else { FileInfo f = new FileInfo(filename); filename = f.Name; } } Can you and the code? Thanks! |
| | |
| |
![]() |
| Bookmarks |
| Tags |
| break, build, dvrms, fix, gibman, stop |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| UNSUPORTED FIX(RC1) for MS-DVR and implemented-non-linear-smart-stretc | iosub | General Development (no feature request here!) | 61 | 2008-08-19 20:17 |
| Comskip build 111: Live dvr-ms processing confirmed working | erik1958 | Tips and Tricks | 7 | 2007-11-24 15:32 |
| DVR-MS Format | ajvsouza | Support | 3 | 2007-06-25 23:54 |
| Guide: Manually crop DVR-MS length and remove ads (DVR Edit) | Brocklander | Tips and Tricks | 2 | 2006-01-14 17:36 |
| dvr-ms on win2k | swissair | General Support | 5 | 2006-01-14 02:28 |