jim60105 / twitcasting-recorder

TwitCasting Recorder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TwitCasting Recorder [WIP]

Just another Python implementation of TwitCasting live stream recorder.

Usage

Install dependencies with pip install -r requirements.txt.
Install ffmpeg manually if you haven't.

usage: main.py [-h] [--proxy PROXY] [--user-agent USER_AGENT] [-o FILENAME] user_id

TwitCasting live stream recorder.

positional arguments:
  user_id               The user id to record.
                        i.e. the string after "https://twitcasting.tv/" in URL

optional arguments:
  -h, --help            show this help message and exit
  --proxy PROXY         Request with HTTP proxy. e.g. http://127.0.0.1:1080
  --user-agent USER_AGENT
                        Request with custom User Agent.
  -o FILENAME, --output FILENAME
                        File name to save recorded video.

Recorded videos are saved as MPEG-2 TS format, which is designed for live streaming.

You can simply remux them to MP4 format using ffmpeg:

ffmpeg -i xxx.ts -codec copy xxx.mp4

Thanks

License

MIT License (c) 2019 printempw

About

TwitCasting Recorder

License:GNU General Public License v3.0


Languages

Language:Python 100.0%