Question / Help Multiple resolutions in one stream?

FireBird397

New Member
so i had recently tired streaming with restream with obs and I am using 1920 x 1080 but there is a platform that i am multi streaming to that only allows 600 x 1067 pixles and if i use 1920 x 1080 it makes it cut most things off and i was wondering if there was anyway i could do two at the same time since i want everything to show
 

Tomasz Góral

Active Member
On local computer run nginx-rtmp service.
OBS send stream to local nginx-rtmp
Download ffmpeg
ffmpeg -i rtmp://localhost/live/my_source_stream -s 1280x720 -c:v libx264 -b:v 2500k -c:a copy -f flv rtmp://myother_rtmp_service

-s - resolution
-c:v codec video
-c:a codec audio

you can run ffmpeg many times.
 
Top