|
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 |
#1241
|
||||
|
||||
Quote:
Code:
if [IsObjMediaFile == true && $.IsTVFile{} == true && $.GetShowTitle{} == "Fringe" && Filename =$ ".mpg" ] { MEDIASHRINKMQ } What is the output in the logs when you try MediaDebugger for one of the shows? Also, what is your client config setting for MEDIASHRINKMQ ? |
#1242
|
|||
|
|||
It's ALIVE! Yay! Thanks for your reply!
When I use the Media Debugger and type "Fri" it does find: V:\Videos\Drobo2\Recordings\_TVShows\Fringe\Fringe-03.mpg (I did notice that it is case sensitive) However, nothing appears in the Server Logs after doing the Media Debugger, just this: Code:
2011-08-24 08:31:07,940 INFO [SystemMessageQueueLoader]: Run completed [0ms] 2011-08-24 08:31:47,455 INFO [InternalTaskClient]: Run completed [0ms] 2011-08-24 08:31:49,784 INFO [SJQServlet]: Servlet POST request completed [0ms] Code:
MEDIASHRINKMQ { :CPU "NORMAL" :MAX 1 :RESOURCES 51 "\"C:/Program Files/SageTV/MediaShrink/mediaShrink.exe\" \"%c%\" /inPlace /batch /vbitrate 2500 /onePass " } The videos I'm trying process are not on the Recording drive, but the "archive" drive. I do have "Scan Imported Videos" enabled. Since the Media Debugger finds the show when I type, "Fringe", I assume that means SJQ is scanning that drive where I've moved much of my recordings. Something else odd: When I go to the MediaFileQueueLoader, it shows the last run time as 5:28am, even though I've run it several times since then (it's now 8:38a), and the "Next Run" shows to be 6:12 AM, even though it is way past that time, and I've set Maxiumum time MediaFileQueueLoader to be 60 minutes. I have set "Run in Debug Mode" to enabled, but the server log doesn't look any different - should it? I've restarted the client, but it's the server that I'd like to restart, but not sure how to do that (without a reboot). Does one "restart jetty"? I had started with your code that you suggest, but wasn't sure how the "GetShowTitle{}" or "IsTVFile{}" get's determined, and whether the .mpg on the Archive drive might have somehow lost the title and type information somehow , so I thought by testing against the filename would be more..."sure". Thanks again for your prompt reply. I'm hopeful now that this will be resolved since I'm not alone. Last edited by BKeadle; 08-24-2011 at 07:47 AM. |
#1243
|
|||
|
|||
If this is not working.
if [ Filename =$ ".mpg" && Filename =^ "Fringe" ] { MEDIASHRINKMQ } Try using contains =* if [ Filename =$ ".mpg" && Filename =* "Fringe" ] { MEDIASHRINKMQ }
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. Last edited by nyplayer; 08-24-2011 at 09:10 AM. |
#1244
|
||||
|
||||
Quote:
Might want to do as NYPlayer suggested, use the Contains since Filename may (I don't know) include the entire path. Strange that you are not getting stuff in the System Log. Should be something like the following: Code:
2011-08-24 12:57:35,156 WARN [MediaFileQueueLoader]: Processing 'Stossel'... 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 26: Evaluating 'IsObjMediaFile == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 26: Evaluating '$.IsTVFile{} == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 26: Evaluating '$.GetAiringChannelName{} =% "TNT.*|USA.*|FX.*|DSC.*|WCCB.*"' == false 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 32: Evaluating 'IsObjMediaFile == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 32: Evaluating '$.IsTVFile{} == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 32: Evaluating '$.GetAiringChannelName{} =% "WBTV.*"' == false can you include your Ruleset? might have a problem there. Have you tried stopping/restart Sage Service (if you are in Service Mode) |
#1245
|
||||
|
||||
Try this.
Quote:
If [IsObjMediaFile == true && Filename =$ ".mpg" && Filename =^ "Fringe" ] { :SCANMEDIA "true" :RUNQLOADER "true" MEDIASHRINKMQ } you might also want to add IsViewingMedia == false && to the initial condition filter. |
#1246
|
||||
|
||||
CLIENT CONFIG
Quote:
MEDIASHRINKMQ { :CPU "NORMAL" :MAX 1 :RESOURCES 51 "C:/Program Files/SageTV/MediaShrink/mediaShrink.exe \"%c%\" /inPlace /batch /vbitrate 2500 /onePass " } and yes, using includes =* is better for the initial filter. |
#1247
|
|||
|
|||
That will never work because File name includes the whole path so unless your recording paths are named "Fringe" it will never find the files which can never be the case because all paths start with either \\ or drive letter. You need to use the Filename =* "Fringe" that way it will look at the whole filename not just the beginning (which is the path).
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. Last edited by nyplayer; 08-24-2011 at 05:09 PM. |
#1248
|
|||
|
|||
Thanks, all, for your suggestions. In response...
This is my entire rule set at the moment: Quote:
Code:
2011-08-24 22:04:29,279 INFO [ClientMonitor]: Run completed [0ms] 2011-08-24 22:04:37,356 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:04:42,809 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:04:42,825 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:04:52,824 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:04:53,839 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:04:53,855 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:04:57,526 INFO [SJQServlet]: Servlet POST request completed [15ms] 2011-08-24 22:04:57,542 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:05:01,214 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:05:01,229 INFO [SJQServlet]: Servlet POST request completed [15ms] 2011-08-24 22:05:12,603 INFO [SystemMessageQueueLoader]: Run completed [0ms] 2011-08-24 22:05:13,228 INFO [SJQServlet]: Servlet POST request completed [5156ms] 2011-08-24 22:05:44,272 INFO [InternalTaskClient]: Run completed [0ms] 2011-08-24 22:05:59,724 INFO [SJQServlet]: Servlet POST request completed [6640ms] 2011-08-24 22:06:12,614 INFO [SystemMessageQueueLoader]: Run completed [0ms] 2011-08-24 22:06:27,143 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:07:07,937 INFO [SJQServlet]: Checking client '127.0.0.1': 100 resources free. 2011-08-24 22:07:07,952 INFO [SJQServlet]: Client '127.0.0.1' cannot pop a task of type 'MEDIASHRINKHQ': Task disabled by :OFFHOUR setting! 2011-08-24 22:07:07,952 INFO [SJQServlet]: Servlet POST request completed [15ms] 2011-08-24 22:07:12,608 INFO [SystemMessageQueueLoader]: Run completed [0ms] 2011-08-24 22:07:44,262 INFO [InternalTaskClient]: Run completed [0ms] 2011-08-24 22:08:12,634 INFO [SystemMessageQueueLoader]: Run completed [16ms] 2011-08-24 22:08:27,148 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:09:12,644 INFO [SystemMessageQueueLoader]: Run completed [0ms] 2011-08-24 22:09:29,252 INFO [ClientMonitor]: Run completed [0ms] 2011-08-24 22:09:44,251 INFO [InternalTaskClient]: Run completed [0ms] 2011-08-24 22:09:46,438 INFO [SJQServlet]: Servlet POST request completed [5874ms] 2011-08-24 22:10:12,655 INFO [SystemMessageQueueLoader]: Run completed [0ms] 2011-08-24 22:10:27,138 INFO [SJQServlet]: Servlet POST request completed [0ms] 2011-08-24 22:10:27,528 INFO [SJQServlet]: Servlet POST request completed [1968ms] Here's my client setting: Code:
#:OFFHOUR "8-11,12-24," # No processing between 7a-11am and 6p-12pm COMSKIP { # REF: http://forums.sagetv.com/forums/showthread.php?p=394054&postcount=89 :RESOURCES 25 # Up to 4 comskips can be run simultaneously (every client has exactly 100 resources available) # CPU priority to be used for this task process; one of LOW, NORMAL, HIGH (case sensitive) :CPU "NORMAL" # Default is NORMAL if not specified # Comskip returns 1 on success instead of the universally accepted zero; tell SJQ that # a return code of 1 means success instead of the default value of zero :RETURNCODE 1 "\"C:/Program Files/SageTV/comskip/comskip.exe\" \"--ini=C\:\\Program Files\\SageTV\\comskip\\comskip.ini\" \"%c%\"" } MEDIASHRINKHQ { :CPU "LOW" :OFFHOUR "0-1, 16-23" # :OFFDAY "1, 7" :MAX 1 :RESOURCES 51 "\"C:/Program Files/SageTV/MediaShrink/mediaShrink.exe\" \"%c%\" /inPlace /batch /vprofile HQ /vbitrate 2500 /twopass" } MEDIASHRINKMQ { :CPU "NORMAL" # :OFFHOUR "0-1, 16-23" # :OFFDAY "1, 7" :MAX 1 :RESOURCES 51 "\"C:/Program Files/SageTV/MediaShrink/mediaShrink.exe\" \"%c%\" /inPlace /batch /vbitrate 2500 /onePass " } MEDIASHRINKLQ { :CPU "NORMAL" # :OFFHOUR "0-1, 16-23" # :OFFDAY "1, 7" :MAX 1 :RESOURCES 51 "\"C:/Program Files/SageTV/MediaShrink/mediaShrink.exe\" \"%c%\" /inPlace /batch /vbitrate 1500 /onePass " } "C:/Program Files/SageTV/comskip/comskip.exe" but it gave me an error about not being able to run the program, "C:/Program", so I had to quote-out the path like this to get COMSKIP to work: "\"C:/Program Files/SageTV/comskip/comskip.exe\" So I figure the same syntax will be required for Mediashrink. What is still a bit disconcerting is the MediaFileQueueLoader last run still shows the 5:28am as the last run time. I did restart the client service, but I figure it's not the client that's having the problem, it appears to be the server component (jetty) not even getting things into the Active Queue for the client to work against. Is there a way to reset/restart the server component? It's feeling more like that's where the problem is since: A) the last run time isn't being displayed B) there is no activity in the Server logs. I might just be at a point now that I just reboot my server - though if this continues to happen, I'd like to know how to "kick" the server component without having to reboot. |
#1249
|
|||
|
|||
Ah ha! Server Snapshot (Debug) shows this:
Code:
Wed Aug 24 22:33:58 CDT 2011: SJQ Application Dump MediaQueueLoader thread is dead! SysMsgQueueLoader thread is alive... java.lang.Thread.sleep(Native Method) com.google.code.sagetvaddons.sjq.server.SystemMessageQueueLoader.run(SystemMessageQueueLoader.java:79) java.lang.Thread.run(Unknown Source) ClientMonitor thread is alive... java.lang.Thread.sleep(Native Method) com.google.code.sagetvaddons.sjq.server.ClientMonitor.run(ClientMonitor.java:38) java.lang.Thread.run(Unknown Source) InteralTaskClient thread is alive... java.lang.Thread.sleep(Native Method) com.google.code.sagetvaddons.sjq.server.InternalTaskClient.run(InternalTaskClient.java:68) java.lang.Thread.run(Unknown Source) Most recent LogCleaner thread is dead (this is normal behaviour)! Most recent FileCleaner thread is dead (this is normal behaviour)! Most recent VacuumCleaner thread is dead (this is normal behaviour)! |
#1250
|
|||
|
|||
Voila! It's now working! I found that restarting the SageTV service restarts the webservices. The MediaFileQueueLoader, now running, has queued up the active tasks, and the client is busy at work.
Thanks again for your participation and suggestsions. I can now put back my original Ruleset. That was unnecessarily painful - in the end, it's a relatively easy diagnostic and resolution...now that I know! |
#1251
|
||||
|
||||
Wonderful. Glad you have it back up and running
|
#1252
|
||||
|
||||
Another thing you might want to use is Tools => Media Debugger
That way you choose the particular file you want, and when you look in the system log file, you will see how SJQ evaluated the various Ruleset lines (true/false). Very helpful in debugging. Would have shown that Filename =^ "Fringe" was evaluating to false. Code:
2011-08-24 12:57:35,156 WARN [MediaFileQueueLoader]: Processing 'Stossel'... 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 26: Evaluating 'IsObjMediaFile == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 26: Evaluating '$.IsTVFile{} == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 26: Evaluating '$.GetAiringChannelName{} =% "TNT.*|USA.*|FX.*|DSC.*|WCCB.*"' == false 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 32: Evaluating 'IsObjMediaFile == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 32: Evaluating '$.IsTVFile{} == "true"' == true 2011-08-24 12:57:35,156 WARN [RulesParser]: Line 32: Evaluating '$.GetAiringChannelName{} =% "WBTV.*"' == false |
#1253
|
|||
|
|||
Yeah, I tried that (desperately), but apparently with the MediaFileQueueLoader being dead, *that* also doesn't work.
As for the quoting "mess" of the mediashrink in a directory containing spaces, I was thinking about having the client call out to a batch file, e.g.: C:\SJQScripts\MediaShrink.bat and then have it call out to the C:\Program Files\SageTV\MediaShrink\mediashrink.exe, *and* be able to do tasks afterwards, such as moving the resulting file to a certain subdirectory (and what ever other serial tasks I may want to do against the file which may be too difficult to accomplish through SJQ.) Any cautions or suggestions about doing that? |
#1254
|
|||
|
|||
BKeadle,
You should look at this thread evilpenguin the author mediashrink has some very good samples on how to properly use mediashrink with SJQ. Here is a sample of how I move my archived Mediashrink files. Code:
if [IsObjMediaFile == "true" && Filename !* "SAGEO" && (Filename =$ ".avi" || (Filename =$ ".mkv")) && $.IsLibraryFile{} == "true" && $.GetNumberOfSegments{} == "1"] { :SCANMEDIA "true" :MOVERECOPTS "\\\\SAGENET\\SAGEO" :PRIORITY 9999 _MOVEREC }
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. Last edited by nyplayer; 08-25-2011 at 09:11 PM. |
#1255
|
|||
|
|||
Thanks for the thread link. I'm familiar with that thread, and what I started with. Though I'm able to move recording to a different location from my recording drive to my archive drive, I like to move my videos to named subdirectories instead of all recordings in a single directory. For example, the video:
I've moved the recording AllintheFamily-TheElectionStory-906972-0.mpg to V:\Drobo2\_TVShows with _MOVEREC. But after I've converted it from mpg to mkv, I want to move it to it's associated subdirectory .\_TVShows\AllInTheFamily\ I can easily do this using batch scripting, but I don't see how I can do this with SJQ rules. So hence, my idea to have the Client to call out to a batch file that will do the conversion, then afterward, moved to the proper recording subdirectory. In fact, my rule set I'm considering is moving recordings from my recording drive according to conditions (watched, age, archived). Then a script that watches the archive directory for new (moved) recordings, then kick off the batch file that would then convert the video, then move it to the proper subdirectory, and log the before/after size into an easy-to-read log file-specific for the video conversion. Know what I mean? |
#1256
|
||||
|
||||
Not that it helps much with SJQ3 but for my mv_recordings test script (groovy) for SJQ4 I do something similiar to move the recordings to different folders. Not sure if you could reverse engineer to something SJQ3 could use
Code:
/* Pretest if MediaFile is currently being Watched */ //def SJQ4_METADATA = ["SJQ4_ID":"2849349","SJQ4_PATH":"c:\\SageRecordings","SJQ4_LAST_SEGMENT":"AmericasNewsHeadquarters-0.mpg"]; //def SJQ4_ARGS = ["\\\\Tower\\UnArchived\\br"]; import com.google.code.sagetvaddons.groovy.api.MediaFileHelpers ; import org.apache.commons.io.FileUtils ; String ParentPath = SJQ4_ARGS[0] String id = SJQ4_METADATA.get("SJQ4_ID"); Object mf = MediaFileAPI.GetMediaFileForID(id.toInteger()); String FileName = SJQ4_METADATA.get("SJQ4_LAST_SEGMENT"); String FilePath = SJQ4_METADATA.get("SJQ4_PATH"); String ShowTitle=ShowAPI.GetShowTitle(mf); String ShowSeasonDir ; String OutputPath ; int ShowSeasonNum=ShowAPI.GetShowSeasonNumber(mf); println ( "Test Started"); if ( AiringAPI.IsNotManualOrFavorite(mf) ) { println("${FileName} is not a Favorite or Manual Recording - skipped") return 2 } if( MediaFileHelpers.isBeingViewed(FileName) ) { println("${FileName} is being viewed; Return task to queue!") return 1 } if ( (FilePath.toUpperCase()) =~ "\\\\TOWER" ) { println("bypass since ${FilePath} is on TOWER") return 2 } if ( ShowSeasonNum == 0 ) { ShowSeasonDir = "" ; } else { ShowSeasonDir = "\\Season " + ShowSeasonNum ; } if ( ShowAPI.GetShowCategory(mf).equals ("Movie") ) { println("This is a Movie "); OutputPath = ParentPath + "\\Movies" ; } else { println("This is a TV show") ; OutputPath = ParentPath + "\\" + ShowTitle + ShowSeasonDir ; } OutputPath = (OutputPath =~ /[?!*^&#$%@:;]/).replaceAll(" ") ; println ("Modified OutputPath = ${OutputPath} "); OutputFile = OutputPath + FileName; File dest = new File(OutputPath); FileUtils.forceMkdir(dest); Tools.setExeArgs("\"${OutputPath}\"") println ("Would Start EXE with argument ${OutputPath}"); println ( "Test Ended"); return 0 |
#1257
|
|||
|
|||
Quote:
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. Last edited by nyplayer; 08-26-2011 at 08:57 AM. |
#1258
|
|||
|
|||
Here is a Simple one to Move Archives.... I copy the file first and make sure it is completely copied before doing a re-link..... which deletes the original.
Code:
//SJQMOVETVShows if [IsObjMediaFile == true && IsSomethingRecording == "false" && $.IsFileCurrentlyRecording{} == "false" && Filename =$ ".mpg" && $.IsLibraryFile{} == "true" && $.GetNumberOfSegments{} == "1" && Filename !* "_TVShows"] { :RUNQLOADER "true" SJQMOVETVShows } //Relink TVShows if [IsObjMediaFile == true && $.IsFileCurrentlyRecording{} == "false" && Filename =$ ".mpg" && FileExists == "%d%/%p%.relink" && FileExists == "C://_TVShows/$.GetShowTitle{}/%p%.mpg" && $.GetNumberOfSegments{} == "1"] { :PRIORITY 1500 :RELINKOPTS "$.GetAiringID{}" "C://_TVShows/$.GetShowTitle{}/%p%.mpg" _RELINK } Code:
SJQMOVETVShows { :MAX 1 :CPU LOW :RESOURCES 55 "C:\\SJQTEST\\SJQMOVETITLE.bat \"%c%\" \"$.GetShowTitle{}\" \"C:\\_TVShows\"" } SJQMOVETITLE.bat Code:
move "%~f1" "%~d1%~p1" set checkuse=%ERRORLEVEL% if %checkuse% NEQ 0 exit 1 set outdir=%3 for /f "useback tokens=*" %%a in ('%outdir%') do set outdir=%%~a set MediaTitle=%2 rem for /f "useback tokens=*" %%a in ('%MediaTitle%') do set MediaTitle=%%~a set MediaTitle=%MediaTitle:: = % set MediaTitle=%MediaTitle:? = % set MediaTitle=%MediaTitle::= % set MediaTitle=%MediaTitle:?= % set MediaTitle=%MediaTitle:& =& % for /f "useback tokens=*" %%a in ('%MediaTitle%') do set MediaTitle=%%~a if not exist "%outdir%" md "%outdir%" if not exist "%outdir%\%MediaTitle%" md "%outdir%\%MediaTitle%" START /B /W /MIN /BELOWNORMAL xcopy /Y "%~d1%~p1%~n1.**" "%outdir%\%MediaTitle%" set checkxcopy=%ERRORLEVEL% if %checkxcopy% EQU 0 echo "xcopy complete" >> "%~d1%~p1%~n1.relink" if not exist "%~d1%~p1%~n1.relink" exit 1 exit 0 Here are the logs of a test Code:
Task Log: 252548/SJQMOVETVShows Fri Aug 26 11:10:25 PDT 2011: Starting task with priority 1/1/10 Executing command line: C:\SJQTEST\SJQMOVETITLE.bat "C:\SAGEREC\MarriedWithChildren-LifesaBeach-212140-0.mpg" "Married ... With Children" "C:\_TVShows" C:\SJQService\sjqc_winntsvc\bin>move "C:\SAGEREC\MarriedWithChildren-LifesaBeach-212140-0.mpg" "C:\SAGEREC\" C:\SJQService\sjqc_winntsvc\bin>set checkuse=0 C:\SJQService\sjqc_winntsvc\bin>if 0 NEQ 0 exit 1 C:\SJQService\sjqc_winntsvc\bin>set outdir="C:\_TVShows" C:\SJQService\sjqc_winntsvc\bin>for /F "useback tokens=*" %a in ('"C:\_TVShows"') do set outdir=%~a C:\SJQService\sjqc_winntsvc\bin>set outdir=C:\_TVShows C:\SJQService\sjqc_winntsvc\bin>set MediaTitle="Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>rem for /f "useback tokens=*" %a in ('"Married ... With Children"') do set MediaTitle=%~a C:\SJQService\sjqc_winntsvc\bin>set MediaTitle="Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>set MediaTitle="Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>set MediaTitle="Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>set MediaTitle="Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>set MediaTitle="Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>for /F "useback tokens=*" %a in ('"Married ... With Children"') do set MediaTitle=%~a C:\SJQService\sjqc_winntsvc\bin>set MediaTitle=Married ... With Children C:\SJQService\sjqc_winntsvc\bin>if not exist "C:\_TVShows" md "C:\_TVShows" C:\SJQService\sjqc_winntsvc\bin>if not exist "C:\_TVShows\Married ... With Children" md "C:\_TVShows\Married ... With Children" C:\SJQService\sjqc_winntsvc\bin>START /B /W /MIN /BELOWNORMAL xcopy /Y "C:\SAGEREC\MarriedWithChildren-LifesaBeach-212140-0.**" "C:\_TVShows\Married ... With Children" C:\SAGEREC\MarriedWithChildren-LifesaBeach-212140-0.mpg 1 File(s) copied C:\SJQService\sjqc_winntsvc\bin>set checkxcopy=0 C:\SJQService\sjqc_winntsvc\bin>if 0 EQU 0 echo "xcopy complete" 1>>"C:\SAGEREC\MarriedWithChildren-LifesaBeach-212140-0.relink" Code:
Task Log: 252548/_RELINK Fri Aug 26 11:12:34 PDT 2011 WARNING: Execution of this task will result in deletion of MediaFile #252548 [Married ... With Children] 'C:\_TVShows\Married ... With Children\MarriedWithChildren-LifesaBeach-212140-0.mpg' not registered with SageTV; registering it now... DONE! Deleted MediaFile 252548 Relinked MediaFile #252775 to Airing ID #212140
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#1259
|
|||
|
|||
you are so *freaking* helpful! Thank you so much. I'll give this a go tomorrow. Thanks!
|
#1260
|
|||
|
|||
Lost show information after archiving
Uh oh...
After having moved most of my recorded shows to my archive drive, now when I got to the My Videos page, I only a list of file names and no show information (or recording date). I have .my files of the same name in the same directory. Shouldn't/can't these files be used to display information in Sage? |
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 |