Skip to content

Instantly share code, notes, and snippets.

@danriti
Last active December 17, 2015 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danriti/5551369 to your computer and use it in GitHub Desktop.
Save danriti/5551369 to your computer and use it in GitHub Desktop.
FFMPEG FOR THE WIN!
# List audio devices
ffmpeg -list_devices true -f dshow -i dummy
# Pipe audio from Line In to another computer (192.168.1.17)
ffmpeg -f dshow -i audio="Line In (High Definition Audio " -acodec libmp3lame -ab 320000 -f rtp rtp://192.168.1.17:1234
# Listen to audio on destination computer
ffplay rtp://192.168.1.17:1234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment