How to custom build OBS to feed an ATEM Streaming Bridge

Опубликовано: 21 Август 2026
на канале: TVJAY
6,327
126

Want to feed an Blackmagic ATEM Streaming Bridge but don't have an ATEM Mini or Web Presenter? Well, you can customize/compile OBS from source and modify it to feed the ATEM Streaming Bridge. The best part is that these changes will NOT prevent you from streaming to YouTube or other providers as the output is still a valid RTMP feed.

Debian-based Build Directions:

https://github.com/obsproject/obs-stu...

flv-mux.c changes

Video Codec ID
Remove = enc_num_val(&enc, end, "videocodecid", VIDEODATA_AVCVIDEOPACKET);
Replace = enc_str_val(&enc, end, "videocodecid", "avc1");

Audio Codec ID
Remove = enc_num_val(&enc,end,"audiocodecid",AUDIODATA_AAC);
Replace = enc_str_val(&enc, end, "audiocodecid", "mp4a");

Encoder
Remove = enc_str_val(&enc,end,"encoder",encoder_name.array);
Replace = enc_str_val(&enc, end, "encoder", "Blackmagic Design AVC Encoder");