You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To easily change the name of the newly downloaded video, you can use the cmd command "os.rename".
import os
from redvid import Downloader
reddit = Downloader()
reddit.url = 'https://v.redd.it/c8oic7ppc2751'
reddit.download()
# Now You Can Rename
new_name = 'A hawk.mp4'
os.rename(reddit.file_name, new_name)
(Thanks to elmoiv for the answer)
The text was updated successfully, but these errors were encountered:
To easily change the name of the newly downloaded video, you can use the cmd command "os.rename".
(Thanks to elmoiv for the answer)
The text was updated successfully, but these errors were encountered: