Advertisement
Guest User

Untitled

a guest
Jul 8th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. avconv -re -i test.mp3 -c:a libmp3lame -content_type audio/mpeg -b:a 128k -legacy_icecast 1
  2. -ice_name "Raspi Test Stream of MP3" -f mp3
  3. icecast://:mypwd@icecast.servername.com/my/mount/point/url
  4.  
  5. #!/bin/bash
  6. #
  7. # stream.cfg
  8. #
  9. # WiFi Settings
  10. #
  11. wifi_name=mywifi
  12. wifi_password=mywifipwd
  13. #
  14. # Icecast Server Settings
  15. #
  16. icecast_server=icecast.server.com
  17. icecast_port=443
  18. icecast_mount_url=/user/mountpt/url
  19. icecast_show="RPi Demo Show - autostart"
  20. icecast_description="Test of Stream from RPi USB Audio to Spreaker"
  21. icecast_user=""
  22. # Source password
  23. icecast_password=sourcepwd
  24. #
  25. # avconv setting for Raspbian Jessie Lite
  26. # may not need if you're using a self compiled ffmpeg version
  27. #
  28. icecast_legacy=1
  29. #
  30. # Stream Settings - probably not safer to go higher unless great internet connection
  31. #
  32. stream_bitrate=128k
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement