SageTV Community  

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

Notices

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.

Reply
 
Thread Tools Search this Thread Display Modes
  #321  
Old 03-18-2007, 01:57 PM
bentheo bentheo is offline
New Member
 
Join Date: Mar 2007
Posts: 2
i'm trying to use dirmon2 to try just send me a message each time a show has started recording.

the problem i'm getting is that since the .mpg files are staying in the directory, it keeps sending me updates multiple times. is there any way i can set dirmon2 to ignore files it has already processed?
Reply With Quote
  #322  
Old 03-18-2007, 07:25 PM
briands briands is offline
Sage Icon
 
Join Date: Aug 2004
Location: Bloomington, IN
Posts: 1,093
a work around would be to have your process create a dummy file of some odd file extension that you could use as the exception rule. This should prevent it from rerunning on the same file.
Reply With Quote
  #323  
Old 03-18-2007, 08:10 PM
bentheo bentheo is offline
New Member
 
Join Date: Mar 2007
Posts: 2
Quote:
Originally Posted by briands View Post
a work around would be to have your process create a dummy file of some odd file extension that you could use as the exception rule. This should prevent it from rerunning on the same file.
thats what i actually ended up doing after i posted here. still, i wish there was a better way. thanks.
Reply With Quote
  #324  
Old 01-28-2008, 01:27 PM
lstepnio lstepnio is offline
New Member
 
Join Date: Jan 2007
Posts: 2
I'm trying to use Dirmon to scan my recordings and queue up recordings older than x days for transcoding and cleanup tasks. Also, removing any empty "show name" directories where the episodes have all been removed but the folder remains.

Any suggestions?
Reply With Quote
  #325  
Old 02-01-2008, 01:46 AM
lstepnio lstepnio is offline
New Member
 
Join Date: Jan 2007
Posts: 2
Quote:
Originally Posted by lstepnio View Post
I'm trying to use Dirmon to scan my recordings and queue up recordings older than x days for transcoding and cleanup tasks. Also, removing any empty "show name" directories where the episodes have all been removed but the folder remains.

Any suggestions?

Here's a work-around to queue to encode recording based on how old they are.


This example bash script looks for any recording (*.ts in this case) older than 7 days (ctime) and creates a blank file with the filename.dirmon extention. You'll need cygwin installed along with find,awk and crontab. I scheduled this to run once a day out of a cronjob.


Code:
#!/bin/bash

IFS=$'\n'

for i in $(find /cygdrive/p -type d \( -name "RECYCLER" -o -name "System Volume Information" \) -prune -o -type f -name '*.ts' -ctime +7 -print | sed 's/.ts/.dirmon/g'); do
	touch "$i"
	echo "$i\n"
done
next; i simply setup dirmon:

target = ts
must exist = dirmon
must no exist = avi

This works perfectly.

I also setup windows to create <filename>.dirmon with right-click, open-with Transcoder to allow me to easily queue recording manually prior to the 7 days I setup in the script.
Reply With Quote
  #326  
Old 03-11-2008, 12:02 AM
mikesm mikesm is offline
Sage Icon
 
Join Date: Jul 2003
Posts: 1,293
I seeing a weird problem today - for the first time since it was installed, it's not doing anything. Not scanning for new recordings, not firing up showanalyzer, etc... very weird. Start/stop, uninstall/install, nothing seems to get it going. Is there a log file somewhere that I can look at to figure out what's going on?

thx
mike
__________________
Server: Sage 6.5.9 - X2 3800+, DFI NF4 MB, 1 GB, 300 GB HD (system disk), NV 7600GS, - Windows XP SP2
Client 1: Sage 6.5.9 - E7200, Abit IP35 Pro, ATI 4850 with HDMI connect to Denon 3808CI and Sony A3000 SXRD TV
Client 2: HD200 connected to Denon 3808CI and A3000 SXRD TV
Client 3: Media MVP to 15" Toshiba LCD
Client 4: HD100 connected to Samsung 23" 720P LCD
Client 5: HD100 connected to Vizio VX37L
Reply With Quote
  #327  
Old 03-11-2008, 12:50 AM
mikesm mikesm is offline
Sage Icon
 
Join Date: Jul 2003
Posts: 1,293
Quote:
Originally Posted by mikesm View Post
I seeing a weird problem today - for the first time since it was installed, it's not doing anything. Not scanning for new recordings, not firing up showanalyzer, etc... very weird. Start/stop, uninstall/install, nothing seems to get it going. Is there a log file somewhere that I can look at to figure out what's going on?

thx
mike
Never mind, it was DST problem. Nice of the MSFt to not include the DST patch in SP3...
__________________
Server: Sage 6.5.9 - X2 3800+, DFI NF4 MB, 1 GB, 300 GB HD (system disk), NV 7600GS, - Windows XP SP2
Client 1: Sage 6.5.9 - E7200, Abit IP35 Pro, ATI 4850 with HDMI connect to Denon 3808CI and Sony A3000 SXRD TV
Client 2: HD200 connected to Denon 3808CI and A3000 SXRD TV
Client 3: Media MVP to 15" Toshiba LCD
Client 4: HD100 connected to Samsung 23" 720P LCD
Client 5: HD100 connected to Vizio VX37L
Reply With Quote
  #328  
Old 03-11-2008, 07:41 PM
geogecko geogecko is offline
Sage Icon
 
Join Date: Dec 2004
Location: North Oklahoma
Posts: 2,273
LOL, Y2K8?
__________________
-Jason
Reply With Quote
  #329  
Old 03-22-2008, 02:21 PM
gndprx gndprx is offline
Sage User
 
Join Date: Jul 2006
Posts: 32
Anyone know where I can get dirmon while dragonglobal's website is unavailable? Was trying to get a project finished up this weekend.

Thanks!
Reply With Quote
  #330  
Old 03-22-2008, 06:59 PM
mcaron1234's Avatar
mcaron1234 mcaron1234 is offline
Sage Advanced User
 
Join Date: Oct 2005
Location: North Bend, WA
Posts: 110
I have a copy of dirmon2 (v0.5.0) and dirmon (v0.2.5) saved, I'd be glad to email it to you. I don't think its the latest version, but if you want it I'd be glad to mail it to you. Send a private message, if interested.

Matt
Reply With Quote
  #331  
Old 03-23-2008, 05:44 AM
gndprx gndprx is offline
Sage User
 
Join Date: Jul 2006
Posts: 32
Quote:
Originally Posted by mcaron1234 View Post
I have a copy of dirmon2 (v0.5.0) and dirmon (v0.2.5) saved, I'd be glad to email it to you. I don't think its the latest version, but if you want it I'd be glad to mail it to you. Send a private message, if interested.

Matt
That would be great. PM sent.

Thanks
Reply With Quote
  #332  
Old 03-23-2008, 08:06 AM
m1abrams's Avatar
m1abrams m1abrams is offline
Sage Aficionado
 
Join Date: Sep 2004
Posts: 445
Dragon's Forum site has been hacked. Hopefully he can resolve that quickly. I suspect that may be linked to his mysql errors on the download page.
Reply With Quote
  #333  
Old 03-23-2008, 11:33 AM
mcaron1234's Avatar
mcaron1234 mcaron1234 is offline
Sage Advanced User
 
Join Date: Oct 2005
Location: North Bend, WA
Posts: 110
Appears to be up again. Grats for Jere for getting it going (although sorry you had to).

Matt
Reply With Quote
  #334  
Old 03-23-2008, 01:43 PM
gndprx gndprx is offline
Sage User
 
Join Date: Jul 2006
Posts: 32
Reply With Quote
  #335  
Old 03-23-2008, 04:52 PM
Jere_Jones's Avatar
Jere_Jones Jere_Jones is offline
Sage Fanatic
 
Join Date: Apr 2004
Location: Jacksonville, FL
Posts: 993
Apparently, I am the victim of someone getting root access on a shared server. I am going to move dragonglobal to a virtual private server so this shouldn't happen again.

My main disappointment is in the customer service of Canaca. It took them over 14 hours to respond to my "Emergency" ticket.

Ugh.

So, yeah, it's back up.

Jere
__________________
Death to commercials!!!
Latest ShowAnalyzer Beta version: 0.9.7
Reply With Quote
  #336  
Old 04-14-2008, 08:57 PM
Humanzee's Avatar
Humanzee Humanzee is offline
Sage Fanatic
 
Join Date: Sep 2004
Location: North Idaho
Posts: 752
Dirmon2 is not cleaning up the new .aspects files. Yes, they are added to the Global Settings tab under clean up with all the other extensions. Any ideas?
Reply With Quote
  #337  
Old 04-14-2008, 09:07 PM
Humanzee's Avatar
Humanzee Humanzee is offline
Sage Fanatic
 
Join Date: Sep 2004
Location: North Idaho
Posts: 752
Changed to UNC paths instead of mapped drives for cleanup, will see if this helps. Saw errors in the activity logs saying the path couldn't be found. Don't know why only its only the .aspects though, maybe an earlier clean up tool is still running on the server and catching the other orphaned files.
Reply With Quote
  #338  
Old 04-14-2008, 10:56 PM
Humanzee's Avatar
Humanzee Humanzee is offline
Sage Fanatic
 
Join Date: Sep 2004
Location: North Idaho
Posts: 752
yup that was it, needed unc paths for clean up too.
Reply With Quote
  #339  
Old 04-14-2008, 11:28 PM
Jere_Jones's Avatar
Jere_Jones Jere_Jones is offline
Sage Fanatic
 
Join Date: Apr 2004
Location: Jacksonville, FL
Posts: 993
*OFF TOPIC*

Is anyone taking advantage of the .aspects files yet?

Jere
__________________
Death to commercials!!!
Latest ShowAnalyzer Beta version: 0.9.7
Reply With Quote
  #340  
Old 04-15-2008, 11:15 AM
Humanzee's Avatar
Humanzee Humanzee is offline
Sage Fanatic
 
Join Date: Sep 2004
Location: North Idaho
Posts: 752
I've been patiently waiting for a .aspects plug-in as well, I even downloaded the studio manual to think about trying to make a plug-in myself. But I only got to page 12 of 154 before other duties prevailed. Not sure if I'd have to go and learn Java first anyhow.
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


All times are GMT -6. The time now is 02:45 AM.


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