SageTV Community  

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

Notices

SageTV Github Development Discussion related to SageTV Open Source Development. Use this forum for development topics about the Open Source versions of SageTV, hosted on Github.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 03-24-2016, 06:07 PM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
Cross-platform full client ideas

So, I'm thinking that the current miniclient only restriction on linux/mac needs to be solved at some point. In that vein, i started looking at media playback systems, and came across MPV. It appears to be a carry-on from mplayer2 and MPlayer, its open source, and seems pretty easy to plug into a different app (has a message based C API).

Does anyone have any experience with this? Opinions?
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
  #2  
Old 03-24-2016, 06:29 PM
stuckless's Avatar
stuckless stuckless is offline
SageTVaholic
 
Join Date: Oct 2007
Location: London, Ontario, Canada
Posts: 9,713
I'm guessing by "full" client you mean a SageTV client, like the windows client (there is no full client for linux or mac).

I've been thinking about creating a cross platform "miniclient" using the Android sources (much of which is portable for a desktop) and using vlc4j for the media engine and javafx for the UI. I'm pretty sure vlc4j runs on all 3 major platforms, and it support creating custom datasources (from java) so, it would be fairly straight forward to integrate with sagetv miniclient apis.

But again... All that is around a miniclient architecture which is very different than creating a full client architecture.

But either way, yeah, I think we need cross platform solution.
Reply With Quote
  #3  
Old 03-24-2016, 07:11 PM
SageWizdom SageWizdom is offline
Sage Advanced User
 
Join Date: Oct 2013
Location: https://github.com/SageWizdom/SageConnect
Posts: 216
Not that I can Java if my life depended on it, but I'm available to test, write docs, cheer on the effort. If the conversation is cross platform, a thought I would offer is ... does this include cross architecture from a planning perspective? A full client as a distro for a Raspberry Pi or other micro P would be amazing.

I know there was an earlier conversation about an RPI as a basic server. I like the idea that there is something simple enough that I could get a couple boxes, some know components and easy set up my relatives house without being 24/7 phone support (aka. it just works).
__________________
Server: Centos Server 14.04 LTS - 64Bit, VM in XenServer, 2 cores of a Intel i7, 2-4 GB Ram, 8 GB system Disk, 1.8 TB storage, SageTV V9.0.4.232, HDHR Prime x 1

Clients: PC Client x 1, HD-300 x 1, AppleTV x 2, WebClient (phone/tablet) x 3
Reply With Quote
  #4  
Old 03-25-2016, 11:21 AM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
One of the other things to consider in this is that ideally you have a layer of integration between the UI rendering system and the media player. The reason for this is so that you can blend graphics on top of the video. On PCs, this has always been done using the 3D rendering system...which means the UI needs to have integration with a 3D rendering system and then the media player needs to render its output to a 3D texture (or to a block of shared memory...which then uses IPC or an in-process mechanism depending upon architecture so then the graphics system can copy the data into a texture) and then composite it in the rendering stage. That's why we added a special vo_stv output plugin to MPlayer which does exactly that...renders the video to a region of shared memory, uses system level mutexes for signaling to the UI renderer, and then the UI system copies that into a texture for compositing.

This little 'feature' of compositing the UI with video has been a HUGE pile of work over the history of SageTV in order to ensure that always works right.

And you *should* be able to run a full SageTV client on Linux already...I haven't done it in a long time; but I know at one point we had that working with the OpenGLRenderer and MPlayer. That's why there's a LinuxMPlayerPlugin in the SageTV core (even though it's used on Windows as well). Although after looking at the code some more...the JOGLSageRenderer is no longer there (I'm sure I can find it though)...and the LinuxMPlayerPlugin looks like it was using overlay for video compositing w/ color key.

OK...well after looking at that further...it's really in a far off state from something that would still work. The OpenGL implementation we used at one point relied on other components which we abandoned long ago.

Something I always wish I had done was make the rendering system and media players pluggable wrt miniclient vs. full client...in theory it's not all that complicated to do it; but it would take a lot of work.
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #5  
Old 03-25-2016, 01:05 PM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
I prefer a miniclient to a full client since it greatly simplifies things like plugins, fanart and configuration which (usually) have to be done separately on each full client. It is much easier to have everything based off of the server as is the case with extenders and PS.

But the problem with PS has always been the shortcomings that don't allow it to play some times of video, like 1080i h.264 files if I remember correctly. And that is the bulk of recordings for me as HD-PVRs are my main tuners. If that is fixed then I would prefer to deploy PS/miniclient rather than full clients, even for full Windows PCs.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #6  
Old 03-25-2016, 02:29 PM
nyplayer nyplayer is offline
SageTVaholic
 
Join Date: Sep 2005
Posts: 4,997
Quote:
Originally Posted by wayner View Post
I prefer a miniclient to a full client since it greatly simplifies things like plugins, fanart and configuration which (usually) have to be done separately on each full client. It is much easier to have everything based off of the server as is the case with extenders and PS.

But the problem with PS has always been the shortcomings that don't allow it to play some times of video, like 1080i h.264 files if I remember correctly. And that is the bulk of recordings for me as HD-PVRs are my main tuners. If that is fixed then I would prefer to deploy PS/miniclient rather than full clients, even for full Windows PCs.
The problem with Miniclients as opposed to full clients is the Java Heap.
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct.
Reply With Quote
  #7  
Old 03-25-2016, 02:31 PM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
Quote:
Originally Posted by nyplayer View Post
The problem with Miniclients as opposed to full clients is the Java Heap.
I know as I have 9 extenders but can't run more than about 3 simultaneously. I am hoping that soon someone will get the 64 bit Java working on Windows in V9 which should solve that problem.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #8  
Old 03-25-2016, 02:35 PM
stanger89's Avatar
stanger89 stanger89 is offline
SageTVaholic
 
Join Date: May 2003
Location: Marion, IA
Posts: 15,188
Quote:
Originally Posted by wayner View Post
I prefer a miniclient to a full client since it greatly simplifies things like plugins, fanart and configuration which (usually) have to be done separately on each full client. It is much easier to have everything based off of the server as is the case with extenders and PS.

But the problem with PS has always been the shortcomings that don't allow it to play some times of video, like 1080i h.264 files if I remember correctly. And that is the bulk of recordings for me as HD-PVRs are my main tuners. If that is fixed then I would prefer to deploy PS/miniclient rather than full clients, even for full Windows PCs.
Agreed, I think if "placeshifter" were improved to support better decoders/renders that would be a great solution, specifically for the plugins/etc.

Maybe I'm misremembering, or out of date, but I've always had the impression/experience that placeshifter video quality just wasn't there compared to Client or Extenders, especially on Windows. A Windows version of Placeshifter that uses LAV and madVR would be awesome...

Or, Kodi actually has good video quality (not so sure about deinterlacing) and it's cross platform. If Placeshifter could match that, an OpenELEC like distro with Placeshifter would be sweet.

Quote:
Originally Posted by nyplayer View Post
The problem with Miniclients as opposed to full clients is the Java Heap.
Though with a 64 bit server that's not really a problem I believe.
Reply With Quote
  #9  
Old 03-25-2016, 05:05 PM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
Quote:
Originally Posted by Narflex View Post
One of the other things to consider in this is that ideally you have a layer of integration between the UI rendering system and the media player. The reason for this is so that you can blend graphics on top of the video. On PCs, this has always been done using the 3D rendering system...which means the UI needs to have integration with a 3D rendering system and then the media player needs to render its output to a 3D texture (or to a block of shared memory...which then uses IPC or an in-process mechanism depending upon architecture so then the graphics system can copy the data into a texture) and then composite it in the rendering stage. That's why we added a special vo_stv output plugin to MPlayer which does exactly that...renders the video to a region of shared memory, uses system level mutexes for signaling to the UI renderer, and then the UI system copies that into a texture for compositing.

This little 'feature' of compositing the UI with video has been a HUGE pile of work over the history of SageTV in order to ensure that always works right.

And you *should* be able to run a full SageTV client on Linux already...I haven't done it in a long time; but I know at one point we had that working with the OpenGLRenderer and MPlayer. That's why there's a LinuxMPlayerPlugin in the SageTV core (even though it's used on Windows as well). Although after looking at the code some more...the JOGLSageRenderer is no longer there (I'm sure I can find it though)...and the LinuxMPlayerPlugin looks like it was using overlay for video compositing w/ color key.

OK...well after looking at that further...it's really in a far off state from something that would still work. The OpenGL implementation we used at one point relied on other components which we abandoned long ago.

Something I always wish I had done was make the rendering system and media players pluggable wrt miniclient vs. full client...in theory it's not all that complicated to do it; but it would take a lot of work.
That is sort of what interested me in MPV, as it seems to already have a limited UI layer system, and, it being open source, that could possibly be 'added to' in a fork for the client. Of course, I don't know a whole lot about it's full capabilities, as I'm only just looking into it - fishing for more details and opinions was the purpose of this thread.

I also realize that miniclients are less of a limitation now with the 64-bit server in the winds, and UI performance on them for local is much better than it was many years ago with better LAN performance.

That said, I do have a long term reasoning for this. I would really like to have an offline sync capability to a remote client. Already, a full client has almost everything it needs to work offline. I can envision being able to set sync rules, or manually flag files for synching - these could be extensions of the current Convert function - that would copy or convert files to storage local to the client. The client, then, would have synced flags and local url's for the files synced on that particular client - this way, when a client goes offline from the server, it would still be able to navigate the media, and hopefully filter returns down to just locally synced content, and allow playback of such.

Like I said, long-term - and unfortunately, I can software architect a hell of a lot better than I can actually code - so this ultimately ends up being pie in the sky wishes for myself - in hopes that other who can actually help make this happen agree with it's use case.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
  #10  
Old 03-25-2016, 06:06 PM
jusjoken jusjoken is offline
SageTVaholic
 
Join Date: Dec 2005
Location: Strathmore, AB
Posts: 2,727
A thought....

Is the code for the standalone mode of the HD300 part of the open source and if so could it be leveraged to make a miniclient that could also work standalone...or is that one off code specific to the HD300?
__________________
If you wish to see what I am up to and support my efforts visit my Patreon page
Reply With Quote
  #11  
Old 03-25-2016, 07:27 PM
SageWizdom SageWizdom is offline
Sage Advanced User
 
Join Date: Oct 2013
Location: https://github.com/SageWizdom/SageConnect
Posts: 216
Quote:
Originally Posted by wayner View Post
I prefer a miniclient to a full client since it greatly simplifies things like plugins, fanart and configuration which (usually) have to be done separately on each full client. It is much easier to have everything based off of the server as is the case with extenders and PS.
I like the idea of simplified O&M in the form of fewer code bases / systems to support. I also like the idea of a single centralized place to build and test and ensure functionality.


Quote:
Originally Posted by Fuzzy View Post
That said, I do have a long term reasoning for this. I would really like to have an offline sync capability to a remote client. Already, a full client has almost everything it needs to work offline. I can envision being able to set sync rules, or manually flag files for synching - these could be extensions of the current Convert function - that would copy or convert files to storage local to the client. The client, then, would have synced flags and local url's for the files synced on that particular client - this way, when a client goes offline from the server, it would still be able to navigate the media, and hopefully filter returns down to just locally synced content, and allow playback of such.
I also greatly want this. Offline, sync, decoding at the local machine to provide the best quality.

My question is this... Instead of a server, miniclient and placeshifter, why not a central server, a mini local server and place shifter?

The server already...
  • Runs on all the OS's and platforms we're talking about.
  • Has its own database
  • Works with all the plugins, fan/art, etc
  • Is missing database synchronization code... which is already in the client

Given you would have to push /stream all the media anyway, does it matter if its the server code base versus a mini client code base? I think this is how the Linux servers/clients always kinda worked (only not replication).

I imagine some sort of peer to peer server arrangement where one may have the responsibility to record, and maybe access a video repository, but then anyone else could stream from/to anyone else. (v10)
__________________
Server: Centos Server 14.04 LTS - 64Bit, VM in XenServer, 2 cores of a Intel i7, 2-4 GB Ram, 8 GB system Disk, 1.8 TB storage, SageTV V9.0.4.232, HDHR Prime x 1

Clients: PC Client x 1, HD-300 x 1, AppleTV x 2, WebClient (phone/tablet) x 3
Reply With Quote
  #12  
Old 03-26-2016, 11:57 AM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
Quote:
Originally Posted by SageWizdom View Post
I like the idea of simplified O&M in the form of fewer code bases / systems to support. I also like the idea of a single centralized place to build and test and ensure functionality.




I also greatly want this. Offline, sync, decoding at the local machine to provide the best quality.

My question is this... Instead of a server, miniclient and placeshifter, why not a central server, a mini local server and place shifter?

The server already...
  • Runs on all the OS's and platforms we're talking about.
  • Has its own database
  • Works with all the plugins, fan/art, etc
  • Is missing database synchronization code... which is already in the client

Given you would have to push /stream all the media anyway, does it matter if its the server code base versus a mini client code base? I think this is how the Linux servers/clients always kinda worked (only not replication).

I imagine some sort of peer to peer server arrangement where one may have the responsibility to record, and maybe access a video repository, but then anyone else could stream from/to anyone else. (v10)
A lot of that is all in sage.jar (which is used for both server and client). Already, if you shutdown the server service, the client will continue to function in many ways without it. You can still navigate videos, etc - just won't play them (even if they are accessible). That, and the local working copy of the database isn't stored when the client shuts down, so it won't work at all starting back up again without a server. This is really only a couple small things to be tweaked to allow offline playback - and a few more things to make it more 'aware' of it, and support local storage. This is the easy part, if we're going to stick to just the windows client - that's why I was wishing for a full client to move to more platforms though.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
  #13  
Old 03-26-2016, 07:58 PM
SageWizdom SageWizdom is offline
Sage Advanced User
 
Join Date: Oct 2013
Location: https://github.com/SageWizdom/SageConnect
Posts: 216
Maybe I said it badly, but I was technically proposing dropping the full client all together and always running the two separate pieces (server and placeshifter). Alternatively, does everything become a full client. From an evolution perspective, there are three very similar pieces that all require support, what path forward provides the best experience, but simplifies the suport plan?
__________________
Server: Centos Server 14.04 LTS - 64Bit, VM in XenServer, 2 cores of a Intel i7, 2-4 GB Ram, 8 GB system Disk, 1.8 TB storage, SageTV V9.0.4.232, HDHR Prime x 1

Clients: PC Client x 1, HD-300 x 1, AppleTV x 2, WebClient (phone/tablet) x 3
Reply With Quote
  #14  
Old 03-27-2016, 08:38 AM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
Quote:
Originally Posted by SageWizdom View Post
Maybe I said it badly, but I was technically proposing dropping the full client all together and always running the two separate pieces (server and placeshifter). Alternatively, does everything become a full client. From an evolution perspective, there are three very similar pieces that all require support, what path forward provides the best experience, but simplifies the suport plan?
There'd be a significant performance advantage to full clients being able to be used remotely, however, as the UI would be rendered and such locally, instead of back at the server. Really, the only reason miniclients exist is to run on extremely limited hardware, which really isn't even manufactured anymore (MediaMVP, I believe, was the first miniclient). Any hardware available now is ore than capable of rendering the UI and managing the database locally.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
  #15  
Old 03-27-2016, 08:50 AM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
Don't you have to do a complete config on full clients, including figuring out which plugins are server plugins and which are client plugins, load all of those plugins on the client and then configure from scratch?

I always found that a major pain in the butt, especially prior to being able to export-import configs that came with Gemstone.

One feature that would be great would be a "clone from server" function where you could clone all of the plugins and config from the server on to the full client.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #16  
Old 03-27-2016, 09:31 AM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
Quote:
Originally Posted by wayner View Post
Don't you have to do a complete config on full clients, including figuring out which plugins are server plugins and which are client plugins, load all of those plugins on the client and then configure from scratch?

I always found that a major pain in the butt, especially prior to being able to export-import configs that came with Gemstone.

One feature that would be great would be a "clone from server" function where you could clone all of the plugins and config from the server on to the full client.
The ability to duplicate a configuration from one client to another (or from server to client) is something that was discussed many years ago, shortly after v7, and the plugin system, was released, and there were many who wanted to do so, but it never really came about, primarily because the rapid deployment of HD300 extenders reduced the number of full clients out there significantly, so there really wasn't as much of a market for it (those that kept to the clients, typically were the users least annoyed by configuration steps). I, more recently, started to do a bit of a proof of concept for actually using plugin dependencies as a way to duplicate the plugin download/installs - I essentially parsed through all the plugins on a client, and it created a single plugin manifest that had all installed plugins as dependencies. Then, installing that one plugin brought everything else in. This, of course, could also be done via a more programmatic process, but writing an out of sage utility is easier for me than an in-program one. I don't even have the proof of concept anymore, but it really is not something that would be difficult to create if there is interest out there.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
  #17  
Old 03-27-2016, 12:54 PM
panteragstk's Avatar
panteragstk panteragstk is offline
SageTVaholic
 
Join Date: Oct 2008
Location: New Braunfels, TX
Posts: 3,312
Quote:
Originally Posted by stanger89 View Post
A Windows version of Placeshifter that uses LAV and madVR would be awesome...
This is what I've been wanting for a long time. Would prevent me from having to use MPC-HC for movie playback.

I do know that the new Plex Media Player is built on MPV and from what I've seen it's very good.
__________________
SageTV Server: unRAID Docker v9, S2600CPJ, Norco 24 hot swap bay case, 2x Xeon 2670, 64 GB DDR3, 3x Colossus for DirecTV, HDHR for OTA
Living room: nVidia Shield TV, Sage Mini Client, 65" Panasonic VT60
Bedroom: Xiomi Mi Box, Sage Mini Client, 42" Panasonic PZ800u
Theater: nVidia Shield TV, mini client, Plex for movies, 120" screen. Mitsubishi HC4000. Denon X4300H. 7.4.4 speaker setup.
Reply With Quote
  #18  
Old 03-27-2016, 06:51 PM
stanger89's Avatar
stanger89 stanger89 is offline
SageTVaholic
 
Join Date: May 2003
Location: Marion, IA
Posts: 15,188
MPV sounds interesting.
Reply With Quote
  #19  
Old 03-28-2016, 03:58 PM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
Modifying the placeshifter client to also have the same full DirectShow playback capabilities as the full client (when you're not transcoding placeshifted video) isn't all that hard to do actually. The reason we never did it was because it didn't seem like that problem needed to be solved...if you're on your LAN and want good Windows playback; then use the full client. If you're remote; then you likely need stuff transcoded due to bandwidth limitations...so use the Placeshifter (and video quality is already compromised due to transcoding, so not much point in going all out with the media player).

But if people really have an interest in making the Windows Placeshifter playback video in high quality on a LAN like the full client does...then go for it...I can provide all the advice you need to do it. The main thing missing is that when you change the decoder settings and such in the UI; those are done in the properties on the server...which the placeshifter client has no access to...but it likely wouldn't be that hard to include a mechanism that solves that problem (where the placeshifter client can query the server for config settings).
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #20  
Old 03-28-2016, 08:26 PM
Taddeusz Taddeusz is offline
SageTVaholic
 
Join Date: Nov 2004
Location: Yukon, OK
Posts: 3,919
One of the problems I've always had with Placeshifter is that at least on Windows it doesn't (always?) do colorspace conversion correctly. In other words it doesn't make NTSC or ATSC black RGB black and visa versa for white. You end up with a washed out video. At least that happens when doing remote playback. It might be better when playing locally. But I'm not usually using it locally.
__________________
Server: i5 8400, ASUS Prime H370M-Plus/CSM, 16GB RAM, 15TB drive array + 500GB cache, 2 HDHR's, SageTV 9, unRAID 6.6.3
Client 1: HD300 (latest FW), HDMI to an Insignia 65" 1080p LCD and optical SPDIF to a Sony Receiver
Client 2: HD200 (latest FW), HDMI to an Insignia NS-LCD42HD-09 1080p LCD
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 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
Suddenly getting frequent disconnections on client. Any ideas? silkshadow SageTV Software 8 10-29-2013 12:51 AM
Interesting potential client platform drewg General Discussion 3 09-06-2013 12:38 PM
Cross Link Metadata Issue cmaloney SageTV Beta Test Software 11 08-10-2010 08:46 PM
Comskip works on server, not on client. Ideas? EdwardN SageTV Customizations 21 05-07-2006 06:43 PM
Using Full SageTV as Client backsix SageTV Software 8 05-17-2005 10:32 AM


All times are GMT -6. The time now is 08:09 PM.


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