List Info

Thread: amr-n/w plugin




amr-n/w plugin
user name
2006-03-14 11:45:31
hi!

I'm currently trying to evaluate helix dna server 11
regarding it's capability to encode live-audio in amr
(narrow and/or wideband) as well as serving amr-files. since
the binary distributions of helix dna seem not to include
the amr-plugins, I tried to compile it via CVS.

first I compiled the helix dna (BIF branch:
SERVER_11_0_STABLE, target: servinstall, profile:
helix-sever-plus). the resulting install-binary works fine.

afterwards I compiled the amr-plugins
(datatype_amr_codec_amr-wb & datatype_amr_codec_amr-nb).
I copied the resulting files amrw.so and amrn.so into the
Plugins-directory of the helix server. unfortunately the
helix server can't load the plugins at startup - error
message: "Not a valid library".

does anybody have an idea what I'm doing wrong here?
thanks a lot in advance,

michael

_______________________________________________
Helix-server-dev mailing list
Helix-server-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinf
o/helix-server-dev
amr-n/w plugin
user name
2006-03-15 19:02:00

The server does not need to have the codec plugins. It does not really care which codecs are being used within a file. It is only serving packets within a .3gp or .mp4 container or .amr container and that is all it needs to know.

Try compiling the amr fileformat in datatype/amr/fileformat and put it in the plugins directory and it should start streaming .amr files.

-Rishi.

At 03:45 AM 3/14/2006, Michael Kamleitner wrote:
hi!

I'm currently trying to evaluate helix dna server 11 regarding it's capability to encode live-audio in amr (narrow and/or wideband) as well as serving amr-files. since the binary distributions of helix dna seem not to include the amr-plugins, I tried to compile it via CVS.

first I compiled the helix dna (BIF branch: SERVER_11_0_STABLE, target: servinstall, profile: helix-sever-plus). the resulting install-binary works fine.

afterwards I compiled the amr-plugins (datatype_amr_codec_amr-wb & datatype_amr_codec_amr-nb). I copied the resulting files amrw.so and amrn.so into the Plugins-directory of the helix server. unfortunately the helix server can't load the plugins at startup - error message: "Not a valid library".

does anybody have an idea what I'm doing wrong here?
thanks a lot in advance,

michael

_______________________________________________
Helix-server-dev mailing list
Helix-server-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/helix-server-dev


Rishi Mathew
Software Development Engineer
Helix Community
Real Networks, Inc.
rmathewreal.com
http://www.helixcommunity.org
http://www.realnetworks.com/products/support/devsupport.html

amr-n/w plugin
user name
2006-03-16 10:16:18

Rishi Mathew wrote:
> Hi Michael,
> 
> The server does not need to have the codec plugins. It
does not really 
> care which codecs are being used within a file. It is
only serving 
> packets within a .3gp or .mp4 container or .amr
container and that is 
> all it needs to know.
> 
> Try compiling the amr fileformat in
datatype/amr/fileformat and put it 
> in the plugins directory and it should start streaming
.amr files.


Hi Rishi & thx for your reply!

I tried what you've suggested: I compiled the target
datatype_amr (with the same branch [SERVER_11_0_STABLE]
& profile [helix-server-plus] like I compiled the
server-installer - I guess that's important). I moved the
files amrw.so & amrn.so into the Plugins/ directory, but
when starting up Helix, I get the message:

C: /opt/helix/Plugins/amrn.so	Not a valid library
C: /opt/helix/Plugins/amrw.so	Not a valid library

when I try to access an AMR-file with RealPlayer, I get the
error:

"This server is not configured to play the data type
you requested. Please contact the Real Server Administrator
for assistance."

Don't know what I'm doing wrong.... :(

greetings,
mike


> -Rishi.
> 
> At 03:45 AM 3/14/2006, Michael Kamleitner wrote:
> 
>> hi!
>>
>> I'm currently trying to evaluate helix dna server
11 regarding it's 
>> capability to encode live-audio in amr (narrow
and/or wideband) as 
>> well as serving amr-files. since the binary
distributions of helix dna 
>> seem not to include the amr-plugins, I tried to
compile it via CVS.
>>
>> first I compiled the helix dna (BIF branch:
SERVER_11_0_STABLE, 
>> target: servinstall, profile: helix-sever-plus).
the resulting 
>> install-binary works fine.
>>
>> afterwards I compiled the amr-plugins
(datatype_amr_codec_amr-wb & 
>> datatype_amr_codec_amr-nb). I copied the resulting
files amrw.so and 
>> amrn.so into the Plugins-directory of the helix
server. unfortunately 
>> the helix server can't load the plugins at startup
- error message: 
>> "Not a valid library".
>>
>> does anybody have an idea what I'm doing wrong
here?
>> thanks a lot in advance,
>>
>> michael
>>
>> _______________________________________________
>> Helix-server-dev mailing list
>> Helix-server-devhelixcommunity.org
>> http://lists.helixcommunity.org/mailman/listinf
o/helix-server-dev
> 
> 
> *Rishi Mathew
> *Software Development Engineer
> Helix Community
> *Real* Networks, Inc.
> rmathewreal.com
> _ http://www.helixcommuni
ty.org
> <http://www.helixco
mmunity.org/> 
> http://www.realnetworks.com/products/support/devsupp
ort.html
> _
> 

-- 
------------------------------------------------------------
---------
Mag. Michael Kamleitner                                 
m-otion GmbH
kamleitnerm-otion.com                       Favoritenstraße
4-6/2/13
+43 1 205 705-21 (FAX -99)                               
A-1040 Wien

_______________________________________________
Helix-server-dev mailing list
Helix-server-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinf
o/helix-server-dev
amr-n/w plugin
user name
2006-03-18 16:19:25

If that doesnt work, try "datatype_group_audio" and make sure the following defines are in your profile:

HELIX_FEATURE_AUDIO_CODEC_AMRNB
HELIX_FEATURE_AUDIO_CODEC_AMRWB
HELIX_FEATURE_PLAYBACK_LOCAL

In this case, the build-system will try to build whatever is present in datatype/group/audio
A good way to understand what gets compiled and what doesnt is to look at the Umakefil in that directory

-Rishi.

At 02:16 AM 3/16/2006, Michael Kamleitner wrote:


Rishi Mathew wrote:
Hi Michael,
The server does not need to have the codec plugins. It does not really care which codecs are being used within a file. It is only serving packets within a .3gp or .mp4 container or .amr container and that is all it needs to know.
Try compiling the amr fileformat in datatype/amr/fileformat and put it in the plugins directory and it should start streaming .amr files.


Hi Rishi & thx for your reply!

I tried what you've suggested: I compiled the target datatype_amr (with the same branch [SERVER_11_0_STABLE] & profile [helix-server-plus] like I compiled the server-installer - I guess that's important). I moved the files amrw.so & amrn.so into the Plugins/ directory, but when starting up Helix, I get the message:

C: /opt/helix/Plugins/amrn.so ; &nbsp;Not a valid library
C: /opt/helix/Plugins/amrw.so ; &nbsp;Not a valid library

when I try to access an AMR-file with RealPlayer, I get the error:

"This server is not configured to play the data type you requested. Please contact the Real Server Administrator for assistance."

Don't know what I'm doing wrong.... :(

greetings,
mike


-Rishi.
At 03:45 AM 3/14/2006, Michael Kamleitner wrote:

hi!

I'm currently trying to evaluate helix dna server 11 regarding it's capability to encode live-audio in amr (narrow and/or wideband) as well as serving amr-files. since the binary distributions of helix dna seem not to include the amr-plugins, I tried to compile it via CVS.

first I compiled the helix dna (BIF branch: SERVER_11_0_STABLE, target: servinstall, profile: helix-sever-plus). the resulting install-binary works fine.

afterwards I compiled the amr-plugins (datatype_amr_codec_amr-wb & datatype_amr_codec_amr-nb). I copied the resulting files amrw.so and amrn.so into the Plugins-directory of the helix server. unfortunately the helix server can't load the plugins at startup - error message: "Not a valid library&quot;.

does anybody have an idea what I'm doing wrong here?
thanks a lot in advance,

michael

_______________________________________________
Helix-server-dev mailing list
Helix-server-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/helix-server-dev

*Rishi Mathew
*Software Development Engineer
Helix Community
*Real* Networks, Inc.
rmathewreal.com
_ http://www.helixcommunity.org
< http://www.helixcommunity.org/> http://www.realnetworks.com/products/support/devsupport.html
_

--
---------------------------------------------------------------------
Mag. Michael Kamleitner&nbsp; &nbsp; &nbsp;   ; &nbsp; &nbsp; &nbsp; &nbsp;   ; &nbsp; &nbsp; &nbsp; &nbsp;   ; &nbsp;  m-otion GmbH
kamleitnerm-otion.com &nbsp; &nbsp; &nbsp; &nbsp;   ; &nbsp; &nbsp; &nbsp; &nbsp;   ; Favoritenstraße 4-6/2/13
+43 1 205 705-21 (FAX -99)&nbsp;   ; &nbsp; &nbsp; &nbsp; &nbsp;   ; &nbsp; &nbsp; &nbsp; &nbsp;   ; &nbsp; &nbsp;  A-1040 Wien

_______________________________________________
Helix-server-dev mailing list
Helix-server-devhelixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/helix-server-dev


Rishi Mathew
Software Development Engineer
Helix Community
Real Networks, Inc.
rmathewreal.com
http://www.helixcommunity.org
http://www.realnetworks.com/products/support/devsupport.html

[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )