SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV v7 Customizations
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV v7 Customizations This forums is for discussing and sharing user-created modifications for the SageTV version 7 application created by using the SageTV Studio or through the use of external plugins. Use this forum to discuss plugins for SageTV version 7 and newer.

View Poll Results: Would you like this plugin working on Linux?
Yes, please 7 63.64%
No, thanks 4 36.36%
Voters: 11. You may not vote on this poll

Reply
 
Thread Tools Search this Thread Display Modes
  #421  
Old 02-27-2016, 11:11 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by stuckless View Post
I guess, I'd be interested to know more about how this would work, and what would be required to use it.
At the moment this is a DirectShow transformation filter which has two pins (one input and one output). The filter is inserted by STV in the filtergraph that get created for every Digital Capture Device Input STV founds, in particular between the tuner's demodulator output pin and the STV proprietary TS Splitter input pin.

All the TS packet transmitted by the tuner are going through my filter before reaching STV, this way I can descramble the packets without let STV knowing that the packets were actually scrambled

The filter runs in a separated thread environment created by the DirectShow wrapper, however the filter itself spawns four extra threads for each instance (Tuner) which are used during different decryption stages, to talk to the external card server (OSCAM) and to the STV plugin.

Believe it or not I haven't look as the OS code as yet (resisting the temptation until I've got enough free time to commit to any work I might be involved on), so not sure how this approach would fit on Linux, however the most sensible solution to me is to provide a simple wrapper interface to the decryption engine accepting two pointers, one filled with the TS by the agent responsible of capturing the data from the tuner and the other filled by the filter with the result to pass downstream. The buffers must be of the same maximum size and this is normally determined by reading the tuner's capabilities, however the TS packets contained into it can be much less (I normally use this to my advantage, but squeezing more packets into the destination buffer for reasons too long to explain here).

At the moment the filter runs asynchronously, so you can feed the input buffer much quicker and I normally take 1 second of processing before delivering descrambled packet to the output buffer, but that is not a problem in a DirectShow environment, however on Linux we might need to run the filter synchronously.

So far the interest is quite low, I might setup a poll and see if worth the effort, but thanks for your questions.

Cheers
Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #422  
Old 02-29-2016, 02:07 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Linux?

The poll is now open

Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #423  
Old 02-29-2016, 05:02 AM
jamesdisco's Avatar
jamesdisco jamesdisco is offline
Sage Advanced User
 
Join Date: Jul 2008
Location: N Yorks, UK
Posts: 234
I don't think i'll be moving to linux anytime soon, but i would like a version that works with version 9 on windows.

I think getting a sage client working on one of these would be a nice project for you Eddy

Raspberry pi 3
__________________
Server: Win 10 64bit Core i3 8GB 20TB, TBS6985, TBS6984, Sage 9.
Clients: 5 x HD300, 2 x HD200, Placeshifter.
Reply With Quote
  #424  
Old 02-29-2016, 06:23 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by jamesdisco View Post
I don't think i'll be moving to linux anytime soon, but i would like a version that works with version 9 on windows.
Are you saying that the plugin doesn't currently work on STV 9?
I don't see a reason why shouldn't, what I might have said that I didn't want to support it officially in case of issues.

BTW, nice "pi3"...I'll might take a byte at some point

Cheers
Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #425  
Old 02-29-2016, 07:48 AM
stuckless's Avatar
stuckless stuckless is offline
SageTVaholic
 
Join Date: Oct 2007
Location: London, Ontario, Canada
Posts: 9,713
Quote:
Originally Posted by routerunner View Post
All the TS packet transmitted by the tuner are going through my filter before reaching STV, this way I can descramble the packets without let STV knowing that the packets were actually scrambled

The filter runs in a separated thread environment created by the DirectShow wrapper, however the filter itself spawns four extra threads for each instance (Tuner) which are used during different decryption stages, to talk to the external card server (OSCAM) and to the STV plugin.
A few years back, I was running a linux dvb setup (before moving HDPVR), where I was using sasc-ng and a softcam provider. (I was paying twice... once for the legit subscription and again to the softcam provider)

What I thought was cool about this was that sasc-ng exposed the "decrypted" video as standard video4linux devices (/dev/video1), and then any linux video utility could work with it. That being said... While I could tell sagetv to use new video source, sadly, it still didn't work, yet it worked in every other video application on linux

At this point, I'm not sure I'd ever go back to the softcam model, given the HDPVR does work quite well... but, I still think about this from time to time

Quote:
Originally Posted by jamesdisco View Post
I think getting a sage client working on one of these would be a nice project for you Eddy

Raspberry pi 3
Not sure I ever saw the point in the $35 pi client. It would be possible to create a thin client for it... but by time you add in the extras, like a case, remote, etc, I think the $99 Nexus Player would actually be a better client, for the money, and would likely work better. And the Nexus would uses hardware decoding for h264, h265, and mpeg2.

If you've ever used the sagetv miniclient, on linux, you'll know it's full of glitches. At this point the Android client works much better than the native linux client.
Reply With Quote
  #426  
Old 02-29-2016, 08:48 AM
deanm deanm is offline
Sage Aficionado
 
Join Date: Apr 2005
Location: North East, UK
Posts: 309
Quote:
Originally Posted by routerunner View Post
Are you saying that the plugin doesn't currently work on STV 9?
I don't see a reason why shouldn't, what I might have said that I didn't want to support it officially in case of issues.
Eddy
I can confirm this plugin works fine with STV 9. Been running this plugin with Windows 10 and STV 9 for a long time.

Dean
__________________
Darkside: DVB-C x4 DVB-T2 x2 HD-300 x4
Lightside: DVB-C x2 DVB-T2 x4 HD-300 x3
Reply With Quote
  #427  
Old 03-09-2016, 12:53 PM
deanm deanm is offline
Sage Aficionado
 
Join Date: Apr 2005
Location: North East, UK
Posts: 309
Quote:
Originally Posted by routerunner View Post
I was wondering whether anyone would be interested to see this software working on Linux as well?
Hi Eddy,

I see there is not much interest in this being made available for Linux. I have voted yes to this. At present my STV Server is Windows but in the future I think I would like to move across but this Plugin is a must have feature for me.

Dean
__________________
Darkside: DVB-C x4 DVB-T2 x2 HD-300 x4
Lightside: DVB-C x2 DVB-T2 x4 HD-300 x3
Reply With Quote
  #428  
Old 03-15-2016, 12:20 PM
jamesdisco's Avatar
jamesdisco jamesdisco is offline
Sage Advanced User
 
Join Date: Jul 2008
Location: N Yorks, UK
Posts: 234
Dean

How would you import the epg into sage in Linux. Is there a way to get the digiguide into sage with Linux.
__________________
Server: Win 10 64bit Core i3 8GB 20TB, TBS6985, TBS6984, Sage 9.
Clients: 5 x HD300, 2 x HD200, Placeshifter.
Reply With Quote
  #429  
Old 03-15-2016, 12:42 PM
deanm deanm is offline
Sage Aficionado
 
Join Date: Apr 2005
Location: North East, UK
Posts: 309
Quote:
Originally Posted by jamesdisco View Post
Dean

How would you import the epg into sage in Linux. Is there a way to get the digiguide into sage with Linux.
Yes good point. Never thought about that

Dean
__________________
Darkside: DVB-C x4 DVB-T2 x2 HD-300 x4
Lightside: DVB-C x2 DVB-T2 x4 HD-300 x3
Reply With Quote
  #430  
Old 04-02-2016, 01:51 PM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by syrel View Post
Hi Eddy

I'm strictly Windows-only, so wouldn't be of use to me. Glad to see you're still engaged with the project though!

syrel
Indeed, I've just completed my current contract and whilst awaiting to start a new one in a couple of weeks I am back to the whiteboard for the next exciting feature

Cheers
Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #431  
Old 05-02-2016, 04:17 AM
syrel syrel is offline
Sage Advanced User
 
Join Date: Oct 2010
Location: UK
Posts: 89
Just a quick note in case anyone has the same problem - I have found that when Oscam is running, I cannot put the system time back in Windows. I could move the time forwards, but not back. Over time, this was causing problems with my recording schedule. I ended up pulling the computer apart assuming a hardware problem, only to find (after several days!) it was Oscam. Eddy, I also tried a non-Rossisoft version of Oscam but it had the same affect, so it's not something you added to the code.

Anyway, this is just in case anyone ends up pulling their hair out over the same problem I did. My solution now is to run a time sync programme at every startup, before Oscam gets loaded.

syrel
Reply With Quote
  #432  
Old 05-02-2016, 12:22 PM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by syrel View Post
Just a quick note in case anyone has the same problem - I have found that when Oscam is running, I cannot put the system time back in Windows. I could move the time forwards, but not back. Over time, this was causing problems with my recording schedule. I ended up pulling the computer apart assuming a hardware problem, only to find (after several days!) it was Oscam. Eddy, I also tried a non-Rossisoft version of Oscam but it had the same affect, so it's not something you added to the code.

Anyway, this is just in case anyone ends up pulling their hair out over the same problem I did. My solution now is to run a time sync programme at every startup, before Oscam gets loaded.

syrel
How bizarre...I never came across this behaviour before. I will look into the OsCAM code at some point to shed some light, in the meantime I'm glad you've found a workaround.

I always run OsCAM on my system using a scheduled task around 10 minutes after the system is up, that's probably why I never seen this happening, also in my configuration I run a very stripped down version of OsCAM on a Linux box where the card reader is connected to which in turn connects to the OsCAM instance running on Windows and found this approach very reliable and fast with ECMs well below the 100msecs, something I could never been able to achieve when the reader was connected to my Windows machine with only one instance of OsCAM running.

cheers
Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #433  
Old 05-05-2016, 04:49 AM
deanm deanm is offline
Sage Aficionado
 
Join Date: Apr 2005
Location: North East, UK
Posts: 309
Quote:
Originally Posted by syrel View Post
Just a quick note in case anyone has the same problem - I have found that when Oscam is running, I cannot put the system time back in Windows. I could move the time forwards, but not back. Over time, this was causing problems with my recording schedule. I ended up pulling the computer apart assuming a hardware problem, only to find (after several days!) it was Oscam. Eddy, I also tried a non-Rossisoft version of Oscam but it had the same affect, so it's not something you added to the code.

Anyway, this is just in case anyone ends up pulling their hair out over the same problem I did. My solution now is to run a time sync programme at every startup, before Oscam gets loaded.

syrel
I wish I had known this a few months back. Had this happen on one of my servers and never did find the issue. Changed the BIOS battery reinstalled Windows etc. In the end I changed the mother board as it was in need of being replaced.

Not seen this happen on the new server or my other server. Do think there is something else happening here and not just OSCAM that causes this.

Dean
__________________
Darkside: DVB-C x4 DVB-T2 x2 HD-300 x4
Lightside: DVB-C x2 DVB-T2 x4 HD-300 x3
Reply With Quote
  #434  
Old 05-05-2016, 04:57 AM
syrel syrel is offline
Sage Advanced User
 
Join Date: Oct 2010
Location: UK
Posts: 89
Quote:
Originally Posted by deanm View Post
I wish I had known this a few months back. Had this happen on one of my servers and never did find the issue. Changed the BIOS battery reinstalled Windows etc. In the end I changed the mother board as it was in need of being replaced.
Tell me about it. Spent ages on the problem and ended up completely rebuilding my server, only to find the exact same problem

TBH, am glad to hear of someone else having the same problem, as was wondering what was specific about my set up to cause it. Clearly it hasn't happened to everyone, or we would have heard something. All I know is that I have had the situation of two PCs - they both have been set up similarly, so it's possible that Oscam + mystery factor is the real culprit, but I didn't have the problem before I installed Oscam, and the moment I stop it the problem goes away...

syrel
Reply With Quote
  #435  
Old 05-14-2016, 10:21 PM
alland's Avatar
alland alland is offline
Sage User
 
Join Date: Aug 2008
Location: New Zealand
Posts: 44
System time changes in security log

Eddy

My setup has been running relatively stable for a while. After a blue screen last night I had a nose around the Windows event logs.

I found lots of entries in the security log saying that OSCAM had been changing the system time. Any ideas why ?

Running on Win 10.

Log Name: Security
Source: Microsoft-Windows-Security-Auditing
Date: 15/05/2016 3:49:11 PM
Event ID: 4616
Task Category: Security State Change
Level: Information
Keywords: Audit Success
User: N/A
Computer: XXXXX
Description:
The system time was changed.

Subject:
Security ID: SYSTEM
Account Name: XXXXX
Account Domain: WORKGROUP
Logon ID: 0x3E7

Process Information:
Process ID: 0x34c
Name: C:\Program Files\SageTV\SageTV\CAM\oscam.exe

Previous Time: ‎2016‎-‎05‎-‎15T03:49:11.912217700Z
New Time: ‎2016‎-‎05‎-‎15T03:49:11.912000000Z

This event is generated when the system time is changed. It is normal for the Windows Time Service, which runs with System privilege, to change the system time on a regular basis. Other system time changes may be indicative of attempts to tamper with the computer.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
<EventID>4616</EventID>
<Version>1</Version>
<Level>0</Level>
<Task>12288</Task>
<Opcode>0</Opcode>
<Keywords>0x8020000000000000</Keywords>
<TimeCreated SystemTime="2016-05-15T03:49:11.911763200Z" />
<EventRecordID>768962</EventRecordID>
<Correlation />
<Execution ProcessID="4" ThreadID="5504" />
<Channel>Security</Channel>
<Computer>XXXXX</Computer>
<Security />
</System>
<EventData>
<Data Name="SubjectUserSid">S-1-5-18</Data>
<Data Name="SubjectUserName">XXXXX$</Data>
<Data Name="SubjectDomainName">WORKGROUP</Data>
<Data Name="SubjectLogonId">0x3e7</Data>
<Data Name="PreviousTime">2016-05-15T03:49:11.912217700Z</Data>
<Data Name="NewTime">2016-05-15T03:49:11.912000000Z</Data>
<Data Name="ProcessId">0x34c</Data>
<Data Name="ProcessName">C:\Program Files\SageTV\SageTV\CAM\oscam.exe</Data>
</EventData>
</Event>
__________________
SAGE 9 64bit, Ryzen 5 2600, Windows 10, 8GB Memory, TBS 6985, 5 x HD200, 2 x HD300, HD100, Fire TV Cube
Reply With Quote
  #436  
Old 05-14-2016, 10:37 PM
JREkiwi's Avatar
JREkiwi JREkiwi is offline
Sage Icon
 
Join Date: Jan 2005
Location: Auckland, New Zealand
Posts: 2,132
Looks like it was a change that came in here in build 9832

http://www.streamboard.tv/oscam/changeset/9832

Appears the rational is that you don't want the time changing while OsCAM is doing it's stuff as that throws out ECM timing

John
Reply With Quote
  #437  
Old 05-15-2016, 11:27 PM
alland's Avatar
alland alland is offline
Sage User
 
Join Date: Aug 2008
Location: New Zealand
Posts: 44
Time change is also trucated

John

Thanks, I also noticed that the system times which are changed are truncated to 3 decimal places.For example

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.506977400Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.507010300Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.507078000Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.507132100Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

.....

Previous Time: ‎2016‎-‎05‎-‎16T05:02:47.832816100Z
New Time: ‎2016‎-‎05‎-‎16T05:02:47.832000000Z

I will suppress this event ID in the meantime to avoid the overhead of writing log entries.
__________________
SAGE 9 64bit, Ryzen 5 2600, Windows 10, 8GB Memory, TBS 6985, 5 x HD200, 2 x HD300, HD100, Fire TV Cube
Reply With Quote
  #438  
Old 05-16-2016, 11:38 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by JREkiwi View Post
Looks like it was a change that came in here in build 9832

http://www.streamboard.tv/oscam/changeset/9832

Appears the rational is that you don't want the time changing while OsCAM is doing it's stuff as that throws out ECM timing

