MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal TV-Server 1 » Help on Development » Bugreports: TV Server / Client » Bugreport Archive » pre 1.0 RC1 » fixed TV-Server / Client Bugs


fixed TV-Server / Client Bugs Bugreports that have been resolved will be moved in here.

Reply
 
LinkBack Thread Tools Display Modes
Old 2007-03-11, 15:43   #1 (permalink)
Portal Member
 
Join Date: Dec 2005
Location: San Francisco
Posts: 118
Thanks: 0
Thanked 2 Times in 2 Posts

Country:


fixed "Play Recording From Beginning" - not working correctly

MediaPortal Version: 3/8/2007 SVN of MP & TV3
MediaPortal Skin: BuueTwo
Windows Version: Windows 2003 R2
CPU Type: Pentium D 805
HDD: 160GB SATA
Memory: 2GB DDR2
Motherboard: Dell DXP051
Motherboard Chipset:
Motherboard Bios: A05
Video Card: GeForce 7300LE
Video Card Driver: 91.47_forceware_winxp2k_english_whql.exe
Sound Card: onboard
Sound Card AC3:
Sound Card Driver:
1. TV Card: PVR-500
1. TV Card Type: analog
1. TV Card Driver: latest
MPEG2 Video Codec: PureVideo
MPEG2 Audio Codec: PureVideo
Satelite/CableTV Provider: DirecTV
Remote: MCE
TV: old Sony 32" CR
TV - HTPC Connection: s-video


If I'm watching a channel using one tuner and have another tuner in the middle of a scheduled recording then change to the channel that is being recorded selecting "Play Recording From Beginning" I end up at the beginning of the timeshift buffer for the first tuner. This makes it impossible to watch a recording in progress from the beginning.

Last edited by gemx; 2007-03-22 at 10:05.
garry is offline   Reply With Quote
Old 2007-03-11, 17:31   #2 (permalink)
Portal Tester
 
ASiDiE's Avatar
 
Join Date: Jan 2005
Location: USA
Age: 32
Posts: 888
Thanks: 6
Thanked 2 Times in 2 Posts

My System

Default

Currently... the last I knew... this was work in progress.
__________________
I SEE WHAT YOU DID THERE!
ASiDiE is offline   Reply With Quote
Old 2007-03-11, 17:34   #3 (permalink)
Portal Member
 
Join Date: Dec 2005
Location: San Francisco
Posts: 118
Thanks: 0
Thanked 2 Times in 2 Posts

Country:


Default

Excellent, please let me know if there is anything I can do to help! I'm a c# developer but have not had much time to contirbute to MP other than some plugin work.
garry is offline   Reply With Quote
Old 2007-03-22, 03:15   #4 (permalink)
Portal Member
 
Join Date: Nov 2005
Posts: 220
Thanks: 1
Thanked 3 Times in 3 Posts

Country:

My System

Default

I'm just checking in that this isn't just my system. My problem is if i am recording a channel (i use mpg rather than ts) and the recording is say half way through i have no way of watching. Neither the play recording from live point nor the play recording from beginning options work for me. I am able to play the recording once it is finished. If i discover i'm the only one with this issue then obviously i've got some digging to do but from what i read above it seems like this is an area which is being worked on.

If anyone can shed some light i'd be grateful

Cheers
m
mdsflyer is offline   Reply With Quote
Old 2007-03-22, 08:36   #5 (permalink)
Portal Developer
 
gemx's Avatar
 
Join Date: Oct 2006
Age: 32
Posts: 1,233
Thanks: 22
Thanked 184 Times in 97 Posts

Country:

My System

Default

This is really a bug.
I am looking into it at the momement
__________________
ACCENT HT-100 | 2x16 VFD | ADM Athlon 64 3500+ | Win XP SP2 | SkyStar 2 DVB-S PCI | TT connect S2-3600
gemx is online now   Reply With Quote
Old 2007-03-22, 09:00   #6 (permalink)
Portal Developer
 
gemx's Avatar
 
Join Date: Oct 2006
Age: 32
Posts: 1,233
Thanks: 22
Thanked 184 Times in 97 Posts

Country:

My System

Default

It occures only with mpeg recordings not with .ts recordings.
The problem is the tsfile source (async) filter.
Either MediaPlayerClassic nor Windows Media Player are able to play the file while being recorded -> Message: "File is in use".
VLC plays fine.
So no problem with MP itself.
Checking the microsoft knowledge base
__________________
ACCENT HT-100 | 2x16 VFD | ADM Athlon 64 3500+ | Win XP SP2 | SkyStar 2 DVB-S PCI | TT connect S2-3600
gemx is online now   Reply With Quote
Old 2007-03-22, 09:30   #7 (permalink)
Portal Developer
 
gemx's Avatar
 
Join Date: Oct 2006
Age: 32
Posts: 1,233
Thanks: 22
Thanked 184 Times in 97 Posts

Country:

My System

Default

Nothing on the microsoft sites BUT
replaying the file via the tsfilesource filter works even during playback
So we just have to change the method where the graph is built to use TSFileSource instead of "File Source (async.)"
__________________
ACCENT HT-100 | 2x16 VFD | ADM Athlon 64 3500+ | Win XP SP2 | SkyStar 2 DVB-S PCI | TT connect S2-3600
gemx is online now   Reply With Quote
Old 2007-03-22, 09:41   #8 (permalink)
Portal Tester
 
The_Stig's Avatar
 
Join Date: Apr 2005
Posts: 708
Thanks: 19
Thanked 2 Times in 2 Posts

My System

Default

Hi gemx,

thats sounds nice. Thanks for your work!

Regards,

The Stig (aka paloema)
The_Stig is online now   Reply With Quote
Old 2007-03-22, 10:05   #9 (permalink)
Portal Developer
 
gemx's Avatar
 
Join Date: Oct 2006
Age: 32
Posts: 1,233
Thanks: 22
Thanked 184 Times in 97 Posts

Country:

My System

Default

Ok. Found the bug
TSFileSource is already used for mpeg files but the CheckMpgFile() method of the PlayerFactory class raises an exception because it can't access the file. So it returns "false" which means that it is not a valid mpeg file.
So the playerfactory creates a Videoplayer which uses the microsoft file source which can't replay the file.
__________________
ACCENT HT-100 | 2x16 VFD | ADM Athlon 64 3500+ | Win XP SP2 | SkyStar 2 DVB-S PCI | TT connect S2-3600
gemx is online now   Reply With Quote
Old 2007-03-22, 10:40   #10 (permalink)
Portal Developer
 
gemx's Avatar
 
Join Date: Oct 2006
Age: 32
Posts: 1,233
Thanks: 22
Thanked 184 Times in 97 Posts

Country:

My System

Default

Alright, fixed it
It should be working in the actual snapshot rev. 13518
Please provide some feedback if it's really working as desired.
Thanks.
__________________
ACCENT HT-100 | 2x16 VFD | ADM Athlon 64 3500+ | Win XP SP2 | SkyStar 2 DVB-S PCI | TT connect S2-3600

Last edited by gemx; 2007-03-22 at 10:47.
gemx is online now   Reply With Quote
Reply

Bookmarks

Tags
correctly, working

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
"Play Recording From Beginning" - working correctly? garry General Talk 3 2007-03-11 09:47
Play recording from beginning does not do anything. ASiDiE pre 1.0 RC1 1 2006-12-15 18:47
Oggs play correctly but show no info wishmechaos Support 4 2006-12-11 19:12
how to watch a recording from beginning while still recording? arjay MediaPortal 1 Talk 9 2006-10-30 14:45
2 cards : Record set to its beginning when back to the recording channel Broceliande Fixed 0.2 RC3 Bugs 10 2006-04-09 21:53


All times are GMT +1. The time now is 11:18.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Protected by Akismet Blog with WordPress