Hakkin / twitchpipe

Pipe your favorite Twitch streams to the media player of your choice, or a file to save them for later. Supports low-latency playback.
MIT License
35 stars 5 forks source link

Feature: stop the recording at the desired size #22

Closed jedai47 closed 1 year ago

jedai47 commented 1 year ago

Is it possible ?

Hakkin commented 1 year ago

You can do this with standard unix utilities, for example twitchpipe username | head -c 104857600 > recording.ts, -c is the filesize in bytes, 104857600 = 100MB

jedai47 commented 1 year ago

thanks yeah just did it with pv

jedai47 commented 1 year ago

thanks