|
|
|
06-24-2012, 11:35 PM
|
#601
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Oh, ho! 'Most illuminating. There are a number of metafiles that have, for example, a vProgramGenre tag, but it is blank! These passed the grep test, but your code caught the error.
Thanks, Jeff.
|
|
|
08-18-2012, 07:34 PM
|
#602
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Hey, Jeff, I have another request. For various reasons, I could make use of a parameter in the metafile of each video that details when vidmgr last pushed the video in question to a TiVo. If you decide to implement it, the feature should probably be optional, since many people may not want vidmgr to monkey with their metafiles, but when enabled, it could simply update the metafield with a timestamp that could later be readily sorted in a virtual share in vidmgr.
|
|
|
08-18-2012, 08:02 PM
|
#603
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Quote:
Originally Posted by lrhorer
Hey, Jeff, I have another request. For various reasons, I could make use of a parameter in the metafile of each video that details when vidmgr last pushed the video in question to a TiVo...
|
Let me think about this. Up until this point I never write out any metafiles. I'm away from home right now with no access to a PC. I'm not even sure if the metadata code I "borrowed" from Bill McBrine has logic to write out a file. If it does, it might not be too bad. The thing I need to guard against is that I already add items to the metadata in memory, and I'm not sure I want to write them out to disk. I'd need a method to prevent this. I'll let you know in a few days after I get back.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
08-18-2012, 09:52 PM
|
#604
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Surely. As always, I'm available for alpha testing, if you decide to move ahead with the idea.
|
|
|
08-23-2012, 10:45 PM
|
#605
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Leslie - I have it working, but I wanted to confer with you on some of the details.
1) There are multiple possibilities for the location of the meta file, including default.txt, and possibly a .meta subdirectory. Here is what I decided on. I NEVER overwrite a default.txt file. If a file named <path>/.meta/<title>.txt exists then I over-write it otherwise if <path>/<title>.txt exists, then I overwrite THAT. If neither exists, then I create a new file - if the .meta directory exists, I create it there, otherwise I create it in the same directory as the video file itself.
2) The format of the timestamp in the meta file. Initially I just had epochtime, but I decided on using the format that other timestamps are using: 2012-08-23T23:42:00Z. Right now I am using GM time (hence the Z) but I could easily use local time.
There is also a new config option - savepushdate - that defaults to false. It needs to be set to true for this logic to be activated.
Let me know what you think. I can finalize it and get it out in a few days.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
08-24-2012, 04:01 PM
|
#606
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Quote:
Originally Posted by jbernardis
Leslie - I have it working, but I wanted to confer with you on some of the details.
|
What a guy! 
Quote:
Originally Posted by jbernardis
1) There are multiple possibilities for the location of the meta file, including default.txt, and possibly a .meta subdirectory. Here is what I decided on. I NEVER overwrite a default.txt file. If a file named <path>/.meta/<title>.txt exists then I over-write it otherwise if <path>/<title>.txt exists, then I overwrite THAT.
|
'Sounds 100% to me.
Quote:
Originally Posted by jbernardis
If neither exists, then I create a new file
|
Well, that works great for me, but will it create an issue for anyone who has a default.txt file and no specific metafiles? Will you then copy the default.txt file to the new file and add the new field? Thinking about it briefly, it seems that would work. Personally, I'm OK with it no matter what, since all my videos have metafiles, but maybe someone else has objections I don't.
Quote:
Originally Posted by jbernardis
- if the .meta directory exists, I create it there, otherwise I create it in the same directory as the video file itself.
|
Once again, it sounds perfect, to me.
Quote:
Originally Posted by jbernardis
2) The format of the timestamp in the meta file. Initially I just had epochtime,
|
That's what I figured you might do.
Quote:
Originally Posted by jbernardis
but I decided on using the format that other timestamps are using: 2012-08-23T23:42:00Z.
|
Yeah, that works, too. As long as sorting by the field produes uniform results, which this does, it's fine. I suppose it doesn't hurt that it is human readable, either.
Quote:
Originally Posted by jbernardis
Right now I am using GM time (hence the Z) but I could easily use local time.
|
To my mind, it doesn't really matter.
Quote:
Originally Posted by jbernardis
There is also a new config option - savepushdate - that defaults to false. It needs to be set to true for this logic to be activated.
|
Of course. What will be the name of the tag?
Quote:
Originally Posted by jbernardis
Let me know what you think. I can finalize it and get it out in a few days.
|
I think it's super.
|
|
|
08-24-2012, 11:52 PM
|
#607
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Quote:
Originally Posted by lrhorer
..., but will it create an issue for anyone who has a default.txt file and no specific metafiles? Will you then copy the default.txt file to the new file and add the new field?
|
This is exactly what I do - the contents of the default.txt file will be written to the new file along, of course, with the new pushDate tag. The original default.txt file will be unaffected and will remain in force for the other files in that directory.
The problem is that the meta data dictionary that I build is actually a concatenation of default.txt, .meta/default.txt, <title>.txt and .meta/<title>.txt, and I have no representation for which data item came from which file. This creates an issue for this request of yours. With my "solution", the "New" meta file will actually overlay the data that was previously read in from the default file. It produces what you want and I don't think it's much of a compromise
Quote:
Originally Posted by lrhorer
Of course. What will be the name of the tag?
|
As mentioned above, the tag name is pushDate.
I am going to email you a zip containing the new files. If you could load it up and see if it works for you before I put it up on git, I'd appreciate it.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
08-26-2012, 01:59 AM
|
#608
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Quote:
Originally Posted by jbernardis
I am going to email you a zip containing the new files. If you could load it up and see if it works for you before I put it up on git, I'd appreciate it.
|
I'm sure it bounced. I have a new email address. You should have received a message from me on the new account.
|
|
|
08-26-2012, 02:17 AM
|
#609
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Quote:
Originally Posted by jbernardis
The problem is that the meta data dictionary that I build is actually a concatenation of default.txt, .meta/default.txt, <title>.txt and .meta/<title>.txt, and I have no representation for which data item came from which file. This creates an issue for this request of yours. With my "solution", the "New" meta file will actually overlay the data that was previously read in from the default file. It produces what you want and I don't think it's much of a compromise
|
Um, well, hold on. Perhaps I am mis-understanding. Vidmgr does not display the contents of a specific metafile along with the default.txt file when the video is selected, so why would the output be a concatenation? I think I understand what you mean by saying the dictionary does not know the file name whence the data came, but I don't see why the output (or input for that matter) would be a concatenation of default.txt and the other files, if they exist. Creating a new file with whatever text was available from an unspecified source (probably default.txt) is just fine, but outputting the union of default.txt and <video name>.<codec>.txt back to <video name>.<codec>.txt would cause real issues. Surely I misunderstand?
|
|
|
08-28-2012, 10:29 PM
|
#610
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
It IS a concatenation of sorts. If two or more files have the same tags, then the tags from the latter files will totally replace the tags from the earlier files. If, however, the first file has a unique tag, then that will survive the merge from the successive files. If I then write out a video specific meta file, then that unique tag will show up in the result because I don't record its ultimate source.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
09-19-2012, 09:06 AM
|
#611
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Jeff or William,
Is there a way for an external process on the server to determine if any HME app is in use at the present time? Over in the Linux thread on the Home Media forum I demonstrated a method to implement logrotate for pyTivo. It is fairly easy to check for an active pyTivo transfer, since such a transfer opens a file for reading or writing. Most of the pyHME apps don't seem to keep any particular file open when active, however, and it doesn't look like HME for Python spawns any easily recognizable threads when one of its apps is active. Of course, one can merely restart HME for python without worrying about whether one of its apps is active or not, but that would rather rudely dump the user out of whatever application he is running without warning.
|
|
|
09-19-2012, 10:46 AM
|
#612
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
I can't think of anything I'm doing in either of my apps that you could see from the outside. Perhaps from pyhme itself?
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
10-19-2012, 05:29 PM
|
#613
|
|
Registered User
Join Date: May 2004
Posts: 84
|
I have two shares (Tivo Share & Tivo Share2) on two different hard disks. Everthing shows up the way you'd think in pytivo and vidmgr.
I want to create a virtual share that combines the two shares. I've created a virtual share using the parameters:
[All Shows]
values=all
groupby=seriesTitle
display=file
sort=file
It almost does what I want, but not quite. I like to see empty folders displayed, the real shares show the folder and a zero count. I'd like to see the jpeg images for the folders in the list. Lastly, I would like my mpgs with no metadata.txt file to be grouped in the actual folders they reside in.
I get why I get the behavior I do. What I would like to achieve is a virtual share that displays everything the way the real shares do, but with the list of folders combined. Is that possible?
Thanks in advance.
|
|
|
10-19-2012, 11:49 PM
|
#614
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
That's a tough one. When I am building the virtual shares, I am working from a list of existing videos. The directory they're in just goes along for the ride - it doesn't drive the process. Even if I organized them by their directory (which I probably could relatively easily) there'd be nothing to point me to empty directories.
I'm not saying no - I just need to think about how it could be done. I'll let you know.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
10-20-2012, 09:32 PM
|
#615
|
|
Registered User
Join Date: May 2004
Posts: 84
|
Thanks for thinking about. I was hoping there was something already implemented that I was missing or not understanding.
|
|
|
10-22-2012, 04:54 PM
|
#616
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Why do you have shares on two different drives? The answer to that may provide the best means of handling your situation.
In the mean time, there are a number of possibilities, depending to some extent on the OS. For example, one solution might be to create a parent directory, share that directory, and then mount both hard drives in the parent directory.
Last edited by lrhorer : 10-22-2012 at 05:02 PM.
|
|
|
10-22-2012, 06:09 PM
|
#617
|
|
Registered User
Join Date: May 2004
Posts: 84
|
I have maxed out the first raid. So I added another. The OS is OSX.
Thanks.
|
|
|
10-23-2012, 12:55 AM
|
#618
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Quote:
Originally Posted by cweb
I have maxed out the first raid.
|
How can you "max out" a RAID system? What level of RAID?
Quote:
Originally Posted by cweb
So I added another. The OS is OSX.
|
Hmm, yeah. I don't know anything about RAID under OSX, but I did just a bit of reading, and it sounds like OSX is a rather poor choice for a RAID based server. I did see mention of an OSX version of ZFS, though. That might be a long term solution for you. In the mean time, mounting both drives under a single share, as I mentioned before, might work for you.
|
|
|
10-28-2012, 11:22 PM
|
#619
|
|
Registered User
Join Date: May 2004
Posts: 84
|
Quote:
Originally Posted by lrhorer
How can you "max out" a RAID system? What level of RAID?
|
I misspoke. I actually have two Drobos (kind of raid-ish).
Quote:
Originally Posted by lrhorer
Hmm, yeah. I don't know anything about RAID under OSX, but I did just a bit of reading, and it sounds like OSX is a rather poor choice for a RAID based server. I did see mention of an OSX version of ZFS, though. That might be a long term solution for you. In the mean time, mounting both drives under a single share, as I mentioned before, might work for you.
|
I'm not sure the single share will work for me. I'll investigate.
I don't need all of the items on my Vidmgr share list (e.g., empty folders showing up). If any were possible, it would be just that much better.
|
|
|
10-28-2012, 11:29 PM
|
#620
|
|
Registered User
Join Date: May 2004
Posts: 84
|
When pushing a show to my Tivo using vidmgr, that I previously downloaded via kmttg, it appears on the Tivo as if it was copyrighted (can only be streamed, not transfer again).
Is this due to vidmgr (or pytivo, kmttg, something else)? Thanks.
Last edited by cweb : 10-28-2012 at 11:37 PM.
|
|
|
10-29-2012, 12:36 AM
|
#621
|
|
Free Bradley Manning
Join Date: Aug 2003
Posts: 8,096
|
Quote:
Originally Posted by cweb
When pushing a show to my Tivo using vidmgr, that I previously downloaded via kmttg, it appears on the Tivo as if it was copyrighted (can only be streamed, not transfer again).
Is this due to vidmgr (or pytivo, kmttg, something else)? Thanks.
|
It's due to the push process. TiVo Inc. flags everything transferred this way. It doesn't happen if you pull.
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-11-2012, 12:59 PM
|
#622
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Hey Jeff,
How difficult would it be to allow the user to specify cover art for virtual shares? It would be rather nice if the following had cover art:
|
|
|
11-20-2012, 11:18 PM
|
#623
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Let me look at it. It should be doable.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-20-2012, 11:25 PM
|
#624
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Quote:
Originally Posted by cweb
Thanks for thinking about. I was hoping there was something already implemented that I was missing or not understanding.
|
Cweb - sorry it took so long to get back with an answer to this, but I don't think this will be too easy to do - I think I'm going to have to decline.
The problem is that for physical shares, the root directory is an integral part of the data structure, and for virtual shares, they know nothing about the physical structure of the disk - they're passed one video at a time for consideration for inclusion or exclusion. I just don't see how your request could be incorporated without some major design changes.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-21-2012, 11:09 PM
|
#625
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Quote:
Originally Posted by lrhorer
Hey Jeff,
How difficult would it be to allow the user to specify cover art for virtual shares? It would be rather nice if the following had cover art:
|
Leslie,
Adding the logic to display the images is not a great task. However, the difficulty arises when trying to decide WHERE the images need to be located. I don't think it's practical for you to specify a full path name in the ini file - that would be OK for the share itself but a potential nightmare if you needed to add an entry for all the different genre or actors. So I am thinking of the following:
Let's create a directory beneath the vidmgr directory -call it "artwork" or something like that. In there there'd be a jpg file whose basename is the exact name of the share (for example "Browse by Genre.jpg"). If there is no filename, no artwork is displayed. Potentially in there is also a directory named "Browse by Genre", and inside THAT directory would (potentially) be a file named "Action.jpg" or "Comedy.jpg". And a similar thing for the other virtual share types. A structure like this would be at most 3 layers deep with the current virtual share model I have.
The ONLY concern I have with this is that I can't always guarantee that the value of the meta data will form a legal file name. I guess I could add some logic to strip offending characters, but I'm not sure there's an easy OS independent way of doing that. Also, it would have to be a very well defined algorithm so that users would be able to predict what they need to name their files.
I'm still working on it.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-24-2012, 10:43 PM
|
#626
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Quote:
Originally Posted by jbernardis
Leslie,
Adding the logic to display the images is not a great task. However, the difficulty arises when trying to decide WHERE the images need to be located. I don't think it's practical for you to specify a full path name in the ini file - that would be OK for the share itself but a potential nightmare if you needed to add an entry for all the different genre or actors.
|
Yeah, that's clear.
Quote:
Originally Posted by jbernardis
So I am thinking of the following:
Let's create a directory beneath the vidmgr directory -call it "artwork" or something like that. In there there'd be a jpg file whose basename is the exact name of the share (for example "Browse by Genre.jpg"). If there is no filename, no artwork is displayed.
|
'Works for me.
Quote:
Originally Posted by jbernardis
Potentially in there is also a directory named "Browse by Genre", and inside THAT directory would (potentially) be a file named "Action.jpg" or "Comedy.jpg". And a similar thing for the other virtual share types. A structure like this would be at most 3 layers deep with the current virtual share model I have.
|
You lost me, there. I'm certainly not complaining, but why would there be, in effect, "sub-types"?
Quote:
Originally Posted by jbernardis
The ONLY concern I have with this is that I can't always guarantee that the value of the meta data will form a legal file name. I guess I could add some logic to strip offending characters, but I'm not sure there's an easy OS independent way of doing that.
|
It seems to me the user should be responsible for not creating illegal file names.
Quote:
Originally Posted by jbernardis
Also, it would have to be a very well defined algorithm so that users would be able to predict what they need to name their files.
|
I'm inclined to say you should just put the requirement in the docs and let the users worry about it. It's entirely up to you, of course.
Quote:
Originally Posted by jbernardis
I'm still working on it.
|
Many, many thanks!
|
|
|
11-24-2012, 11:42 PM
|
#627
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Quote:
Originally Posted by lrhorer
You lost me, there. I'm certainly not complaining, but why would there be, in effect, "sub-types"?
|
Ok - here's the idea. Suppose you had a "Browse by Genre" virtual share and you had genre of "Comedy" and "Action". In the main directory you'd have "Browse by Genre.jpg" which would be the artwork for that virtual share. You'd also have a "Browse by Genre" directory, and it would/could contain "Comedy.jpg" and "Action.jpg" and these would be the artwork for those genre. Because some of the virtual shares ALSO allow for a grouping metadata item, this essentially creates another layer of directories. I wasn't complaining about this - I was pointing out that because of this small limit, the job wouldn't be too daunting.
Quote:
Originally Posted by lrhorer
It seems to me the user should be responsible for not creating illegal file names.
|
But the issue is that the filenames are NOT created by the user - at least not directly - they are created from the metadata values. For genre, I don't see an issue, but, for example, Actor names could have special characters - umlaut's tildes, etc - that might result in illegal (or at least difficult to deal with) file names.
Maybe you're right - I could just put it on the user. If they have garbage metadata, they might end up with a screwy filename.
I'll proceed on that assumption. I don't think I'm too far away from having something. I've just been distracted lately trying to dig out from the hurricane. No major damage, but we have a house on Long Beach Island - yeah THAT Long Beach Island - that needs some attention. Compared to other people, we were very very lucky, and I'm grateful for that, but it still diverts my focus.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-25-2012, 12:00 AM
|
#628
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Quote:
Originally Posted by jbernardis
Ok - here's the idea. Suppose you had a "Browse by Genre" virtual share and you had genre of "Comedy" and "Action". In the main directory you'd have "Browse by Genre.jpg" which would be the artwork for that virtual share. You'd also have a "Browse by Genre" directory, and it would/could contain "Comedy.jpg" and "Action.jpg" and these would be the artwork for those genre. Because some of the virtual shares ALSO allow for a grouping metadata item, this essentially creates another layer of directories.
|
Ah, I see. 'Very thorough of you.
Quote:
Originally Posted by jbernardis
I wasn't complaining about this - I was pointing out that because of this small limit, the job wouldn't be too daunting.
|
Oh, I absolutely knew you weren't. I just wanted everyone to know I wasn't, either.
Quote:
Originally Posted by jbernardis
But the issue is that the filenames are NOT created by the user - at least not directly - they are created from the metadata values.
|
Oh, I see what you mean, and sometimes those values are created by automated processes, such as Metagenerator or the feed from Tribune Media.
Quote:
Originally Posted by jbernardis
For genre, I don't see an issue, but, for example, Actor names could have special characters - umlaut's tildes, etc - that might result in illegal (or at least difficult to deal with) file names.
|
Yeah, I see. perhaps it would be good to have Buildcache complain if it comes across something your code does not handle well, and so skips. Like many people, I am sure, I don't run Buildcache manually on a regular basis, but I certainly would run it if artwork on one of my shares was not showing up, or indeed right after adding any artwork.
Quote:
Originally Posted by jbernardis
Maybe you're right - I could just put it on the user. If they have garbage metadata, they might end up with a screwy filename.
|
Such is life. Yours is not devoted to making sure we don't ever make a mistake.
Quote:
Originally Posted by jbernardis
I'll proceed on that assumption. I don't think I'm too far away from having something. I've just been distracted lately trying to dig out from the hurricane. No major damage, but we have a house on Long Beach Island - yeah THAT Long Beach Island - that needs some attention. Compared to other people, we were very very lucky, and I'm grateful for that, but it still diverts my focus.
|
Dude, take care of your needs. You're doing this for fun. Anyone who doesn't like it can take a long walk on what's left of a short pier near that house.
|
|
|
11-25-2012, 01:29 AM
|
#629
|
|
Registered User
Join Date: Oct 2003
Location: Princeton NJ
Posts: 1,046
|
Thanks for the support, but believe me that when dealing with these kinds of issues, having a nice distraction like working on this software is therapeutic. It takes my mind off of things.
__________________
2 Series 3
1 HDTivo
1 Series 1 (Lifetime)
1 Win7 HTPC with Ceton Quad Tuner
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
|
11-25-2012, 03:32 AM
|
#630
|
|
Registered User
Join Date: Aug 2003
Location: San Antonio, Texas, USA
Posts: 6,806
|
Oh, well, there's that, I'm sure. If it keeps your bubble at the top of the glass in the level AND gets us great software, then I'm all for it!
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|