MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal TV-Server » Get Support


Get Support Problems with the TV-Server or Client? Post them in here.

Reply
 
Thread Tools Display Modes
Old 2007-11-05, 07:59   #31 (permalink)
Portal Member
 
Join Date: Aug 2007
Posts: 218
Thanks: 1
Thanked 5 Times in 5 Posts

Country:

My System

Default

I know the problem still exists and it is somehow related to timeshifting files.

As previously said, TVE3 creates a timeshifting file with size of 0MB and never writes anything to it and the file stays locked. Actually if I remember correct, I once saw two timeshifting files with size of 0MB in my timeshifting files folder and both of them were locked. When No audio/video error occurs, maximum number of timeshifting files are in use and one or two of them are size 0MB and locked, but if I'm able to remove any of the timeshifting files, the problem is gone for while. Sometimes removing is not possible, because all of the files are locked, even those with size larger than 0MB.
seco is offline   Reply With Quote
Old 2007-11-06, 05:17   #32 (permalink)
Portal Member
 
Join Date: Jul 2007
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

TV-Server Version: tvengine3-11-05-2007--01-37h--Rev16445
MediaPortal Version: Latest SVN
MediaPortal Skin: PureVision
Windows Version: Win XP SP2
CPU Type: Core2Duo at 2.7
HDD: 300 GB
Memory: 2 GB
Motherboard: ASUS P5B
Motherboard Chipset:
Motherboard Bios:
Video Card: NVIDIA GeForce 7600 GS
Video Card Driver:
Sound Card:
Sound Card AC3:
Sound Card Driver:
1. TV Card: Hauppauge WINTV-HVR 1800
1. TV Card Type: analog & digital
1. TV Card Driver:
2. TV Card:
2. TV Card Type:
2. TV Card Driver:
3. TV Card:
3. TV Card Type:
3. TV Card Driver:
4. TV Card:
4. TV Card Type:
4. TV Card Driver:
MPEG2 Video Codec:
MPEG2 Audio Codec:
Satelite/CableTV Provider: FL - Orlando - Brighthouse digital
HTPC Case:
Cooling:
Power Supply:
Remote: Hauppauge: None
TV: Dell 24" Wide Monitor
TV - HTPC Connection:
SQL Server 2005 DE
Media Portal & TV Server are on the same PC.


Analog channels work fine and I can preview from within TVServer Setup and watch in Media Portal.
HD Clear QAM channels can be found by channel scan in TVServer Setup but I CANNOT preview or watch from MP. NoVideoAudioDetected.

I stopped TVService, cleared my logs files, and restarted TVService. Then just started TVServer Setup and then tried to preview a QAM channel (WESH). Attached are the log files.

I see a live1-0.ts.buffer (0 size) appear, then the error, then the file goes away.
Attached Files
File Type: log streaming server.Log (135 Bytes, 3 views)
File Type: log TsWriter.Log (4.0 KB, 4 views)
File Type: log tv.log (7.6 KB, 6 views)
happyfirst is offline   Reply With Quote
Old 2007-11-06, 05:38   #33 (permalink)
Portal Member
 
Join Date: Jul 2007
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

I'm in manual control now and it seems like maybe the EPG is locking the ATSC tuner?

Well I managed to stop that by unchecking the QAM channels from the TV EPGgrabber section so now it says idle in manaul control but I still get the same error.

Last edited by happyfirst; 2007-11-06 at 05:47. Reason: Automerged Doublepost
happyfirst is offline   Reply With Quote
Old 2007-11-06, 18:35   #34 (permalink)
rtv
Portal Developer
 
rtv's Avatar
 
Join Date: Apr 2005
Location: Osnabruck
Posts: 2,765
Thanks: 130
Thanked 133 Times in 93 Posts

Country:

My System

Default

Please see your TsWriter.log and search for lines like:

Code:
06-11-2007 18:24:49 Timeshifter:paused:no
06-11-2007 18:24:49 MultiFileWriter: not enough free diskspace
06-11-2007 18:24:49 Timeshifter:failed to open filename:T:\Timeshift\1\live5-0.ts.tsbuffer 183
06-11-2007 18:25:04 Timeshifter:Stop timeshifting:'T:\Timeshift\1\live5-0.ts.tsbuffer'
06-11-2007 18:25:04 Timeshifter:Reset
__________________
rtv is online now   Reply With Quote
Old 2007-11-06, 18:41   #35 (permalink)
rtv
Portal Developer
 
rtv's Avatar
 
Join Date: Apr 2005
Location: Osnabruck
Posts: 2,765
Thanks: 130
Thanked 133 Times in 93 Posts

Country:

My System

Default

Quote:
Originally Posted by Stepko View Post
Btw: As I learned today MPFileWriter is only involved if you use an analog card. If you watch TV using a DVB-card, TSWriter is used for timeshifting instead of MPFileWriter. So this patch won´t do anything on systems with a DVB-card.
Tourettes and me will investigate this issue further since I maybe can reproduce it here. Would you please share the code you've changed?
__________________
rtv is online now   Reply With Quote
Old 2007-11-06, 19:09   #36 (permalink)
Portal Member
 
Join Date: Jul 2007
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

I tried switching to MPG from TS (and restarted) but I still keep seeing that ts file appear in the tvserver directory.
happyfirst is offline   Reply With Quote
Old 2007-11-06, 19:18   #37 (permalink)
Portal Member
 
Join Date: Sep 2007
Location: Hamburg
Posts: 21
Thanks: 1
Thanked 10 Times in 3 Posts

Country:


Default

Quote:
Originally Posted by rtv View Post
Tourettes and me will investigate this issue further since I maybe can reproduce it here. Would you please share the code you've changed?
Sure, but I don´t think that will help you much. I did only one change in solution MPFileWriter, MPFileWriter.cpp.
Original code:
Code:
CBasePin * CDumpFilter::GetPin(int n)
{
    if (n == 0) {
        return m_pDump->m_pPin;
    } else {
        return NULL;
    }
}
Changed:
Code:
CBasePin * CDumpFilter::GetPin(int n)
{
    Sleep(10);
    if (n == 0) {
        return m_pDump->m_pPin;
    } else {
        return NULL;
    }
}
Yapp, thats all, waiting for 10ms fixed this for me.
I found out that function "STDMETHODIMP CDumpInputPin::Receive(IMediaSample *pSample)" doesn´t get called when the error occurs. I think thats the reason for the timeshiftfile to stay at 0 bytes. So I placed a LogDebug in "GetPin(int n)" and with that log-output the problem was solved. Because I didn´t want the log file to become too big I replaced LogDebug with the Sleep command, and it still works. Thats why I think it is kind of a timing problem.

Hope you find a solution for everyone
Stepko
Stepko is offline   Reply With Quote
Old 2007-11-16, 10:48   #38 (permalink)
Portal Member
 
Join Date: Oct 2007
Location: Almere
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Is there any news on this issue?
It would help me very much. At this stage I can't use MP to watch/recored TV at all in combination with my floppyDTV-S2 on the canaal+ channels.
Fredd_1001 is offline   Reply With Quote
Old 2007-11-16, 11:16   #39 (permalink)
rtv
Portal Developer
 
rtv's Avatar
 
Join Date: Apr 2005
Location: Osnabruck
Posts: 2,765
Thanks: 130
Thanked 133 Times in 93 Posts

Country:

My System

Default

Setting the timeshift file size > 1.5 GB also triggers the issue here.
__________________
rtv is online now   Reply With Quote
Old 2007-11-18, 17:30   #40 (permalink)
Portal Member
 
Join Date: Oct 2007
Location: Almere
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

I've tried if the problem is allso there with Vista.
But the problem is exactly the same
I hoped that Vista would use other timings etc, but nope that's no solution.....
Fredd_1001 is offline   Reply With Quote
Reply

Bookmarks

Tags
detected, video or audio

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 Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
No video/audio detected ... classico pre 1.0 RC1 33 2008-04-14 19:55
No video/audio detected with dvb-c sgrimm pre 1.0 RC1 2 2008-03-16 10:28
No video/audio detected sgrimm Get Support 14 2008-03-16 03:22
TVServer reports No Audio/Video detected herman Get Support 2 2007-02-23 14:35
No Video/Audio detected hans Get Support 3 2006-12-19 19:12


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


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Protected by Akismet Blog with WordPress
Advertisement System V2.6 By   Branden