|
SageTV Customizations This forums is for discussing and sharing user-created modifications for the SageTV application created by using the SageTV Studio or through the use of external plugins. Use this forum to discuss customizations for SageTV version 6 and earlier, or for the SageTV3 UI. |
|
Thread Tools | Search this Thread | Display Modes |
#1041
|
||||
|
||||
Here's the log, anything going to 192.168.1.119 is pointing at the new client.
|
#1042
|
|||
|
|||
Yeah, client 119 accepts a job and immediately reports it failing. This is usually because the exe you're telling the client to run is invalid. I'm surprised there is no output from the jobs telling you the exact problem. But that's the issue - every job client 119 accepts is immediately marked as failed so that's where you want to be looking. You might want to wrap the exe you're calling in a batch file and redirect the output to a file so you can see exactly what's going on. Usually it's a path name issue or something.
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... |
#1043
|
||||
|
||||
Quote:
log entry: "C:\Program Files\comskip\comskip.exe" "G:\Recorded TV\GreysAnatomy-ShocktotheSystem-3189565-0.ts" Opening G:\Recorded TV\GreysAnatomy-ShocktotheSystem-3189565-0.ts No such file or directory - could not open file G:\Recorded TV\GreysAnatomy-ShocktotheSystem-3189565-0.ts EDIT: I do see this reference "If your recordings are in D:\tv on your server, but your client has the directory available only via UNC paths then use a MAPDIR directive on the client to remap D:\tv to the appropriate UNC path where the client can find the file.If your recordings are in D:\tv on your server, but your client has the directory available only via UNC paths then use a MAPDIR directive on the client to remap D:\tv to the appropriate UNC path where the client can find the file." But wonder as my client has a "G:" drive and sage needs it if this would mess up mapping in general? Last edited by bikesquid; 10-01-2010 at 11:11 AM. |
#1044
|
|||
|
|||
Quote:
EDIT: Or add G: as a mapped network drive on the client machine pointing to the G: on the server machine
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... Last edited by Slugger; 10-01-2010 at 11:18 AM. |
#1045
|
||||
|
||||
Tried the :MAPDIR like this:
:MAPDIR "G:\\Recorded TV" "\\\\Master-PC\\g" #which is the UNC share to that folder on that drive. "\"C:\\Program Files\\comskip\\comskip.exe\" \"%c%\"" and got this in the log: Executing command line: G:\Recorded TV \\Master-PC\g Cannot run program "G:\Recorded": CreateProcess error=2, The system cannot find the file specified |
#1046
|
|||
|
|||
In the server logs, you should see some output like:
MAPPING: G:\Recorded TV => \\Master-PC\g Does the mapping look right in your logs?
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... |
#1047
|
||||
|
||||
I think there's a syntax problem, but for the life of me I can't figure it out.
Here's the server log line that seems relevent: [ClientParser]: WARNING: Skipping unrecognized option 'MAPDIR' In the client log there's a warning message stating that there's a unrecognized ":" at the line # doing the :MAPDIR command. EDIT: I just moved the :MAPDIR command outside the comskip task, thinking that it needs to be a seperate section pre-comskip commands. Last edited by bikesquid; 10-01-2010 at 12:32 PM. |
#1048
|
|||
|
|||
Yeah, :MAPDIR is a global command, it needs to be outside any task def'n blocks. Now it's all good?
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... |
#1049
|
||||
|
||||
Quote:
I'm getting a permissions issue now but don't know why. The share has 'everyone' having full control.... the log: Executing command line: "C:\Program Files\comskip\comskip.exe" "\\Master-PC\g\NewScandinavianCooking-MackerelTheShinyBountyofSummer-3190163-0.ts" Comskip 0.80.031, made using: mpeg2dec-0.4.0 - by Michel Lespinasse <walken@zoy.org> and Aaron Holtzman Permission denied - could not open file \\Master-PC\g\NewScandinavianCooking-MackerelTheShinyBountyofSummer-3190163-0.ts |
#1050
|
|||
|
|||
You're running the task client as a service, right? If so, you need to change the account it runs as, I believe. By default services run with the LocalSystem account and that account cannot access network resources. Change the user it runs as to your user account (assuming it has permission to access the share) and it should be good to go. If that's not it, I'll have to defer to Windows experts - MS Windows networking is not my forté.
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... |
#1051
|
||||
|
||||
Quote:
OK, for all the other dysfunctional folks out there, when setting up comskip to run on a windows 7 client, accessing a windows 7 server: if using NT service version make sure service is logging in as a valid user on network - start task manager, goto services tab, select 'services' at bottom right, find the SJQTaskClient service, right click, goto properties and modify login info. use :MAPDIR at the beginning of the client config file, (outside and before the task brackets). As I have spaces,etc in my structure I used: :MAPDIR "G:\\Recorded TV" "\\\\Master-PC\\g\\Recorded TV\\" and the comskip command that works for me is: "\"C:\\Program Files\\comskip\\comskip.exe\" \"%c%\"" |
#1052
|
||||
|
||||
HD-PVR Job Transcoding Halted
Everything has been working for a while now and very well. Suddenly my hd-pvr recordings stopped transcoding.
1. SJQ sees the *.ts files 2. SJQ queues them up 3. SJQ adds them to Sage for trancoding 4. The recordings stay there with a status of Waiting... 5. All other Sage and SJQ processes continue normally. Could you give me a couple of ideas on where to look for the problem? I do not have any blackout times, SJQ adds and resolves the transcode normally, I have not changed the syntax for the Jobs in a long time. Server throws no errors, and sjq sees the job as being completed correctly without error, but the jobs stay in Waiting status and do not queue up. Thanks! |
#1053
|
|||
|
|||
Quote:
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... |
#1054
|
||||
|
||||
Slugger, after upgrading to v7 and installing the latest SJQ and SageAlert, I wanted to thank you again for your work on these great tools. I look forward to seeing SJQv4 progress.
__________________
Server: XP, SuperMicro X9SAE-V, i7 3770T, Thermalright Archon SB-E, 32GB Corsair DDR3, 2 x IBM M1015, Corsair HX1000W PSU, CoolerMaster CM Storm Stryker case Storage: 2 x Addonics 5-in-3 3.5" bays, 1 x Addonics 4-in-1 2.5" bay, 24TB Client: Windows 7 64-bit, Foxconn G9657MA-8EKRS2H, Core2Duo E6600, Zalman CNPS7500, 2GB Corsair, 320GB, HIS ATI 4650, Antec Fusion Tuners: 2 x HD-PVR (HTTP tuning), 2 x HDHR, USB-UIRT Software: SageTV 7 |
#1055
|
||||
|
||||
Problem Solved
Quote:
Thanks for the quick response anyway. Truth be told, I have not been very happy with the 6.6.2.218 transcoding from ts files. Specifically, my ability to FF play mpg's has gone away. Has anyone had success with fast forward after transcoding ts files using another program like handbrake? |
#1056
|
||||
|
||||
I am considering switching my SageTV Windows XP computer to SageTV Linux version. Will SJQ work on Linux? Or, will I need to run it from a Windows computer?
Dave |
#1057
|
|||
|
|||
I haven't done extensive testing on Linux for SJQv3, but it should work fine. The upcoming SJQv4 will work fine on Linux.
__________________
Twitter: @ddb_db Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive Capture: 2 x Colossus STB Controller: 1 x USB-UIRT Software:Java 1.7.0_71; SageTV 7.1.9 Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter Plugins: Too many to list now... |
#1058
|
|||
|
|||
I have a dumb/newb question. I am currently using comskip + comskip monitor. However, I would like to make the switch over to SJQ so I don't waste CPU rescources processing comskip on live TV or PBS. I think I have I have SJQ configured correctly, but it is showing all of the previous shows I have recorded and already run comskip on. My question is this, will SJQ run comskip on those recordings again? If so, is there any way to tell SJQ to omit the job if it already has an edl file associated with it?
__________________
Server: SageTV Media Center 7.1.19, Windows 7 Home Premium x64, Pentium Core2Duo, 4GB RAM, (1) Hauppauge HVR-2250, (1) Hauppauge HVR-1600, 1.5 TB of recording space Android MiniClient: Nvidia Shield TV (16GB) HDMI out to Samsung LN46C630 46" LCD Extender: STP-HD300, beta firmware "20110506-0", HDMI out to LG 37LD450 37" LCD |
#1059
|
|||
|
|||
Quote:
__________________
Server: WHS with 11TB of storage Clients:1) HD-200 to a Samsung 32" Slimfit CRT HDTV 2) HD-200 to a Pioneer 26" X1 LCD Tuners: 1) HD-Homerun 2) Avermedia USB ATSC Twitter: ohpleaseno |
#1060
|
||||
|
||||
I'm using live_tv=1 now as an option for Comskip, which is currently launched from the Commercial Detector plug-in. This means that the .edl file will be written to from the time it launches so if I'm watching live TV, I'm getting commercial skipping data mostly real-time.
OK, here's the question. When using live_tv=1, how do I know when Comskip is done running as a check for SJQ? The .edl file creation used to be the signal for that as it was created at the completion of Comskip. I'm trying to hold off doing any other processing, like MediaShrink, on the file while Comskip has it open because I've had several instances now where MediaShrink finishes first (higher task priority) and can't delete the file because Comskip simultaneously has hold of it. Any ideas?
__________________
Server: AMD 9600 Phenom on XP, Gigabyte GA-MA78GPM, 2GB RAM, 320+250+500 GB SATA drives, HDHomeRun Prime, HD-PVR x.5.1, Paterson serial Client/Encoder:AMD 3800+ X2, 512 MB RAM, ATI X1650 XT, nMediaPC case, Hauppauge HD-PVR, Cyberlink/ArcSoft decoders, USB-UIRT Client/Encoder: AMD 3800+ X2, 512 MB RAM, 6150 graphics, nMediaPC case, ArcSoft decoders Client: HD300, Asus Pundit P1-AH1, AMD 3800+ X2 CPU, 1 GB RAM, 6150 graphics, ArcSoft decoders Backup: Synology SageTV version: FINAL |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Sage Job Queue (SJQ) new release notifications | Slugger | Customization Announcements | 3 | 12-17-2009 09:59 AM |
Plugin: Sage Job Queue (SJQ) | Slugger | SageTV Customizations | 991 | 12-11-2009 03:52 PM |
Sage Job Queue Completed tasks problem | raffmanlt | SageTV Customizations | 2 | 08-18-2009 07:34 PM |
Comskip Monitor VS Sage Job Queue SJQ | personalt | SageTV Customizations | 6 | 03-02-2009 10:27 AM |
Plugin: SJQ v1.1.0RC1 Available - Testers Needed | Slugger | SageTV Customizations | 35 | 04-21-2008 08:12 AM |