Hi,
I am trying a mass renaming of my movie files. The objective is to be able to tag low bitrate movies so that I can use Radarr to download a better version. What I want to do is set the source as "Webdl" wherever the bitrate is less than 5 mbps.
I am such a newbie using filebot so appreciate any assistance with this. I will be running this using CLI on Linux.
Many thanks
Set Source based on bitrate
Re: Set Source based on bitrate
Best to play with the Format Editor GUI before you copy & paste your format into your CLI call:
https://www.filebot.net/naming.html
e.g.
https://www.filebot.net/naming.html
e.g.
Code: Select all
{bitrate < 5_000_000 ? 'Low Bitrate' : 'High Bitrate'}
-
- Posts: 2
- Joined: 18 May 2019, 14:09
Re: Set Source based on bitrate
many thanks.
How could I move these low birate files into a special folder?
How could I move these low birate files into a special folder?
Re: Set Source based on bitrate
The code for that is exactly the same:
Code: Select all
/path/to/{bitrate < 5_000_000 ? 'Low Bitrate' : 'High Bitrate'}/{fn}