work great • HDMI capture cards not so much • Look for DirectShow / Video4Linux2 / AVFoundation compatibility • Good microphone is critical • Do use a stand, you’re not Michael Bay. Camera Computer
if you can - YouTube, Twitch.tv, etc. • Commercial: Adobe Media Server, Wowza, Akamai… • Opensource: Apache (module), Nginx (module), … Streaming server
{ server { listen 1935; # Listening on port 1935 chunk_size 4096; application bedroom { live on; # Live broadcast hls on; # Enable HLS as well hls_path /tmp/hls; # Store HLS segments in /tmp/hls # Compatibility options wait_video on; # Make client wait for video packet wait_key on; # Make client wait for video keyframe allow play all; # Allow playback from all devices #deny publish all; # Standard syntax to limit sources } } }