2022-12-03 02:00:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# Execute with
|
2023-02-21 01:18:45 +00:00
|
|
|
# $ python -m yt_dlp
|
2022-12-03 02:00:26 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2023-02-21 01:18:45 +00:00
|
|
|
if __package__ is None and not getattr(sys, 'frozen', False):
|
2022-12-03 02:00:26 +00:00
|
|
|
# direct call of __main__.py
|
|
|
|
import os.path
|
|
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
|
|
|
|
|
|
|
|
import yt_dlp
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
yt_dlp.main()
|