INTERACT FORUM
More => Old Versions => Media Center 15 (Development Ended) => Topic started by: StFeder on June 28, 2010, 11:14:42 am
-
I've searched the forum, studied the wiki and did try&error with MC but I didn't get it :(
What I am trying to do is to create two calculated fields.
One, which contains a sign (like *) if a file was played today and another one which does the same for files played within the last 12 hours. But I cannot figure out how it could be done. And I'm sure it's possible...
Could anybody give a hint?
-
Played Today: http://yabb.jriver.com/interact/index.php?topic=56487.0 :)
To turn that into a calculated library field that displays *, use: if(isequal([last played],formatdate(now(),dd//MM//yyyy),8),*,) paying attention to the comments in the linked post regarding locale differences.
"In the last 12 hours" is not so easy to query, still working on that ...
-
I already found that thread and read it. Didn't work :-\
Now it does :D Expressions are to complex for me, I think...
Thanks for your fast help!! Looking forward to your 12h solution ;)
-
Just a question concerning the 12h-Problem:
I was playing around with the (stock-)smartlist "audio -- Top Hits -- listend to today". Isn't it possible to have a calculated field that just looks if a file is in this smartlist? Smartlists can - as you know better than me of course - be easy set to include files played within the last x hours, minutes, days etc. I tried the something like if(isequal([playlist], ID, 8),*, )
Didn't work. Shouldn't it work? I tried to use playlist name and playlistID as well.
-
I think this works for 'last 12 hours': if(isrange([last played,0],math(now()-0.5)-now()),!,)
I used an exclamation mark to differentiate between these and the "Today" results, but haven't played enough tracks recently to test the results conclusively...
Does it work for you?
EDIT:
It's frustrated me for many years that playlists cannot be referenced by the expression engine, so, the answer to your question, as you have found, is unfortunately, "no".
-
Hm, it doesn't work (I did copy&paste). It marks ALL files. Even those I never played.
Thanks anyway! I'm happy to have at least the indicator for played today. Just one last question: possible to mark files played "yesterday"? Would be a nice workaround for parties which go over midnight :)
-
Feder can you paste this
if(isrange([last played,0],math(Left(FormatNumber(now(),5),5).mid(FormatNumber(now(),7),6,7)-0.5)-now()),!,)
and see if you get the correct ones
-
Hm, it doesn't work (iI did copy&paste). It marks ALL files. Even those I never played.
I'm not sure why it doesn't work for you, as it's working perfectly here, with the exclamation marks dropping off as the 12 hours pass since last played.
if(isrange([last played,0],math(now()-0.5)-now()),!,)
Lasse_Lus, I'm not sure if you see something different, but,
math(Left(FormatNumber(now(),5),5).mid(FormatNumber(now(),7),6,7)-0.5) and math(now()-0.5) both produce the exact same result here?
Could it be that some locales use a comma instead of a decimal point? If that is the problem, then wouldn't [last played,0] suffer the same issue, requiring "replace([last played,0],/,,.)" to bring into line with the range check? "replace()" won't work directly on the "now()" function, but does work if you create a calculated library field using simply now() and then use the following expression: replace([Current Date (Raw)],/,,.)
Dates, numbers and locales must be a right pain for developers!!
Just one last question: possible to mark files played "yesterday"? Would be a nice workaround for parties which go over midnight :)
This ought to take care of that...
Played Yesterday: if(isequal([last played],formatdate(math(now()-1),dd//MM//yyyy),8),Y,)
-marko
-
Lasse_Lus, I'm not sure if you see something different, but,
nope, i'm learning from you :)
i wrote in your "Smartlists for "Played today" and "Played Yesterday"" thread about this, and when using math and decimals there will be issues if you don't use the same internal settings as MC does..
i myself use a calculated field as you have recommended, and i forgot about the replace function, so it's a better choise :)
-
Feder can you paste this
if(isrange([last played,0],math(Left(FormatNumber(now(),5),5).mid(FormatNumber(now(),7),6,7)-0.5)-now()),!,)
and see if you get the correct ones
It works. I don't understand how or why, but it does. Thanks!
This ought to take care of that...
Played Yesterday: if(isequal([last played],formatdate(math(now()-1),dd//MM//yyyy),8),Y,)
This doesn't work. Anyway: A field showing the files played the last x hours does the trick for me!
math(Left(FormatNumber(now(),5),5).mid(FormatNumber(now(),7),6,7)-0.5) and math(now()-0.5) both produce the exact same result here?
For me math(now()-0.5) always returns 0.
Big thanks to both of you!!