2021-06-03 03:43:42 -06:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 05:06:16 -06:00
|
|
|
|
2012-11-29 07:11:24 -07:00
|
|
|
# Execute with
|
2021-12-30 05:23:36 -07:00
|
|
|
# $ python -m yt_dlp
|
2012-11-29 07:11:24 -07:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2016-02-14 02:37:17 -07:00
|
|
|
if __package__ is None and not hasattr(sys, 'frozen'):
|
2012-12-07 16:48:07 -07:00
|
|
|
# direct call of __main__.py
|
2012-11-29 07:11:24 -07:00
|
|
|
import os.path
|
2013-04-10 22:33:18 -06:00
|
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
2015-09-15 07:30:24 -06:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
|
2012-03-24 19:07:37 -06:00
|
|
|
|
2021-02-24 11:45:56 -07:00
|
|
|
import yt_dlp
|
2012-03-24 19:07:37 -06:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2022-08-30 09:28:28 -06:00
|
|
|
yt_dlp._IN_CLI = True
|
2021-02-24 11:45:56 -07:00
|
|
|
yt_dlp.main()
|