Media Server :: Record Microphone Modify In Realtime Bytearray?

Sep 16, 2011

I would like to access to microphone bytearray in realtime to modify the sound to record.How can i do this?

View 4 Replies


Similar Posts:


Media Server :: Microphone Activity Level At -1 Even Though Microphone.getMicrophone() Is Called, Why?

Oct 7, 2009

I'm setting up an application where I need to record users' voice every so often during the course of the users' interaction with the application.  Recording is fine, and the quality is fine, but now my issue is understandng how Flash handles the microphone when it gets attached to a stream for publishing.Basically, the problem is that when I "publish" my stream, the voice gets cut off (clipped) at the beginning.  So, I initially thought this may have to do with buffer settings on the FMS server side, but it wasn't. Then I investigated client side stuff.  For some reason, my internal mic .activityLevel property is -1 even though I have called Microphone.getMicrophone().  According to Flash's documentation, this shouldn't be the case:
 
activityLevel    propertyactivityLevel:Number  [read-only]Language Version :     ActionScript 3.0Player Version :     Flash Player 9The amount of sound the microphone is detecting. Values range from 0 (no sound is detected) to 100 (very loud sound is detected). The value of this property can help you determine a good value to pass to the Microphone.setSilenceLevel() method.If the microphone is available but is not yet being used because Microphone.getMicrophone() has not been called, this property is set to -1.I am using a timer to investigate the microphone .activityLevel property every 50 milliseconds:
 
package
{
import fl.controls.Button;
import fl.controls.TextInput;[code].....

View 1 Replies

Professional :: Record Sound Using A Microphone And Then Upload It To Server?

Jun 29, 2010

What I want to know is if it is possible to record a sound clip using a microphone and then upload it to the server using a swf applet in a webpage. Im an experienced java/javascript programmer but just starting out with flash/action script. What technologies will I need to do this? Can I do this simply using simply an swf file and an apache/php or jsp page?

View 2 Replies

Media Server :: Using FMS As Realtime Video Monitoring

Jan 5, 2011

I have some experience with FMS and Red5 development for simple online video publishing application, I am not sure if FMS is viable for my new application). Here is the requirement

1. I need record real-time video to disk file from a 8-way video-capture-card.(the card is supported by FMS). The recording procedure starts just after the system startup without any manul operation by user. In another words, I need the recording procedure start with the Windows automatically without interaction

2. If the answer to my first question is YES, then: If the FMS record videos from a 8-way video-capture-card, with 640pxX480px each way. What is the minimal requirement on the hardware? A machine with 2.0GHz CPU with 512MB, is it enough?

3. What is the best practice do you think to organization the 7x24 video record files?

View 3 Replies

Media Server :: Streaming Live Video In Realtime?

Aug 11, 2010

I am a Wedding/Events Photographer/VideographerOne of my client want his events be live streamed over internet, I am quiet new for this type of jobas to what Software / Hardware I have to purchase for Live Streaming of Video over Internet.. and how it will encode in realtime.?

View 8 Replies

Media Server :: Record Streams In Chunks On Flash Media Server?

Jul 22, 2009

I want to record a stream which is published with Flash Live Encoder to FMS 3.5, but split the recording in files with predefined length. For example if a stream 'webcam' is published I want to record it in chunks of 10 minutes: 'webcam1.flv', 'webcam2.flv' ... From what I can tell there's no facility to work with timers. The only solution I could think of was using stream.record() with a time limit parameter but that seems like a hack because it triggerstStream.Record.DiskQuotaExceeded on the stream when the recordin should stop and start recording another chunk. Has anyone done something similar?

View 10 Replies

Actionscript 3 - Flash 10.1 - Applying Realtime Effects To Microphone?

Feb 9, 2011

I'm trying to write a flash application which takes a Microphone stream and applies realtime effects and outputs this back to the speakers. I'm finding I'm having problems with stuttering when taking the output from the mic, copying this into a ByteArray amd then using a seperate

sound = new Sound();
sound.addEventListener(SampleDataEvent.SAMPLE_DATA, processSound);
sound.play();

to read from this ByteArray and play back the sound.I have noticed that the input from the mic's bytesAvailable changes, and also that the two events (the mic's SAMPLE_DATA and the sound's SAMPLE_DATA) aren't firing A B A B A B A B like would be needed but is more random.

