Last active
December 17, 2015 04:29
-
-
Save danriti/5551369 to your computer and use it in GitHub Desktop.
FFMPEG FOR THE WIN!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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