John
Thank you John for finding this. Don't have much time to look into issues these days

Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #439  
Old 05-16-2016, 11:41 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by alland View Post
John

Thanks, I also noticed that the system times which are changed are truncated to 3 decimal places.For example

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.506977400Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.507010300Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.507078000Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

Previous Time: ‎2016‎-‎05‎-‎16T05:05:38.507132100Z
New Time: ‎2016‎-‎05‎-‎16T05:05:38.507000000Z

.....

Previous Time: ‎2016‎-‎05‎-‎16T05:02:47.832816100Z
New Time: ‎2016‎-‎05‎-‎16T05:02:47.832000000Z

I will suppress this event ID in the meantime to avoid the overhead of writing log entries.
Linux and Windows have different time resolution. When compiling for Windows is Cygwin runtime that does its best to match the two environment...

Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #440  
Old 05-16-2016, 11:44 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by alland View Post
Eddy

My setup has been running relatively stable for a while. After a blue screen last night I had a nose around the Windows event logs.

I found lots of entries in the security log saying that OSCAM had been changing the system time. Any ideas why ?

Running on Win 10.

Log Name: Security
Source: Microsoft-Windows-Security-Auditing
Date: 15/05/2016 3:49:11 PM
Event ID: 4616
Task Category: Security State Change
Level: Information
Keywords: Audit Success
User: N/A
Computer: XXXXX
Description:
The system time was changed.

Subject:
Security ID: SYSTEM
Account Name: XXXXX
Account Domain: WORKGROUP
Logon ID: 0x3E7

Process Information:
Process ID: 0x34c
Name: C:\Program Files\SageTV\SageTV\CAM\oscam.exe

Previous Time: ‎2016‎-‎05‎-‎15T03:49:11.912217700Z
New Time: ‎2016‎-‎05‎-‎15T03:49:11.912000000Z

This event is generated when the system time is changed. It is normal for the Windows Time Service, which runs with System privilege, to change the system time on a regular basis. Other system time changes may be indicative of attempts to tamper with the computer.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
<EventID>4616</EventID>
<Version>1</Version>
<Level>0</Level>
<Task>12288</Task>
<Opcode>0</Opcode>
<Keywords>0x8020000000000000</Keywords>
<TimeCreated SystemTime="2016-05-15T03:49:11.911763200Z" />
<EventRecordID>768962</EventRecordID>
<Correlation />
<Execution ProcessID="4" ThreadID="5504" />
<Channel>Security</Channel>
<Computer>XXXXX</Computer>
<Security />
</System>
<EventData>
<Data Name="SubjectUserSid">S-1-5-18</Data>
<Data Name="SubjectUserName">XXXXX$</Data>
<Data Name="SubjectDomainName">WORKGROUP</Data>
<Data Name="SubjectLogonId">0x3e7</Data>
<Data Name="PreviousTime">2016-05-15T03:49:11.912217700Z</Data>
<Data Name="NewTime">2016-05-15T03:49:11.912000000Z</Data>
<Data Name="ProcessId">0x34c</Data>
<Data Name="ProcessName">C:\Program Files\SageTV\SageTV\CAM\oscam.exe</Data>
</EventData>
</Event>
As a workaround you could possibly try to run the OsCAM instance that deals with the card reader on a Linux box if you have one available like an RPi and the second instance running on Windows as normal.

I run a similar setup and don't have this issue...

Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
Reply

Tags
decryption, dvb, dvblogic, oscam, smartcard


Currently Active Users Viewing This Thread: 3 (0 members and 3 guests)
 

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Plugin request for SageTV Windows Client: Autofrequency plugin mkanet SageTV v7 Customizations 3 11-12-2011 09:33 AM
uPnP Client Plugin texneus SageTV v7 Customizations 0 04-03-2011 09:10 PM
Installing Client Plugin on Server ddaggett1 Sage My Movies 4 09-03-2010 11:39 AM
movie ripped to HD with dvd decrypter should skip intros right? big boi SageTV Software 12 03-25-2005 08:55 PM
DVD DeCrypter best format for SAGETV chrispy General Discussion 8 01-05-2005 01:39 PM


All times are GMT -6. The time now is 03:20 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.