Macromedia Flash Server - Recording audio without FCS?

This is Interesting: Free IT Magazines  
Home > Archive > Macromedia Flash Server > April 2005 > Recording audio without FCS?





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Recording audio without FCS?
Flashcoder

2005-04-07, 5:57 pm

Sorry if this question is not exactly on-topic, but does anyone know of a
way to record audio from the microphone (for playback later), without using
FCS?

Thanks,
David


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

hank williams

2005-04-07, 5:57 pm

This is definitely not possible in the browser. It might be possible using =
a=20
projector and some kind of plugin. But of course that kind of solution woul=
d=20
have little to do with flash actually.

Regards
Hank

On Apr 7, 2005 9:16 AM, Flashcoder <flashcoder-bJEeYj9oJeDQT0dZR+AlfA@public.gmane.org> wrote:
>=20
> Sorry if this question is not exactly on-topic, but does anyone know of a
> way to record audio from the microphone (for playback later), without=20
> using
> FCS?
>=20
> Thanks,
> David
>=20
> =3D-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =3D-----------------------------------------------------------
>=20
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Bill Sanders

2005-04-07, 5:57 pm

David,

You can record and save as an MP3 and stream it back using FCS in a SS
stream. However, like Hank, I know of no way to do this through the
browser--unless... Well, I haven't tried this, but have you tried
recording a stream w/o the video involved. Just create and record an
audio stream. I'm not sure, but would this not create an FLV file w/
only audio?

HTH,
Bill

On Apr 7, 2005, at 9:24 AM, hank williams wrote:

> This is definitely not possible in the browser. It might be possible
> using a
> projector and some kind of plugin. But of course that kind of solution
> would
> have little to do with flash actually.
>
> Regards
> Hank
>
> On Apr 7, 2005 9:16 AM, Flashcoder <flashcoder-bJEeYj9oJeDQT0dZR+AlfA@public.gmane.org> wrote:
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>

bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Flashcoder

2005-04-07, 5:57 pm

Thanks Bill.

No I have not tried that; actually, I'm not sure how? Could you elaborate
how this can be done with just client-side code?

Thanks again,
David


