srt-live-transmit/ save raw srt stream from OBS

asperi

New Member
I have srt-tools installed on Ubuntu 21.10 showing:
Built with SRT Library version: 1.4.2 SRT Library version: 1.4.2
Just trying to record 30 seconds of the raw SRT stream coming from OBS which is streaming on:
Code:
srt://127.0.0.1:10000?mode=listener
Looking to save as a .TS file. What would that command look like?
srt-live-transmit srt://127.0.0.1:10000 file://out.ts
Gets: "Unsupported target type"
Thanks in advance!
 

asperi

New Member
sudo apt install srt-tools
cd to the folder you want to save the file.. -t:60 > makes roughly a minute file
Code:
srt-live-transmit -t:60 srt://127.0.0.1:10000 file://con > test.ts
 

DSmith81

New Member
I have srt-tools installed on Ubuntu 21.10 showing:
Built with SRT Library version: 1.4.2 SRT Library version: 1.4.2
Just trying to record 30 seconds of the raw SRT stream coming from OBS which is streaming on:
Code:
srt://127.0.0.1:10000?mode=listener
Looking to save as a .TS file. What would that command look like?
srt-live-transmit srt://127.0.0.1:10000 file://out.ts
Gets: "Unsupported target type"
Thanks in advance!
just try it with ffmpeg
use it like this :
ffmpeg -i srt://:10000 -c:v libx264 -preset ultrafast -crf 20 -c:a aac -b:a 160k -vf format=yuv420p -movflags +faststart nameofyourvideofile.mp4
 
Top