Am I right in thinking that the mic.SAMPLE_DATA event fires at different intervals with different amounts of data and a working implementation would need to read the available data in and buffer the input so that the Sound SampleDataEvent would always have something to play back to avoid the stuffering?

View 1 Replies

Media Server :: Can't Continue To Record Stream With Record Mode "append"

Apr 11, 2012

I develop failover fms application with server-side action script. But i have a problem that FMS can't continue to record stream with record mode "append".
 
Environment: FMS 4.5.1 r484 on CentOS 5.5/6.0
 
Goals:

I have 2 same data streams in failover application and republish primary to livepkgr application.

I have to store of last 10 hours intact recorded video (DVR).
 
Failover app logic:

1. I create NetConnection and NetStream to livepackager;

2. When primary stream is connected it attach the primary stream to livePackager NetStream

3. If primary stream is disconnected it reattach the backup stream to livePackager NetStream
 
Problem: I have testing environment. It stop primary stream every 5 min, and started primary stream 5 min after stopping.
 
It work's, fine, but after a few hours testing LIVEPACKAGER falls. It can't record a stream, NetStream.Record.Start -> NetStream.Record.NoAccess -> NetStream.Record.Stop
 
Search a solution: I try to relaunch recording process and have no success. try to shutdown/start livepackager, it's same, try to restart server, same no success.
 
I cant stream.clear() or record with mode "record" cause it clears my dvr cache, I cant clean stream directory in livepackager application.

[Code]....

View 5 Replies

Media Server :: Mute Microphone Using AS3?

May 28, 2009

how can i mute microphone using AS3?

View 2 Replies

Media Server :: Possible In FMS To Record Thumbnails Of A Streaming Video In The Server Side?

Dec 8, 2009

to generate thumbnails of the streaming video to control de contents of the video streaming. Could I do that in the server side?There is any setting to do that? Could I use the getOnMetadata method to catch a bitarray and then put in into a bitmap file?

View 1 Replies

Media Server :: Application Doesn't Have Permissions For Server-side Record/append Of Streams

Aug 12, 2011

I have configured FMS on Amazon EC2 I am trying to capture data from my webcam and push it to the server.For storing the webcam i created a new folder  but as it is recommended in other forums "You need to replace the signed Live application (main.far) with main.asc in[FMS-Install-Dir]/samples/applications/live/ ;(For more Info: refer to documentations & live/readme.txt) "I am not able to locate samples folder from where i can get my main.asc file

View 4 Replies

Media Server :: Detecting If Microphone Connected To System Or Not

Mar 5, 2010

I want to write a code in Flash to detect whether user's microphone is connected to system or not. My application records from users microphone, now while recording is accidentally or intentionally user's microphone gets unplugged from system then I want to show a message to user. Is this possible to do in flash. I have tried many thing but didn't succeeded. Few thing what I tried are mic.getMicrophone method, this method only returns the sound card of the system, but didn't tell you anything about microphone is connected or not.

View 1 Replies

Media Server :: Mixing In Live Streaming Microphone And MP3

Nov 4, 2010

We intend to develop a Flex client application the user to send audio from your microphone and mp3 at the same time to a server that Flash Media Server.It would be a mix of microphone and music in mp3 that is playing in the application at the same time transmitted to the listeners.What will be the version of Flash Media Server that enables this mixing of audio from microphone and music played on the client in flex?

View 1 Replies

Media Server :: Flash - Player Security Pop Up When Using Camera And Microphone?

Aug 25, 2010

how to remove flash player security pop up for camera and microphone through coding.

View 4 Replies

Media Server :: Record Audio From A Mic And Save It To A Fms Server?

Mar 27, 2012

im looking for a script that can record audio from a mic and save it to a fms server i came across a video email script but would like to have just a audio one that can do the samething as the video email with out the video part.

View 2 Replies

Media Server :: How To Record Audio (dj App)

Nov 5, 2009

I want to create dj mixer aplication (AS2). Something like this: ttp://activeden.net/item/dj-mixer/10276How I can record sound?

View 1 Replies

Media Server :: Unable To Record Into FMS 3.5?

Jun 17, 2010

i have fms installed on a server, say server1. my flash files (swf) which allows user to record audio is on server 2. in the swf file, the connection is set as follows: nc.connect("rtmp://server1/test");
 
im able to view flash videos on server2 which streams from server1. however, i cannot upload any recording to the above directory. does the recording goes to the application or webroot folder? do i need to set any authentication to connect to server1(fms) from server2(swf)??

View 1 Replies

Media Server :: Microphone Sound Recording,saving / Playing Flv File Is Saved But Not Working

May 4, 2009

While recording the flv is saved inside applications/stream/samples/audio.flv. But it is not working properly.[code]

View 1 Replies

Media Server :: Record Audio MP3 Format?

Nov 17, 2008

How can we record audio in Flash Media server as MP3 format?

View 1 Replies

Media Server :: Record Client Pc's Sound?

Sep 11, 2009

i know the way to capture the mic's sound,My idea is to make an application to record songs palyed by other app,like Windows Media Player,Yes, Just capture from the soundcard,

View 3 Replies

Media Server :: Stream With One Bitrate, Record Another?

Mar 17, 2010

this may be really dumb question, but I haven't figured it out. Is it possible to stream to ustream with lets say 300 bitrate and record 1000 bitrate video to computer

View 4 Replies

Media Server :: FMS Can Record Computer Sounds

Jul 22, 2010

FMS can record computer sounds, I use flash to do a piano, it can play sound, I want record the sounds, FMS can record it?

View 4 Replies

Media Server :: Record Video From Webcam?

Oct 26, 2010

Am trying to record video from my webcam.

here is my code
 
[code]...
 
When i click record_btn, flash asks me permission to access my webcam. If i alow in the screen i am able to see live video. But I want to store the video and replay it.

View 16 Replies

Media Server :: Record Streams Directly In H.264

Jan 10, 2011

Flash Media Interactive Server 3.5 or later supports recording of  streams using the H.264 codec, directly on the server. Archive  high-quality live streams so you can quickly deploy the content on  demand  after your live event is over, and use the free F4V flattener  utility to prepare your file for video editing using Adobe Premiere Pro  CS5."
 
there is no problem to record the stream in flv format but i don't find a way to record using h.264 compression

View 8 Replies

Media Server :: Record In Default Vod Application?

Feb 3, 2011

I'm trying to record a  video to the default FMS vod application with a flash movie, i'm getting this error: "NetStream.Record.NoAccess". I think the problem is not in my code, but just to make it sure, here is it:
 
var mycam:Camera = Camera.getCamera();
mycam.setMode(320,240,25);
var myvid:Video = new Video(mycam.width,mycam.height);

[code]...

i checked and the connection to the server is fine.if i use live streaming, than it's fine (of course in this case i use the live application).It's maybe a file system related problem. I use windows 7, and given all permissions for all the users.. still dont working.

View 4 Replies

Media Server :: How To Record The Group Meeting

Mar 5, 2011

'm writing an application using FMS in which I'm supposed to create a audio/video meeting between two or more people. I need to record this group session over FMS but unable to get an idea how to do it?

View 1 Replies

Media Server :: Record A Multicast Stream?

Mar 9, 2011

I create a local netconnection, and the netgroup on the server side. How can I record the stream that is published to a netgroup?

View 1 Replies

Media Server :: Record And Streaming Playback

Apr 4, 2011

when I heard that Amazon cloud services are now including FMS for a marginal increase in cost. So all I am looking to do is:
 
1) Record off a web cam and store the video using FMS

2) Play the video stream using FMS.

View 1 Replies

Media Server :: How To Record MP4 File In Flash

Jun 13, 2011

How to record video file in MP4 format with H.264  codec and also i would like to know that how i will set codec type in flash as3.

View 6 Replies

Media Server :: Record Videos With New Names

Aug 30, 2011

I'm using Flash AS3 to stream and record videos on my RTMP server, I'm suing this command ns.publish("mystream", "record");The problem happenes when the connection is down for any reason and the stream stops. My flash App start streaming automatically , but it over right the previous video coz they have the same name, I want to change the recorded video name "ex:myvideo1.flv" without changing the stream publishing name "mystream".

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved