| |||||||
| 1.0 RC1 and SVN Builds Post bugs you have found in 1.0 RC1 or any SVN-Snapshot here. |
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Portal Member Join Date: Apr 2006 Location: San Sebastian
Posts: 411
Thanks: 7
Thanked 19 Times in 12 Posts
| Hi after the fix : 18882 Fixed mantis issue 0001228: MyVideos uses codec configured in Televison for *.ts files witch is ok... There is another bug because of the fix of this bug, now MyRecordings also get the codec information from MyMovies instead that form MyTv.. This create a bad scenario, for example: I have setup the codecs for MyTv -- Video MScodec and Audio Mscodec.. and also I want the same for myrecordings I have setup the codecs for MyMovies... Video FFDSHOW and Audio Ac3filter.. With the above fix, my TVrecordings uses FFDSHOW and Ac3filer witch is wrong and I have worse quality on video for my recordings that for my LiveTv... If you make a diference between MyTv and MyMovies for .TS files you have all the choices, if I open from Myrecordings it should use MyTv codecs.. If I open from MyMovies it should use MyMovies codecs... Do you think??? Ok, I did the fix myseft this is for Build19127, works as explained The code change and the bin on the zip Gex I have change the code this way: protected bool IsVideoFile(string filename) { bool isTimeShiftStream=false; if (filename.ToLower().StartsWith("rtsp://")) { string url=filename.Remove(0,filename.LastIndexOf('/')+1); isTimeShiftStream=(url.Substring(0, 6) == "stream"); } if (this._mediaType == g_Player.MediaType.Video) { Log.Info("Iosu TsReaderPlayer: IsVideoFile {0} == Video", this._mediaType); return true; } else { Log.Info("Iosu TsReaderPlayer: IsVideoFile {0} == Tv or Recording", this._mediaType); return false; } //cambio iosu return (filename.ToLower().IndexOf(".tsbuffer") < 0 && filename.ToLower().IndexOf("radio.tsbuffer") < 0 && !isTimeShiftStream); Last edited by iosub; 2008-05-20 at 18:30. |
| | |
| This User Say Thank You: |
| | #6 (permalink) |
| Portal Member Join Date: Apr 2006 Location: San Sebastian
Posts: 411
Thanks: 7
Thanked 19 Times in 12 Posts
| Great I have send a email to GEMX, lets see what he thinks. also, you can post the result here. http://forum.team-mediaportal.com/266924-post31.html iosu |
| | |
| | #7 (permalink) |
| Portal Member | Thanks for this fix! I haven't tried it yet but all of my recordings and .ts files are playing back choppy and now I know why: in MyVideos, I use post-processing with ffdshow, which is evidently not possible with TS recordings. This definitely needs to get into the next SVN! |
| | |
| | #8 (permalink) |
| Portal Member Join Date: Apr 2006 Location: San Sebastian
Posts: 411
Thanks: 7
Thanked 19 Times in 12 Posts
| Great, as I sait before, post the result on http://forum.team-mediaportal.com/266924-post31.html so the devteam can take care of it Iosu |
| | |
![]() |
| Bookmarks |
| Tags |
| change, detects, fix, fixed, mantis, myrecordings, open, unsuported |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Fixed MPTray focus issue. | trythisone | Plugins | 3 | 2008-07-02 09:02 |