I've already checked that (check earlier in the thread):

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 libopus0                                                   - Opus
codec runtime library
i   liquidsoap-plugin-ogg           - audio streaming language -- Ogg plugin
i   liquidsoap-plugin-opus          - audio streaming language -- Opus
plugin
i   liquidsoap-plugin-vorbis        - audio streaming language -- Vorbis
plugin

- Marius

Den 19.12.2014 22:09, skrev Sarah k Alawami:
> Try seeing if you have the appropiate libraries installed on your server 
> wherein liquid soap is installed. If you have the default package i believe 
> vorbus is installed by default. I have not tried yet to do vorbus but I can 
> maybe try to see if that works. 
>> On Dec 19, 2014, at 12:45 PM, Marius Flage <[email protected]> wrote:
>>
>> Hi!
>>
>> Noone has any idea about this? It would be nice to be able to stream
>> vorbis/opus.
>>
>> - Marius
>>
>> Den 16.12.2014 08:53, skrev 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

Reply via email to