Extracting Videos from Tablo External Hard Drive

Yes, I did something similar and it works great:

output_file_ID = “Movie_name (year)”
print(“The resulting MP4 video file will be placed in:”, pathlib.Path.home().joinpath(“Videos”, (output_file_ID + “.mp4”)))
“-y”, pathlib.Path.home().joinpath(“Videos”, (output_file_ID + “.mp4”))

I also thought about changing the script to maybe concatenate 5 or 10 recordings in one script but I thought that maybe it may try to do them at the same time or maybe it won’t accept to rename the same variables. I may try it later.
I’ve recovered about 30 recordings in 2 hours so far… I’m trying to select the most important and with best rating.

Really be careareful with characters in file names, while graphical file managers may be tolerant and forgiving, working from the command line can be problematic.

You quoting it, may or may not be how the scripting language passes it or handel’s them.