@bradvido88
What exactly FTL is doing when "archiving" recordings? I've read the thread and I'm still unclear about FTL. It seems to do more then just "add" the FTR recordings to XBMC but I'm not sure what.
I'm using FTR to do my recordings on a local disk and I manually (for now) move them to a repository on my NAS. This is done because I may have recordings starting or active while I may have to reboot my NAS (it is a VM under VMware and I'm modifying it from time to time or upgrading my NAS OS, etc). Anyway, I want to make sure that whatever happens on the NAS, it won't impact the recordings on FTR.
I've saw an option to add a post-processing script and that could be a place to add a move to the NAS. However, this will change the UNC to the file so... maybe a pre-processing script would be better. I can do that in the batch file that will invoke FTL but making sure that I fully understand what FTL is expecting and doing would help in my analysis of the situation.
Thank you for your various tools, they are very useful.
ehfortin
ForTheLibrary - XBMC Library & ForTheRecord PVR Integration
ehfortin
Junior Member Posts: 14 Joined: Jul 2011 Reputation: 0 |
2012-11-07 22:27
Post: #41
|
| find quote |
bradvido88
Donor Joined: Nov 2008 Reputation: 7 Location: MN |
2012-11-07 22:31
Post: #42
(2012-11-07 22:27)ehfortin Wrote: @bradvido88 FTL will move your recorded files into either a "_TV Shows" or "_Movies" directory after they finish recording. Within those directories, the recordings will be named in a way that XBMC can scrape/understand. If you need those directories to be located somewhere other than your default FTR recording share, you could make them symlinks to a NAS or whatever. FTR will also be updated with the new location of the recording (using the FTR API), so the recordings will still show up as usual in your PVR listings. XBMC.MyLibrary (add anything to the library) ForTheLibrary (ForTheRecord & XBMC Library Integration) SageTV & XBMC PVR Integration Delete unused thumbs |
| find quote |
ehfortin
Junior Member Posts: 14 Joined: Jul 2011 Reputation: 0 |
2012-11-07 22:44
Post: #43
(2012-11-07 22:31)bradvido88 Wrote: FTL will move your recorded files into either a "_TV Shows" or "_Movies" directory after they finish recording. Within those directories, the recordings will be named in a way that XBMC can scrape/understand. If you need those directories to be located somewhere other than your default FTR recording share, you could make them symlinks to a NAS or whatever. I read that. I should have remembered. That being said, my recordings are already created directly in a "TV Shows" or "Movies" folder tree structure. I've use the internal abilities of FTR to do it. In the section "Recording File Name Formats", I've added those: Series: TV Shows\%%TITLE%%\Season %%SERIES%%\%%TITLE%% - S%%SERIES%%E%%EPISODENUMBER2%% - %%EPISODETITLE%% One-time: Movies\%%TITLE%%\%%TITLE%% As such, a TV Shows or Movies folder is created and then, below it, a folder for the movie or a subtree for a serie is built (Serie Name\Season #\Serie - s#e# - title just like XBMC is looking for). Right now in FTL, I don't see a way to give an alternate output folder. It would be great to be able to tell FTL to do its job but with the shared folder of our choice. I would see an advantage in using FTL as it also update FTR which is great and call for the XBMC update after doing the move. Is it something you could consider adding to FTL? Thank you. ehfortin |
| find quote |
pkscuot
Fan Joined: Jan 2011 Reputation: 10 Location: Honolulu, HI |
2012-11-29 04:50
Post: #44
Just in case anyone goes over to the 4TheRecord Forum and has a mild panic attack (like I did), it looks like FTR has been open sourced and is now called ArgusTV and they have a new forum. For me at least I was able to use the same login ID and password I had for the old forum site.
Add-ons I maintain: Artist Slideshow: http://wiki.xbmc.org/index.php?title=Add..._Slideshow SpeedFan Information Display: http://wiki.xbmc.org/index.php?title=Add...on_Display |
| find quote |
pkscuot
Fan Joined: Jan 2011 Reputation: 10 Location: Honolulu, HI |
2013-01-06 05:15
Post: #45
So I've taken yet another stab at replacing my SageTV setup with FTR (well, ArgusTV now). Everything is working well this time around. I guess moving to Hawaii, building a new HTPC, and using an HD HomeRun instead of internal QAM cards all helped.
![]() I've also setup XMLTVDB to process a Schedule Direct XML file I download using XMLTV GUI. Yesterday it worked fine. Today nothing. I checked the logs and saw this: Code: 01/05/2013 04:33:54 PM INFO TheTVDB series ID is overridden in config file, no need to look it up. Using ID of: "164541"I did some poking around in the XML file, and it turns out the episode of Hawaii Five-0 in question had no <desc></desc> element. It looks like this: Code: <programme start="20130120170000 -1000" stop="20130120180000 -1000" channel="NA_SD_PC:96815_34331_5">So I added the description and the file processed file. The thing is, I'm assuming I'm going to have to do that every day now until this "bad" episode of Hawaii Five-0 ages out. Is there anyway XMLTVDB could be updated to at least not end with a fatal error when some of the elements of the episode description are missing? Add-ons I maintain: Artist Slideshow: http://wiki.xbmc.org/index.php?title=Add..._Slideshow SpeedFan Information Display: http://wiki.xbmc.org/index.php?title=Add...on_Display |
| find quote |
pkscuot
Fan Joined: Jan 2011 Reputation: 10 Location: Honolulu, HI |
2013-01-07 02:48
Post: #46
So never mind (sort of). XMLTV GUI is written in something called Lua (of which I had never heard). But there are two nice things about Lua. First, it appears to be compiled at runtime, so you can edit parts of the program and not have to recompile the entire thing. Second, it's pretty easy to read. So I was able to add some new logic to the Schedules Direct plugin that adds a description of "no description" to the output if no description exists. Now all the automation is running fine. If anyone happens to be using XMLTV GUI, feel free to PM me and I can send you the file you need to update.
Add-ons I maintain: Artist Slideshow: http://wiki.xbmc.org/index.php?title=Add..._Slideshow SpeedFan Information Display: http://wiki.xbmc.org/index.php?title=Add...on_Display |
| find quote |
bradvido88
Donor Joined: Nov 2008 Reputation: 7 Location: MN |
2013-01-07 18:05
Post: #47
(2013-01-07 02:48)pkscuot Wrote: So never mind (sort of). XMLTV GUI is written in something called Lua (of which I had never heard). But there are two nice things about Lua. First, it appears to be compiled at runtime, so you can edit parts of the program and not have to recompile the entire thing. Second, it's pretty easy to read. So I was able to add some new logic to the Schedules Direct plugin that adds a description of "no description" to the output if no description exists. Now all the automation is running fine. If anyone happens to be using XMLTV GUI, feel free to PM me and I can send you the file you need to update. Nice fix ![]() I haven't tested w/ schedules direct, so this is good to know. Glad to hear it's working. XBMC.MyLibrary (add anything to the library) ForTheLibrary (ForTheRecord & XBMC Library Integration) SageTV & XBMC PVR Integration Delete unused thumbs |
| find quote |
pkscuot
Fan Joined: Jan 2011 Reputation: 10 Location: Honolulu, HI |
2013-01-08 04:26
Post: #48
(2013-01-07 18:05)bradvido88 Wrote: I haven't tested w/ schedules direct, so this is good to know. Glad to hear it's working. Yea, I decided to go that route after the scare with the MCE guide data. BTW, what fields are "required" for ForTheLibrary to run successfully? I'll probably add the same logic to all those fields just in case. Add-ons I maintain: Artist Slideshow: http://wiki.xbmc.org/index.php?title=Add..._Slideshow SpeedFan Information Display: http://wiki.xbmc.org/index.php?title=Add...on_Display |
| find quote |
pkscuot
Fan Joined: Jan 2011 Reputation: 10 Location: Honolulu, HI |
2013-03-20 23:43
Post: #49
I'm seeing something that I'll classify as an undesirable behavior (rather than an outright bug). If I am recording two shows that end at the same time, only one of them shows up in the library. I can see in the file system that both shows are getting moved and renamed properly, and if I manually run another library scan, the other show appears in the library just fine. It seems like somehow having the ArgusTV post processor running twice at the same time is causing the second library update to either abort or not happen at all.
Add-ons I maintain: Artist Slideshow: http://wiki.xbmc.org/index.php?title=Add..._Slideshow SpeedFan Information Display: http://wiki.xbmc.org/index.php?title=Add...on_Display |
| find quote |



Search
Help