-----Original Message-----
From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
[mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Bill Sanders
Sent: Thursday, April 07, 2005 9:35 AM
To: hank williams; FlashComm Mailing List
Subject: Re: [FlashComm] Recording audio without FCS?

David,

You can record and save as an MP3 and stream it back using FCS in a SS
stream. However, like Hank, I know of no way to do this through the
browser--unless... Well, I haven't tried this, but have you tried
recording a stream w/o the video involved. Just create and record an
audio stream. I'm not sure, but would this not create an FLV file w/
only audio?

HTH,
Bill


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Bill Sanders

2005-04-07, 5:57 pm

David,

Do it the same as you would with a/v but just use a--

nc=new NetConnection();
nc.connect("rtmp/app/");
var someStream_ns:NetStream = new NetStream(nc);
someStream_ns.attachAudio(Microphone.get());
someStream_ns.publish("someName", record);

Let me know if it works. If it doesn't...forget who suggested it....

HTH,
Bill

On Apr 7, 2005, at 11:41 AM, Flashcoder wrote:

> Thanks Bill.
>
> No I have not tried that; actually, I'm not sure how? Could you
> elaborate
> how this can be done with just client-side code?
>
> Thanks again,
> David
>
>
> -----Original Message-----
> From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> [mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Bill
> Sanders
> Sent: Thursday, April 07, 2005 9:35 AM
> To: hank williams; FlashComm Mailing List
> Subject: Re: [FlashComm] Recording audio without FCS?
>
> David,
>
> You can record and save as an MP3 and stream it back using FCS in a SS
> stream. However, like Hank, I know of no way to do this through the
> browser--unless... Well, I haven't tried this, but have you tried
> recording a stream w/o the video involved. Just create and record an
> audio stream. I'm not sure, but would this not create an FLV file w/
> only audio?
>
> HTH,
> Bill
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>

bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

hank williams

2005-04-07, 5:57 pm

David & Bill,

As discussed earlier, I dont think you can do this with just client-side code.

Bill I think you forgot .

Hank

On Apr 7, 2005 12:00 PM, Bill Sanders <wdsanders-Wuw85uim5zDR7s880joybQ@public.gmane.org> wrote:
> David,
>
> Do it the same as you would with a/v but just use a--
>
> nc=new NetConnection();
> nc.connect("rtmp/app/");
> var someStream_ns:NetStream = new NetStream(nc);
> someStream_ns.attachAudio(Microphone.get());
> someStream_ns.publish("someName", record);
>
> Let me know if it works. If it doesn't...forget who suggested it....
>
> HTH,
> Bill
>
> On Apr 7, 2005, at 11:41 AM, Flashcoder wrote:
>
> bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Bill Sanders

2005-04-07, 5:57 pm

Hank,

That's the same client side code used for a/v with the video removed.
I'm going to test it later today and I'll let you know.

Bill

On Apr 7, 2005, at 12:06 PM, hank williams wrote:

> David & Bill,
>
> As discussed earlier, I dont think you can do this with just
> client-side code.
>
> Bill I think you forgot .
>
> Hank
>
> On Apr 7, 2005 12:00 PM, Bill Sanders <wdsanders-Wuw85uim5zDR7s880joybQ@public.gmane.org> wrote:
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>

bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Graeme Bull

2005-04-07, 5:57 pm

Bill.. they are talking about NOT using FCS though.



-----Original Message-----
From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
[mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Bill Sanders
Sent: Friday, April 08, 2005 1:37 AM
To: hank williams; FlashComm Mailing List
Subject: Re: [FlashComm] Recording audio without FCS?

Hank,

That's the same client side code used for a/v with the video removed.
I'm going to test it later today and I'll let you know.

Bill

On Apr 7, 2005, at 12:06 PM, hank williams wrote:

> David & Bill,
>
> As discussed earlier, I dont think you can do this with just
> client-side code.
>
> Bill I think you forgot .
>
> Hank
>
> On Apr 7, 2005 12:00 PM, Bill Sanders <wdsanders-Wuw85uim5zDR7s880joybQ@public.gmane.org> wrote:
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>

bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

hank williams

2005-04-07, 5:57 pm

Yeah, thats what were talking about

On Apr 7, 2005 12:42 PM, Graeme Bull <graeme.bull-lB/6vUJvybQOPmVbiNFCMNBPR1lH4CV8@public.gmane.org> wrote:
> Bill.. they are talking about NOT using FCS though.
>
>
> -----Original Message-----
> From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> [mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Bill Sanders
> Sent: Friday, April 08, 2005 1:37 AM
> To: hank williams; FlashComm Mailing List
> Subject: Re: [FlashComm] Recording audio without FCS?
>
> Hank,
>
> That's the same client side code used for a/v with the video removed.
> I'm going to test it later today and I'll let you know.
>
> Bill
>
> On Apr 7, 2005, at 12:06 PM, hank williams wrote:
>
> bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Bill Sanders

2005-04-07, 5:57 pm

Ok, ok....David said with just client-side code, and that ought to do
it. Even if you just used the Developer version of FCS. BTW, did anyone
try it yet to see what happens?

Bill

On Apr 7, 2005, at 12:42 PM, Graeme Bull wrote:

> Bill.. they are talking about NOT using FCS though.
>
>
>
> -----Original Message-----
> From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> [mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Bill
> Sanders
> Sent: Friday, April 08, 2005 1:37 AM
> To: hank williams; FlashComm Mailing List
> Subject: Re: [FlashComm] Recording audio without FCS?
>
> Hank,
>
> That's the same client side code used for a/v with the video removed.
> I'm going to test it later today and I'll let you know.
>
> Bill
>
> On Apr 7, 2005, at 12:06 PM, hank williams wrote:
>
> bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>

bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com