I just tried with Liquidsoap 1.0.0 from Ubuntu Server 12.04.3 LTS and there ogg/vorbis works perfectly. But since there's no support for opus in that version I wasn't able to test that as well.
- Marius Den 20.12.2014 14:54, skrev Marius Flage: > Tried building from source now, same problem: [clock.wallclock_main:2] > Source stream failed while streaming: Ogg.Not_enough_data! > > So, what now? How can I turn on the debugging? > > - Marius > > Den 20.12.2014 14:13, skrev Marius Flage: >> Hi! >> >> No, I installed from the apt repository, because I want to be able to >> maintain the installation by using the package manager. Doing this from >> source will just create a bastard system where I need to manually >> recompile whenever a new version comes. >> >> Can someone else who's got the Liquidsoap package installed try this and >> confirm that this is in fact a bug in the package provided by Ubuntu? >> >> I will try to install from source just to confirm this, but again, this >> needs to be fixed in the package. >> >> - Marius >> >> Den 20.12.2014 12:16, skrev Peter Retep: >>> Hi Marius, >>> >>> did you compile liquidsoap yourself? >>> There is a debug switch that can be enabled at ./configure >>> >>> ./configure --enable-debugging --disable-graphics >>> >>> yo can find my installation steps at >>> http://dev.radiopiloten.de/dokuwiki/doku.php/liquidsoap:installation >>> >>> please try with compiling yourself - this works for us (with ubuntu 10 to >>> 14). >>> >>> BR, Peter >>> >>> Am 16.12.2014 um 08:53 schrieb Marius Flage: >>>> Hi Peter, >>>> >>>> Nope, same problem. I wrapped noise() in mksafe(), like so: >>>> >>>> source = mksafe(noise()) >>>> >>>> But no, still the same error. >>>> >>>> If I change to %mp3 everything works fine immediately. >>>> >>>> - Marius >>>> >>>> Den 15.12.2014 23:18, skrev Peter Retep: >>>>> Hi Marius, >>>>> >>>>> you can try to put a mksafe() around your source. >>>>> i read the logs like there is no data to send, so mksafe around a source >>>>> should ensure this. >>>>> >>>>> we are streaming 24/7 using ogg and also successfully tested with opus, >>>>> so this should work in general. >>>>> >>>>> BR, Peter >>>>> >>>>> Am 14.12.2014 um 15:44 schrieb Marius Flage: >>>>>> Yup, the codecs are the ones from the package repository, so they should >>>>>> be the same arch. Any debugging info I can turn on? Any other >>>>>> suggestions? >>>>>> >>>>>> - Marius >>>>>> >>>>>> >>>>>> -------- Opprinnelig melding -------- >>>>>> Fra: John Plsek >>>>>> Dato:14.12.2014 15:13 (GMT+01:00) >>>>>> Til: [email protected] >>>>>> Emne: Re: [Savonet-users] Problem streaming with Vorbis >>>>>> >>>>>> Looks right. The only thing I can think of is that I can see in your >>>>>> posts that liquidsoap is i386 architecture, I take it the codecs are >>>>>> also i386? >>>>>> >>>>>> On 14 December 2014 at 23:59, Marius Flage <[email protected] >>>>>> <mailto:[email protected]>> wrote: >>>>>> >>>>>> I think so: >>>>>> >>>>>> i A libogg0 - Ogg bitstream library >>>>>> i A libvorbis0a - >>>>>> The Vorbis General Audio Compression Codec (Decoder library) >>>>>> i A libvorbisenc2 - >>>>>> The Vorbis General Audio Compression Codec (Encoder library) >>>>>> i A libvorbisfile3 - >>>>>> The Vorbis General Audio Compression Codec (High Level API) >>>>>> i A libopus0 - >>>>>> Opus codec runtime library >>>>>> >>>>>> These are the codecs, right? >>>>>> >>>>>> - Marius >>>>>> >>>>>> Den 14.12.2014 04:02, skrev John Plsek: >>>>>>> You've installed the plugins, but have you installed the codecs? >>>>>>> >>>>>>> On 14 December 2014 at 07:08, Marius Flage <[email protected] >>>>>>> <mailto:[email protected]>> wrote: >>>>>>> >>>>>>> Hi! >>>>>>> >>>>>>> I'm having issues streaming with the codecs ogg and opus. No >>>>>>> matter >>>>>>> which codec I use, I get the following error: >>>>>>> >>>>>>> 2014/12/13 21:04:10 [clock.wallclock_main:2] Source stream >>>>>>> failed while >>>>>>> streaming: Ogg.Not_enough_data! >>>>>>> >>>>>>> Googling suggests that I'm missing the codecs in question, but >>>>>>> I have >>>>>>> installed both the plugin for opus and for ogg: >>>>>>> >>>>>>> ii liquidsoap 1.1.1-6ubuntu2 i386 >>>>>>> audio streaming language >>>>>>> ii liquidsoap-plugin-faad 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- FAAD plugin >>>>>>> ii liquidsoap-plugin-flac 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- FLAC plugin >>>>>>> ii liquidsoap-plugin-icecast 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Icecast plugin >>>>>>> ii liquidsoap-plugin-lame 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Lame plugin >>>>>>> ii liquidsoap-plugin-mad 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Mad plugin >>>>>>> ii liquidsoap-plugin-ogg 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Ogg plugin >>>>>>> ii liquidsoap-plugin-opus 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Opus plugin >>>>>>> ii liquidsoap-plugin-pulseaudio >>>>>>> 1.1.1-6ubuntu2 i386 audio >>>>>>> streaming >>>>>>> language -- Pulseaudio plugin >>>>>>> ii liquidsoap-plugin-samplerate >>>>>>> 1.1.1-6ubuntu2 i386 audio >>>>>>> streaming >>>>>>> language -- Samplerate plugin >>>>>>> ii liquidsoap-plugin-taglib 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Taglib plugin >>>>>>> ii liquidsoap-plugin-voaacenc 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Voaacenc plugin >>>>>>> ii liquidsoap-plugin-vorbis 1.1.1-6ubuntu2 >>>>>>> i386 audio streaming language -- Vorbis plugin >>>>>>> >>>>>>> So what could be the problem here? This is the packages for >>>>>>> Liquidsoap >>>>>>> installed on Ubuntu Trusty 14.04.1. This is my configuration: >>>>>>> >>>>>>> #!/usr/bin/liquidsoap >>>>>>> >>>>>>> set("log.file.path", "/tmp/basic-radio.log") >>>>>>> set("server.telnet", true) >>>>>>> set("server.telnet.bind_addr","0.0.0.0") >>>>>>> >>>>>>> source = noise() >>>>>>> >>>>>>> output.icecast(%opus(bitrate = "auto"), >>>>>>> host = "host", >>>>>>> port = 8000, >>>>>>> password = "pass", >>>>>>> mount = "mount", >>>>>>> id = "stream", >>>>>>> start = true, >>>>>>> source) >>>>>>> >>>>>>> If I do %mp3 this works perfectly. >>>>>>> >>>>>>> - Marius >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------------------------------ >>>>>>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT >>>>>>> Server >>>>>>> from Actuate! Instantly Supercharge Your Business Reports and >>>>>>> Dashboards >>>>>>> with Interactivity, Sharing, Native Excel Exports, App >>>>>>> Integration & more >>>>>>> Get technology previously reserved for billion-dollar >>>>>>> corporations, FREE >>>>>>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>>>>>> _______________________________________________ >>>>>>> Savonet-users mailing list >>>>>>> [email protected] >>>>>>> <mailto:[email protected]> >>>>>>> https://lists.sourceforge.net/lists/listinfo/savonet-users >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------------------------------ >>>>>>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >>>>>>> from Actuate! Instantly Supercharge Your Business Reports and >>>>>>> Dashboards >>>>>>> with Interactivity, Sharing, Native Excel Exports, App Integration >>>>>>> & more >>>>>>> Get technology previously reserved for billion-dollar corporations, >>>>>>> FREE >>>>>>> >>>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Savonet-users mailing list >>>>>>> [email protected] >>>>>>> <mailto:[email protected]> >>>>>>> https://lists.sourceforge.net/lists/listinfo/savonet-users >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >>>>>> from Actuate! Instantly Supercharge Your Business Reports and >>>>>> Dashboards >>>>>> with Interactivity, Sharing, Native Excel Exports, App Integration & >>>>>> more >>>>>> Get technology previously reserved for billion-dollar corporations, >>>>>> FREE >>>>>> >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>>>>> _______________________________________________ >>>>>> Savonet-users mailing list >>>>>> [email protected] >>>>>> <mailto:[email protected]> >>>>>> https://lists.sourceforge.net/lists/listinfo/savonet-users >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >>>>>> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >>>>>> with Interactivity, Sharing, Native Excel Exports, App Integration & more >>>>>> Get technology previously reserved for billion-dollar corporations, FREE >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Savonet-users mailing list >>>>>> [email protected] >>>>>> https://lists.sourceforge.net/lists/listinfo/savonet-users >>>>> ------------------------------------------------------------------------------ >>>>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >>>>> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >>>>> with Interactivity, Sharing, Native Excel Exports, App Integration & more >>>>> Get technology previously reserved for billion-dollar corporations, FREE >>>>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>>>> _______________________________________________ >>>>> Savonet-users mailing list >>>>> [email protected] >>>>> https://lists.sourceforge.net/lists/listinfo/savonet-users >>>> ------------------------------------------------------------------------------ >>>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >>>> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >>>> with Interactivity, Sharing, Native Excel Exports, App Integration & more >>>> Get technology previously reserved for billion-dollar corporations, FREE >>>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>>> _______________________________________________ >>>> Savonet-users mailing list >>>> [email protected] >>>> https://lists.sourceforge.net/lists/listinfo/savonet-users >>>> >>> ------------------------------------------------------------------------------ >>> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >>> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >>> with Interactivity, Sharing, Native Excel Exports, App Integration & more >>> Get technology previously reserved for billion-dollar corporations, FREE >>> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >>> _______________________________________________ >>> Savonet-users mailing list >>> [email protected] >>> https://lists.sourceforge.net/lists/listinfo/savonet-users >> ------------------------------------------------------------------------------ >> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >> with Interactivity, Sharing, Native Excel Exports, App Integration & more >> Get technology previously reserved for billion-dollar corporations, FREE >> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >> _______________________________________________ >> Savonet-users mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/savonet-users > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk > _______________________________________________ > Savonet-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/savonet-users ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
