ffmpeg
git clone --depth 1 https://github.com/Ryu1845/twspace-dl
cd twspace-dl
pip install .
pip install twspace-dl
twspace_dl -i space_url
Here's the output of the help option
usage: twspace_dl [-h] [-t THREADS] [-v] [-s] [-k] [-i SPACE_URL] [-U USER_URL] [-d DYN_URL] [-f URL]
[-o FORMAT_STR] [-m] [-p] [-u]
Script designed to help download twitter spaces
optional arguments:
-h, --help show this help message and exit
-t THREADS, --threads THREADS
number of threads to run the script with(default with max)
-v, --verbose
-s, --skip-download
-k, --keep-files
input:
-i SPACE_URL, --input-url SPACE_URL
-U USER_URL, --user-url USER_URL
-d DYN_URL, --from-dynamic-url DYN_URL
use the master url for the processes(useful for ended spaces)
-f URL, --from-master-url URL
use the master url for the processes(useful for ended spaces)
output:
-o FORMAT_STR, --output FORMAT_STR
-m, --write-metadata write the full metadata json to a file
-p, --write-playlist write the m3u8 used to download the stream(e.g. if you want to use another downloader)
-u, --url display the master url
You can use the following identifiers for the formatting
%(title)s
%(id)s
%(start_date)s
%(creator_name)s
%(creator_screen_name)s
%(url)s
Example: [%(creator_screen_name)s]-%(title)s|%(start_date)s
There's an example service file there You'll have to modify different stuff depending on how you installed or not the script.
I'd be very grateful if someone made a PR with a bash script automating those ;)
In that case, you'll have to modify the WorkingDirectory
to where you cloned the repo.
- Change
WorkingDirectory
to where you want the spaces to be downloaded. - Find where your executable is by running
which twspace_dl
in your terminal. - Change the
/usr/bin/python twspace_dl
part to the path of your executable.
Now to install the service, you can either install it as a user service(recommended if on your personal desktop), or as a normal service.
- Copy the file you modified earlier to
~/.config/systemd/user
(create the systemd directory if it doesn't exist). - run
systemctl --user daemon-reload
systemctl --user start twspace-dl@USER_ID.service
USER_ID
is the part after https://twitter.com/
in the url of a twitter profile (i.e https://twitter.com/USER_ID
)
To keep it working after restarts run:
systemctl --user enable twspace-dl@USER_ID.service
- Copy the file you modified earlier to
/etc/systemd/system
. - run
sudo systemctl daemon-reload
sudo systemctl start twspace-dl@USER_ID.service
USER_ID
is the part after https://twitter.com/
in the url of a twitter profile (i.e https://twitter.com/USER_ID
)
To keep it working after restarts run:
sudo systemctl enable twspace-dl@USER_ID.service