|
Hardware Support Discussions related to using various hardware setups with SageTV products. Anything relating to capture cards, remotes, infrared receivers/transmitters, system compatibility or other hardware related problems or suggestions should be posted here. |
|
Thread Tools | Search this Thread | Display Modes |
#2101
|
||||
|
||||
Quote:
I hope someone can get you the file or post it here.. |
#2102
|
|||
|
|||
Looking into it. Will update when the site is back.
|
#2103
|
|||
|
|||
Site is back up.
|
#2104
|
||||
|
||||
Once again, babgvant came through like a ROCK STAR! The patch is tiny, takes seconds to download and apply, and totally fixed the problem.
I can't express my gratitude adequately! |
#2105
|
|||
|
|||
Quote:
Steve
__________________
Steve G |
#2106
|
||||
|
||||
No results from "Scan"
This is what I get for not leaving well enough alone, but...
I am trying to add a HDHR Prime on my system (Sage 7.1.9, Java 1.8.0_40, 2 HDHRs for OTA, HD-PVR/Comcast cable box). The Comcast CableCARD is paired, HDHR software installed, and I am able to view channels using VLC or HDHR View. I tried PrimeNetEncoder with no success and thought I would try SageDCT since it looks a bit more user friendly. SageDCT 2.6.0.0 is installed, when I click Scan on the Discover tab nothing happens. The log files show that the scan was completed, but no tuners are shown and the "Generate Assignments" button stays grayed out. Within SageTV I can add the Prime Tuners, but when I try to watch any of the CableCARD stations I get a "No Signal" message . As far as I can tell UPNP is enabled in Windows and on my router. FWIW, the HDHR Prime is listed in the Verbose logs. In the HDHR Setup software should the Source Type for the Prime be set as a CableCARD or Digital Cable? I've read both in various threads. Quote:
Brian
__________________
Servers: unRAID 11TB [for media and files] | SageTV [Win10 Pro64, ASRock H77 Pro4-M, Core i3-3220T, 16GB RAM, 120GB System SSD, HD Plex H5.S Case] | Sources: 2 x Silicon Dust HDHomeRun | Silicon Dust HDHomeRun Prime Clients: 4 x HD-300 WTB: HD-300 IR Eye |
#2107
|
||||
|
||||
Regarding Andy's instructions, what's the status of your Windows Firewall?
http://babgvant.com/files/folders/li...ntry21867.aspx |
#2108
|
||||
|
||||
Quote:
__________________
Servers: unRAID 11TB [for media and files] | SageTV [Win10 Pro64, ASRock H77 Pro4-M, Core i3-3220T, 16GB RAM, 120GB System SSD, HD Plex H5.S Case] | Sources: 2 x Silicon Dust HDHomeRun | Silicon Dust HDHomeRun Prime Clients: 4 x HD-300 WTB: HD-300 IR Eye |
#2109
|
|||
|
|||
Batch file to restart SageDCT/SageTV/HDHRP ONLY when SageTV is not recording
A long time ago, nyplayer posted a batch file that could be run from task scheduler to restart SageDCT, SageTV, or the PC (or run any other command) only when SageTV was not recording.
Here's the link to that batch file: http://forums.sagetv.com/forums/show...20&postcount=4 I need to get something like that working so I can run a command to restart the HDHomeRun Prime tuners themselves, using this command: "C:\Program Files\Silicondust\HDHomeRun\hdhomerun_config.exe" <HDHRP Device ID> set /sys/restart self The problem is that I cannot get this batch file to work. The hangup appears to be that nothing is returned from the wget command that accesses the SageTV http 8080 port (wget.exe --tries=1 --directory-prefix="%temppath%" "http://userassword@127.0.0.1:8080/sage/Home"). I'm using sage:frey as the userassword. I saw reference in another post that a user was able to directly access http://127.0.0.1:8080/sage/Home in a web browser, getting a login/password request in return. But when I attempt that, I get an HTTP 404 page not found error. Is there something I need to do in sage.properties or Detailed Setup to enable that web interface? I've looked but haven't found anything. Any other hints to getting that batch file to work, or any other similar batch routines that folks have used?
__________________
Windows 10 Home 64-bit, i5-2500K, 8GB RAM, 2TB and 4TB SATA HDD's SageTV v9.1.2.662, SageTV7.xml STV, Java v1.8.0_121 Server operating headless with 3 HD300 extenders as clients Two HDHomeRun Primes (6 tuners) with 20170512beta1 firmware Comcast cable TV, two cablecards in HDHRP's OpenDCT 0.5.28 network encoder |
#2110
|
||||
|
||||
Quote:
__________________
Server: Ryzen 2400G with integrated graphics, ASRock X470 Taichi Motherboard, HDMI output to Vizio 1080p LCD, Win10-64Bit (Professional), 16GB RAM Capture Devices (7 tuners): Colossus (x1), HDHR Prime (x2),USBUIRT (multi-zone) Source: Comcast/Xfinity X1 Cable Primary Client: Server Other Clients: (1) HD200, (1) HD300 Retired Equipment: MediaMVP, PVR150 (x2), PVR150MCE, HDHR, HVR-2250, HD-PVR |
#2111
|
|||
|
|||
Quote:
Code:
CD /d "%~dp0" :loop Rem ***** Set in minutes time between each check below ***** set timebetweenchecks=5 Rem ***** Set in minutes time between each check above **** set temppath=%~dp0 set temppath=%temppath:~0,-1% if not exist "C:\temp" md "C:\temp" if exist "%~dp0CheckWGETSettings.txt" DEL "%~dp0CheckWGETSettings.txt" if exist "%~dp0nothingrecording.txt" del "%~dp0nothingrecording.txt" if exist "%~dp0somethingrecording.txt" del "%~dp0somethingrecording.txt" set nothingrecording=1 del ""%~dp0home" Rem ***** Change user, password and port below ***** wget.exe --tries=1 --directory-prefix="%temppath%" "http://user:password@127.0.0.1:8080/sage/Home" Rem ***** Change user, password and port Above ***** set wgeterror=%ERRORLEVEL% if %wgeterror% NEQ 0 echo "Check User and PWD"> "%~dp0CheckWGETSettings.txt" if %wgeterror% NEQ 0 exit 1 findstr /I /C:"MediaFileId=" ""%~dp0home" set isrecording=%ERRORLEVEL% echo %isrecording% if %isrecording% EQU 0 GOTO recording @ECHO OFF echo "Nothing recording">"%~dp0nothingrecording.txt" Rem *** Enter Commands below *************************************************************************************************************************************************** net stop SAGEDCT "c:\Program Files\Silicondust\HDHomeRun\hdhomerun_config.exe" 131A192A set /sys/restart self net start SAGEDCT Rem *** Enter Commands Above ************************************************************************************************************************************************* exit :recording if %isrecording% EQU 0 echo "Something recording">"%~dp0somethingrecording.txt" set /A timebetweenchecks=%timebetweenchecks%*60 if exist "%~dp0somethingrecording.txt" CLS @ECHO OFF color 6 color ce Title "SageTV In use Will Keep Checking ......" @ECHO ON Rem **** SageTV In use Will Keep Checking **** @ECHO OFF if exist "%~dp0somethingrecording.txt" timeout /T %timebetweenchecks% /nobreak if exist "%~dp0somethingrecording.txt" GOTO loop exit |
#2112
|
|||
|
|||
That's what I figured, but I don't know which plugin or which property. It looks like there are potentially several different elements of SageTV or associated plugins that might listen on 8080.
__________________
Windows 10 Home 64-bit, i5-2500K, 8GB RAM, 2TB and 4TB SATA HDD's SageTV v9.1.2.662, SageTV7.xml STV, Java v1.8.0_121 Server operating headless with 3 HD300 extenders as clients Two HDHomeRun Primes (6 tuners) with 20170512beta1 firmware Comcast cable TV, two cablecards in HDHRP's OpenDCT 0.5.28 network encoder |
#2113
|
|||
|
|||
Quote:
What ever port and user is in the "Jetty Web Server" is what the batchfile must use. Last edited by nyplayer; 12-03-2015 at 12:06 PM. |
#2114
|
|||
|
|||
Quote:
__________________
Windows 10 Home 64-bit, i5-2500K, 8GB RAM, 2TB and 4TB SATA HDD's SageTV v9.1.2.662, SageTV7.xml STV, Java v1.8.0_121 Server operating headless with 3 HD300 extenders as clients Two HDHomeRun Primes (6 tuners) with 20170512beta1 firmware Comcast cable TV, two cablecards in HDHRP's OpenDCT 0.5.28 network encoder |
#2115
|
|||
|
|||
All have any of you had your channels converted from mpeg2 to h.264(mpeg4) yet? Comcast in my area has converted a couple of channels and now it seems like these channels are not working with sage dct.
|
#2116
|
|||
|
|||
How would we know?
__________________
Windows 10 Home 64-bit, i5-2500K, 8GB RAM, 2TB and 4TB SATA HDD's SageTV v9.1.2.662, SageTV7.xml STV, Java v1.8.0_121 Server operating headless with 3 HD300 extenders as clients Two HDHomeRun Primes (6 tuners) with 20170512beta1 firmware Comcast cable TV, two cablecards in HDHRP's OpenDCT 0.5.28 network encoder |
#2117
|
||||
|
||||
Download "MediaInfo" and check the file attributes with it.
|
#2118
|
|||
|
|||
What's strange is that i can go into the sage dct service control app and from there I can send a command to record one of my h264 channels (in this case cnn hd) to a file. The file is created and from there I can see it's an h264 file and it plays fine in vlc. But somehow the sage doesn't interface properly with these h264 channel captures.
|
#2119
|
||||
|
||||
I wonder if this has something to do with the "dump" versus "ffmpeg" method in the SageDCT settings. Which method are you using?
|
#2120
|
|||
|
|||
I use ffmpeg. Are you getting h264 channels? Which method do you use?
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
HDHomeRun PRIME CableCARD does work with premium channels | Homebuilder | Hardware Support | 1 | 05-17-2011 08:08 AM |
HDHR Prime Available For Pre-Order on Amazon, $207.20 USD (or not) | mayamaniac | General Discussion | 20 | 05-14-2011 04:15 PM |
Let's add support for the new silcon dust HDHR Prime (copy freely channels) | Gustovier | Hardware Support | 30 | 05-05-2011 08:32 AM |
HDHomerun Prime? | cenwesi | Hardware Support | 26 | 04-19-2011 05:40 PM |
HDHomeRun Prime with CableCARD might work with MythTV after all | KJake | The SageTV Community | 4 | 07-22-2010 09:10 AM |