Safe filenames #3
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Now,
AC/DC
is splitted into 2 directories, while it should be one artist directoryAC-DC
.Okay, yt-dlp has
S
format type in outtmpl for sanitizing string as filename.%(smth)#S
restricts almost all symbols except alphanumeric as I can see (also breaking Russian song/artist/album names)%(smth)S
correctly sanitizes filename, but has an interesting feature: it replaces slash with⧸ U+29F8 BIG SOLIDUS
I'm going to use S without # flag for the sake of simplicity. I don't know how to replace my own character set with
_
efficiently and without creating one more post-processor (could be used to modify filename atbefore_dl
).d8f0172e95