Last active
December 14, 2020 13:44
-
-
Save anthonyeden/9be481ad0d9ccc109d9e243daff7720b to your computer and use it in GitHub Desktop.
FFmpeg - Streaming to Icecast from Line In (192Khz FLAC)
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
ffmpeg -list_devices true -f dshow -i dummy |
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
ffmpeg -stats -report -f dshow -i audio="Audio Input Device Name" -c:a flac -compression_level 10 -ar 192000 -legacy_icecast 1 -content_type application/ogg -ice_name "DemoStream" -f ogg icecast://source:[email protected]/test1 |
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
ffmpeg -f avfoundation -list_devices true -i "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment