Anon-Exploiter / ine-dl

Python script to download INE courses including labs, exercises, quizzes, slides, and, videos!
MIT License
17 stars 8 forks source link

Issue in filenames when downloading videos using aria2c #22

Open rramadan-syr opened 1 month ago

rramadan-syr commented 1 month ago

filename contains special characters that yields a windows errors. error code =16 solution: add the following code to line 440 of the ine.py file: forbid_chars = ["<", ">", ":", '"', "/", "\","|","?","*"] for char in forbid_chars: vid_name = vid_name.replace(char,"")

Anon-Exploiter commented 1 month ago

Feel free to make a PR, also share the screenshot of error as well.