The application does already remove special characters from the title, but I may have missed one. Can you give me some examples? Here's the regex pattern that I'm using: Code: video.title.replace(/[@&~=\/:?#|]/g, "_") + ".mp4" If anyone knows of any characters that I need to add, let me know.
video.title.replace(/[@&~=\/:?#|]/g, "_") + ".mp4"