INTERACT FORUM

More => Old Versions => JRiver Media Center 24 for Windows => Topic started by: Manfred on April 22, 2018, 03:52:31 am

Title: Tagging of DVD, BD to mkv
Post by: Manfred on April 22, 2018, 03:52:31 am
Is there a default library field that is used to declare if the mkv rip is coming from DVD or BD or should one define a  new "User defined" field?
Title: Re: Tagging of DVD, BD to mkv
Post by: RD James on April 22, 2018, 05:26:38 am
I use this expression when renaming files so that I can have multiple copies of a film in the same directory:
Code: [Select]
If(IsEqual([File Type,0], mk3d), /(3D/),
If(IsEqual([Height,0], 2160, 2), /(UHD/),
If(IsEqual([Height,0], 1080, 2), /(HD/),
If(IsEqual([Height,0], 576, 2), /(DVD/),
If(IsEqual([Height,0], 480, 2), /(DVD/),
Delimit([Height,0], p/), /())))))
Perhaps that will be useful as an expression field.