INTERACT FORUM
More => Old Versions => Media Center 14 (Development Ended) => Topic started by: dasfoo on October 19, 2009, 01:23:58 am
-
Hi,
I just found out that we can use expressions like RemoveRight(), etc., to alter tags in bulk. Then I found this page at the wiki (http://wiki.jrmediacenter.com/index.php/Media_Center_expression_language) with all the expressions. This is great.
However, what seems to be missing, as far as I can tell, is any instruction on where in MC you can apply these expressions to make them useful.
Say I have a playlist or search view of a bunch of tracks to which I want to apply an expression (like removing the last 10 characters of the Name tag, ala RemoveRight([name],10)) -- where do I put this code to make it apply to the selected tracks?
Thanks!
-
In the file list, you can right click in the column of one of your selected files and choose 'rename' from the menu. The list then enters "inline edit mode"... type your expression in the edit box and press enter to have it applied to all files.
You could also enter the expression into the Name tag in the Tag window. It will state "Varies" when multiple files are selected. Click to edit, then type your expression in there, then press enter to apply it to all selected files.
When entering expressions in this manner, remember that the expression evaluator needs to be invoked, it does not happen automagically. You tell MC it's an expression rather than a string by adding a preceding equal sign: =RemoveRight([name],10)
Note that I've removed the final closing parenthesis from your example too, as it was one too many. Openers and closers must be equal in expressions.
Have fun,
-marko.
-
There's some more on the wiki if you're interested:
http://wiki.jrmediacenter.com/index.php/Database_Expressions
http://wiki.jrmediacenter.com/index.php/Database_Expressions_AND_OR_And_XOR
the latter entry was born out this (http://yabb.jriver.com/interact/index.php?topic=43624.0) thread
-
In the file list, you can right click in the column of one of your selected files and choose 'rename' from the menu. The list then enters "inline edit mode"... type your expression in the edit box and press enter to have it applied to all files.
You could also enter the expression into the Name tag in the Tag window. It will state "Varies" when multiple files are selected. Click to edit, then type your expression in there, then press enter to apply it to all selected files.
Ah, thanks! I had no idea about the context menu on the columns!