Looking for a bulk episode renaming application for Linux

Vertelleus@beehaw.org to Free and Open Source Software@beehaw.org – 12 points –

Hey all. I'm looking for a bulk episode renaming application for Linux, preferably GUI. Before switching, I used Rename My TV Series 2 on Winblow. But I can't seem to get it to work on my Pop_os 22.04. Any good alternatives would be appreciated. Thanks!

Update: A lot of the suggestions seemed too high level for what I wanted; I don't care about how the images or posters look, I just wanted to remove the excess junk at the end of the episode names easily. The point is "H265 CougarDiverRips 1080p" isn't really important after I download it.

Solution: Rename My TV Series 2 Linux version kept giving sqlite errors even after installing required dependencies. So I installed the Winblows version with wine. Works as expected without errors, simple drag and drop select series and go.

19

You are viewing a single comment

Are these files that need renaming? You could open the terminal cd to the directory.

for filename in $(ls *.mp4); do
  if [[ "$filename" =~ some_file_match*.mp4 ]]; then
    modified_filename=
    cp $filename $modified_filename && rm $filename -f
  fi
done
1 more...