Advertisement
Guest User

Untitled

a guest
Nov 13th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. 2013/11/13 18:14:37 >>> LOG START
  2. 2013/11/13 18:14:36 [protocols.external:3] Found "/usr/bin/wget".
  3. 2013/11/13 18:14:36 [main:3] Liquidsoap 1.1.1
  4. 2013/11/13 18:14:36 [main:3] Using: graphics=[distributed with Ocaml] pcre=7.0.2 dtools=0.3.1 duppy=0.5.1 duppy.syntax=0.5.1 cry=0.2.2 mm=0.2.1 mad=0.4.4 dynlink=[distributed with Ocaml] fdkaac=0.1.0 alsa=0.2.1 ao=0.2.0 taglib=0.3
  5. .1 camomile=0.8.3
  6. 2013/11/13 18:14:36 [dynamic.loader:3] Could not find dynamic module for lame encoder.
  7. 2013/11/13 18:14:36 [dynamic.loader:3] Could not find dynamic module for aacplus encoder.
  8. 2013/11/13 18:14:37 [frame:3] Using 44100Hz audio, 25Hz video, 44100Hz master.
  9. 2013/11/13 18:14:37 [frame:3] Frame size must be a multiple of 1764 ticks = 1764 audio samples = 1 video samples.
  10. 2013/11/13 18:14:37 [frame:3] Targetting 'frame.duration': 0.04s = 1764 audio samples = 1764 ticks.
  11. 2013/11/13 18:14:37 [frame:3] Frames last 0.04s = 1764 audio samples = 1 video samples = 1764 ticks.
  12. 2013/11/13 18:14:37 [threads:3] Created thread "generic queue #1".
  13. 2013/11/13 18:14:37 [threads:3] Created thread "generic queue #2".
  14. 2013/11/13 18:14:37 [threads:3] Created thread "non-blocking queue #1".
  15. 2013/11/13 18:14:37 [threads:3] Created thread "non-blocking queue #2".
  16. 2013/11/13 18:14:37 [test:3] Connecting mount test for source@womble.noise.net.nz...
  17. 2013/11/13 18:14:37 [test:3] Connection setup was successful.
  18. 2013/11/13 18:14:37 [threads:3] Created thread "wallclock_icecast" (1 total).
  19. 2013/11/13 18:14:37 [input.alsa_4874:3] Using ALSA 1.0.27.2.
  20. 2013/11/13 18:14:37 [threads:3] Created thread "input.alsa_4874" (2 total).
  21. 2013/11/13 18:14:37 [clock.wallclock_icecast:3] Streaming loop starts, synchronized with wallclock.
  22. 2013/11/13 18:14:37 [input.alsa_4874:2] Falling back on interleaved S16LE
  23. 2013/11/13 18:14:37 [threads:3] Created thread "wallclock_alsa" (3 total).
  24. 2013/11/13 18:14:37 [clock.wallclock_alsa:3] Streaming loop starts, synchronized by active sources.
  25. 2013/11/13 18:14:37 [mksafe:3] Switch to safe_blank.
  26. 2013/11/13 18:14:38 [mksafe:3] Switch to warp_prod_4886 with transition.
  27. 2013/11/13 19:01:31 [warp_prod_4886:3] Buffer emptied, start buffering...
  28. 2013/11/13 19:01:31 [mksafe:3] Switch to safe_blank with transition.
  29. 2013/11/13 19:01:32 [mksafe:3] Switch to warp_prod_4886 with transition.
  30. 2013/11/13 19:49:19 [warp_prod_4886:3] Buffer emptied, start buffering...
  31. 2013/11/13 19:49:19 [mksafe:3] Switch to safe_blank with transition.
  32. 2013/11/13 19:49:20 [mksafe:3] Switch to warp_prod_4886 with transition.
  33. 2013/11/13 20:36:10 [warp_prod_4886:3] Buffer emptied, start buffering...
  34. 2013/11/13 20:36:10 [mksafe:3] Switch to safe_blank with transition.
  35. 2013/11/13 20:36:11 [mksafe:3] Switch to warp_prod_4886 with transition.
  36. 2013/11/13 21:22:41 [warp_prod_4886:3] Buffer emptied, start buffering...
  37. 2013/11/13 21:22:41 [mksafe:3] Switch to safe_blank with transition.
  38. 2013/11/13 21:22:42 [mksafe:3] Switch to warp_prod_4886 with transition.
  39.  
  40.  
  41.  
  42.  
  43.  
  44. [root@alarm tests]# cat live3.liq
  45. set("server.telnet",true)
  46. set("log.file.path","/tmp/outcast.log")
  47. radio = input.alsa(device="hw:0,0")
  48.  
  49. def lcd_ok() =
  50. system("/usr/bin/sudo /usr/local/bin/lcd.py 'Connected!'")
  51. end
  52.  
  53. def lcd_error(error) =
  54. system("/usr/bin/sudo /usr/local/bin/lcd.py 'Error!'")
  55. 5.0
  56. end
  57.  
  58. def lcd_disconnect() =
  59. system("/usr/bin/sudo /usr/local/bin/lcd.py 'Disconnected'")
  60. end
  61.  
  62. clock.assign_new(id="icecast",
  63. [output.icecast(%fdkaac(channels=2, samplerate=44100, bitrate=64, aot="mpeg4_he_aac_v2", transmux="adts"),
  64. host = "xxxxx", port = 8000,
  65. password = "xxxxxx", mount = "test", name="Outcast Radio", description = "Outcast demo stream",
  66. url = "http://www.outcastdigital.com",
  67. on_connect=lcd_ok,
  68. on_disconnect=lcd_disconnect,
  69. on_error=lcd_error,
  70. mksafe(buffer(radio)))])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement