MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal TV-Server » 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
 
Thread Tools Display Modes
Old 2007-01-16, 12:31   #1 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

fixed Problem with two tv-cards by channel-changing

Hello all,

channel-changing with 12640 seems better, but on client a llittle slow.

I have opened a new thread because the "channel-changing-behaviour" seems to be fixed, but my problem exists further




At first: I have two DVB-s-cards (look my stystem)

If I selected the same tv-program on the client and on the server, both runs.
If I selected another program on the client, the client on the server changed to the same program (its look like a remote )

If I changed from the same program on the server to another program, its the same, too.

E.g. my woman looks "CSI NY" and I look the same program (!!both on card2) and now I switch to "TerraNova", my woman is very sadly

Now she is switching to "CSI NY" and now I am very sadly

It happened only then, when "CARD2" is selected, not on "CARD1"

I have marked the location in tv.txt where the error is coming up.
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-02-17 at 20:32.
josu is offline   Reply With Quote
Old 2007-01-18, 22:37   #2 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Hello,

has anyone this problem, too

P.S.:
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-02-08 at 15:22.
josu is offline   Reply With Quote
Old 2007-01-19, 16:43   #3 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Hello,

I have looked in the source-code and I have found something, which can cause
the problem:


TvEngine3/TVLibrary/TvControl/VirtualCard.cs



941 /// <summary>
942 /// Determines whether the card is locked.
943 /// </summary>
944 /// <param name="user">The user which has locked the card</param>
945 /// <returns>
946 /// <c>true</c> if the card is locked; otherwise, <c>false</c>.
947 /// </returns>
948 public bool IsLocked(out User user)
949 {
950 user = null;
951 try
952 {
953 if (_cardId < 0) return false;
954 RemoteControl.HostName = _server;
955 return RemoteControl.Instance.IsCardInUse(_cardId, out user);
956 }
957 catch (Exception ex)
958 {
959 HandleFailure(ex);
960 }
961 return false;




....here must determines, which users!!!! ( 2 or more hosts) are locked to a card, not determines for one user !!!

If two users are on one card (looking the same channel) and one user would change to another channel, the first user must be standing on the card and the other user must change to the other card

The client, which appears as user in the "manual control" on card2 of the tve-mmc ist the user, which makes the pseudo-remote !!!
If this user closed mp, the other client hangs up (get no stream) :-(


Edit!!!!!!! Its happened also on card1 !!!!!!!!!
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-01-19 at 17:24.
josu is offline   Reply With Quote
Old 2007-01-21, 17:22   #4 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Hello,

can anyone reproduce this behaviour

Same in svn12693, 12695.
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-01-22 at 22:41.
josu is offline   Reply With Quote
Old 2007-02-01, 15:36   #5 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Same in 12800

Its very bad, if one client switches the other client. I thought, the bug is away because this:

.......31/01/2007 [10:43h] _Frodo_ added: added support for watching/recording multiple tv channels on 1 (dvb) card.........

I know, there was meant "different channels from one transponder", but I hoped, the bug was away with this svn.

Hello developers, can you please look for this bug

__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-02-01 at 15:47.
josu is offline   Reply With Quote
Old 2007-02-01, 16:53   #6 (permalink)
Portal Developer
 
Join Date: Jul 2006
Age: 32
Posts: 421
Thanks: 3
Thanked 2 Times in 2 Posts

Country:

My System

Default

josu,

I don't think this is a bug, I think it is the default behavior.

I remember some discussions about what to do in a scenario like this. One of the ideas was that the second user would not automatically share the same stream because it would be a "hostage" of the user locking the card. At the same time, if you prohibits user1 of changing the channel because someone else "subscribed" to his stream, you are making user1 hostage of user2 and that's not good either.

The first releases of tvserver worked this way (no automatic routing to an active stream). In an ideal scenario, user1 and user2 would have it's own set of cards and not share the streams, but that's not what it's going to happen in most cases.

Don't know why this was changed from the original behavior, but I don't think it's a bug, but by design.

Just my 2 cents.
joboehl is offline   Reply With Quote
Old 2007-02-01, 17:14   #7 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Quote:
Originally Posted by joboehl View Post
josu,

I don't think this is a bug, I think it is the default behavior.

I remember some discussions about what to do in a scenario like this. One of the ideas was that the second user would not automatically share the same stream because it would be a "hostage" of the user locking the card. At the same time, if you prohibits user1 of changing the channel because someone else "subscribed" to his stream, you are making user1 hostage of user2 and that's not good either.

The first releases of tvserver worked this way (no automatic routing to an active stream). In an ideal scenario, user1 and user2 would have it's own set of cards and not share the streams, but that's not what it's going to happen in most cases.

Don't know why this was changed from the original behavior, but I don't think it's a bug, but by design.

Just my 2 cents.
hello joboehl,

a strange behavior, but I think, its a bug because when 2 clients are on the same channel, tve switches automatically both clients to one card, and when one client shuts down, the other hangs.
With a little change in the sourcecode (look above posting) it must be possible to handle this behavior

We wait for frodos opinion
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-02-01 at 17:20.
josu is offline   Reply With Quote
Old 2007-02-08, 15:06   #8 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

Hello,
I have still problems with this behavior (svn12903)
As attachment the newest logs.

another strange behavior look the picture
Attached Thumbnails
problem-two-tv-cards-channel-changing-bild1.jpg  
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-02-08 at 15:42.
josu is offline   Reply With Quote
Old 2007-02-08, 16:21   #9 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

I have found out, that the channel is switched, but mp-client jumps to the wrong place in the timeshifting.
If I play forward to the end, the wished channel appears :-)

Seems to be a little bug
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings
josu is offline   Reply With Quote
Old 2007-02-09, 22:37   #10 (permalink)
Portal Member
 
josu's Avatar
 
Join Date: Mar 2006
Location: Kassel, Germany
Age: 49
Posts: 191
Thanks: 0
Thanked 0 Times in 0 Posts

Country:

My System

Default

It seems, nobody understand me, or nobody have my prob.

Its very simple:
2 DVB-s cards
2 network-clients
1 server

both on the same TV-channel.

The client, which was at first on this channel, remotes the other, if I switch to another channel.

Example:
client1 select at first ch1.
Then I start client2 and I select the same ch1.
T
hen I select on client1 the ch2.
I do nothing on client2, but client2 changes also to ch2.


And reverse, too !

Can nobody help me ???


I will get a price for the longest self-talk in this forum
__________________
"You do not really understand something unless you can explain it to
your grandmother." (Albert Einstein)



many greetings

Last edited by josu; 2007-02-09 at 22:50.
josu is offline   Reply With Quote
Reply

Bookmarks

Tags
channelchanging, tvcards

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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
(original thread) US/Canadian/Mexico EPG Zap2it Plugin Released bradsjm zap2it (discontinued) 513 2007-02-21 14:07
Channel changing problems psyko12 pre 1.0 RC1 4 2006-12-20 13:50
Freezing when changing channel petteram The old Bugreport Forum 5 2006-12-15 13:19
problem scanning DVB-T peter5_uk General Talk 0 2006-12-06 20:08
Technotrend Budget 1500 CI no LNB switch Erbsenkopp General Support 0 2006-08-03 08:46


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


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