home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
General Support
TVplugin - avoiding RTSP in multiseat mode (test plz).
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="disaster123" data-source="post: 375310" data-attributes="member: 74707"><p>I think the idea of dot-i isn't bad. Use RTSP for Live-TV and non RTSP for recordings. Here is a small patch for that if you now provide a recordingpath like in the first post you can use non rtsp with recordings (Comskip... works) and rtsp with live tv.</p><p>[CODE]</p><p>Index: TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs</p><p>===================================================================</p><p>--- TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs (revision 21658)</p><p>+++ TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs (working copy)</p><p>@@ -1314,7 +1314,12 @@</p><p> </p><p> bool useRTSP = TVHome.UseRTSP();</p><p> bool recFileExists = File.Exists(fileName);</p><p>-</p><p>+ if (TVHome.RecordingPath().Length > 0)</p><p>+ {</p><p>+ // We have a recordingpath - so disable RTSP in this case</p><p>+ Log.Info("TvRecorded Play:{0} - NOT using rtsp cause RecordingPath is provided: {1}", fileName, TVHome.RecordingPath());</p><p>+ useRTSP = false;</p><p>+ }</p><p> if (!recFileExists && !useRTSP) //singleseat </p><p> {</p><p> if (TVHome.RecordingPath().Length > 0)</p><p>[/CODE]</p><p></p><p>The bad things are:</p><p>1.) still no updated timeline while in pause mode in live-tv</p><p>2.) starting movies with non RTSP takes long for me cause of the new mediainfo.dll which seems to load a huge amount of the file from SMB or my LAN / System is slow. Startuptime 3-5 seconds.</p></blockquote><p></p>
[QUOTE="disaster123, post: 375310, member: 74707"] I think the idea of dot-i isn't bad. Use RTSP for Live-TV and non RTSP for recordings. Here is a small patch for that if you now provide a recordingpath like in the first post you can use non rtsp with recordings (Comskip... works) and rtsp with live tv. [CODE] Index: TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs =================================================================== --- TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs (revision 21658) +++ TVLibrary/TvPlugin/TvPlugin/TvRecorded.cs (working copy) @@ -1314,7 +1314,12 @@ bool useRTSP = TVHome.UseRTSP(); bool recFileExists = File.Exists(fileName); - + if (TVHome.RecordingPath().Length > 0) + { + // We have a recordingpath - so disable RTSP in this case + Log.Info("TvRecorded Play:{0} - NOT using rtsp cause RecordingPath is provided: {1}", fileName, TVHome.RecordingPath()); + useRTSP = false; + } if (!recFileExists && !useRTSP) //singleseat { if (TVHome.RecordingPath().Length > 0) [/CODE] The bad things are: 1.) still no updated timeline while in pause mode in live-tv 2.) starting movies with non RTSP takes long for me cause of the new mediainfo.dll which seems to load a huge amount of the file from SMB or my LAN / System is slow. Startuptime 3-5 seconds. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
General Support
TVplugin - avoiding RTSP in multiseat mode (test plz).
Contact us
RSS
Top
Bottom