Is it possible to stream live video & audio from device cameras & mics to a server?

I would like to know if I can use flash builder to stream live video and audio from Android & IOS device cameras and mics to a media streaming server such as Flash Media Server or Wowza? I know the Android & IOS APIs allow for this but can it be done using Flex/Actionscript? The key here is "live" so you wouldn't want to have to wait for video and audio files to complete on the disk before sending it out. Ideally you would send it out via RTMP or HTTP streaming to stream out but any stream would do since once it gets to the server you can encode it.

Hi
Yes, It's can do but There is a problem on IOS 8 when Switch Camera, Microphone is muted and Sound return when I press home button from my iphone out and press app again for few second
You can use as same as flash desktop video streaming for coding in mobile.
Good luck
Zing1911

Similar Messages

  • Stream Live Video + Audio to Apple TV - No Audio

    Hello, I am trying to setup an adhoc video conferencing solution
    Streaming Live Video + Audio from a lecture theatre to a breakout room in the same building
    So far I have tried 3 approaches over Airplay:
    1: iPad Air (8.1) (as a camera + microphone) using the built in video app to stream to a Mac Mini (Yosemite), using Reflector
    2: iPad Air (8.1) (as a camera + microphone) using the built in video app to stream to an Apple TV
    3: Webcam connected to a Mac Mini to stream to an Apple TV
    All 3 options show the Video however I can't hear the audio
    I know that the audio is working because if I record a clip and play it back you can hear the audio on the TV
    Can anybody recommend some software, either for the iPad or the Mac which would allow me to transmit the Video + Audio Live?
    My preference is not to use a web based system, so that all data is kept on the local network
    Thank you in advance for your help
    Jeremy

    Welcome to the Apple Community.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Check AirPlay is turned on on the Apple TV (turn it off and on if it already is)
    Check that both devices are on the same network (Settings > Wifi, on the mobile device and Settings > General > Network, on the Apple TV).
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router. (Also try removing it’s power cord for at least 30 seconds)
    Restart your mobile device.
    If you are still having problems, the following article(s) may help you.
    Troubleshooting AirPlay
    Troubleshooting Wi-Fi networks and connections
    Recommended Wi-Fi settings
    Wifi Diagnostic Software (for Mac users)
    You may also find some help on this page, where I’ve collected some of the more unusual solutions to network issues.
    When making adjustments to your network for better optimisation, you may find some of the points mentioned on this page helpful.

  • Is it possible to stream live video from a camera to an iPad3 via bluetooth or a cable?

    Is it possible to stream live video from a camera to an iPad3 via bluetooth or a cable?
    I want to use my iPad as a screen for a reversing camera in my van and want to know if this is possible. do i need a bluetooth camera and is there a specific one that will connect to the iPad? Or is there any form of adaptor that I can plug the camera straight into the iPad?
    Any ideas?

    no
    only "live" thing one can do is to airplay mirror the screen of a ios device or a newer mac with mtn lion

  • Is it possible o stream live video from an ipad to an apple tv

    is it possible to stream live video from an ipad to an apple tv?

    http://support.apple.com/kb/HT4437
    Regards.

  • I am streaming live video (CCTV set up) to iPod Touch. Is it possible to playback info (i.e. using iPod as a DVR?)

    I am streaming live video (CCTV set up) to iPod Touch. Is it possible to playback info (i.e. using iPod as a DVR?)

    I know of no way.

  • Streaming Live Video to I-Phone

    Are there specifications for streaming live video to I-Phones?
    I work for a webcasting co. and we would like to offer our webcasts to our clients via their cell phones. I haven't been able to find any documentation relative to live video streaming to an I-Phone.

    Hi,
    Since the iPhone browser can play MPEG-4 movies, it should be able to play streamed MPEG-4. Flash and Windows Media isn't an option.
    Fortunately QuickTime Broadcaster is free, but you'd need a QuickTime Streaming Server to "bounce" the stream off. Setup Broadcaster to do an MPEG-4 video that's within the playable specs (given that it's a live stream, you'd want something as small as possible, so I'm sure the iPhone could handle it). If you're wanting your clients to access the stream over 3G as well as WiFi then you'd need to keep that in mind when determining the video size/bandwidth.
    Greg

  • I stream video/audio from my iPhone to AppleTV and it works fine. I want to use headphones on the iPhone so I can stream the video and listen on the headphones, but Airplay will not allow me to select both AppleTV and headphones, I can only select one.

    I stream video/audio from my iPhone to AppleTV (like YouTube) and it works fine. I want to use headphones on the iPhone so I can stream the video to AppleTV and listen on the headphones, but Airplay will not allow me to select both AppleTV and headphones, I can only select one. How can I watch AppleTV and listen on the headphones?
    Thank you.

    have the same problem. Im using iPad 3 and Apple TV. id like to use the ipad as wireless earphones while i watch the video on the tv. is that even possible?

  • Can I stream live video from mobile to fms using flashlite?

    Can I stream live video from mobile to fms using flashlite?
    I Know flash lite 4 also not access the mobile camera.  But, I need to develop a application it captures the mobile camera and stream the vedio to fms server and display the live event to other mobile users.
    Is it possible? 
    If possible what are the technologies i can use?
    Thanks for the help in adavance
    Prasad

    i have made a few test with Flash Lite 3.0 and Flash Media Server 3  and I have to say that it is pretty easy to stream FLV Video files and  Live Video from local web camera to mobile phone. Here are a quick  instructions how to do it in Windows (I will publish Linux version  later).
    Play FLV-video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    There are a few sample FLV files in applications/vod/media folder, so you can use one of them for testing
    Create a new Flash Lite 3.0 file in Flash
    Add a new Video symbol to library
    Drag this Video symbol to Stage and give instance name to it: video
    Type following programming to timeline:
    // make a new video-object
    var video:Video;
    // make a new NetConnection-object
    var nc:NetConnection = new NetConnection();
    // check connection status from server
    nc.onStatus = function(info:Object):Void {
      status_txt.text=info.code;
      if (info.code == "NetConnection.Connect.Success") {
        startStreaming();
    // start streaming video to phone
    function startStreaming() {
      ns = new NetStream(nc);
      ns.setBufferTime(5);
      video.attachVideo(ns);
      // play sample.flv from server
      ns.play("sample",0);
    // show info to user
    status_txt.text = "Connecting server...";
    // connect FMS 3 video on demand service (default port 1935)
    nc.connect("rtmp://your.server.ip.here:1935/vod");
    Go to Publish Settings...
    Set Local playback security: Access network only
    Publish your SWF-file
    Send your SWF-file to your phone
    Test and you should see FLV-video playing in your phone
    Play live video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    Install Flash Media Encoder 2 (Windows only)
    Start Flash Media Encoder 2
    You should see your live camera in Input screen
    Press Start-button to start sending live video to Flash Media Server 3
    Create a new Flash Lite 3.0 file in Flash
    Add Video symbol and programming as you did earlier
    Modify your programming:
    // in startStreaming()-function
    // Flash Media Encoder 2 publish stream name is "livestream"
    ns.play("livestream",-1,-1,true);
    // start connection to Flash Media Server 3
    // Flash Media Encoder 2 publishes Flash Media Server's default
    // live publishing point, so connect it
    nc.connect("rtmp://your.server.ip.here:1935/live");
    Publish, test and enjoy
    box office movies

  • Question About streaming live video with FMS3

    Thank you very much for you efforts ...
    I've tested an exciting tutorial about   streaming live video with Flash Media  Server 3.5..
    every thing went good and i could see my webcam  broadcast from my machine through my web site  but unfortunately  I can't see it from any  other machine
    I'm using Microsoft windows XP SP2
    and flash  media live encoder 3
    but my web server run UNIX
    is this a  problem???
    Please send me feedback if its possible
    thank you very  much

    Dear Janaki
    Thank you very much for you efforts ....
    i've done what you asked me exactly
    this is what i got when I've opened the URL from my machine which runs the FMS
    #Date: 2010-03-25
    #Fields: x-category    x-event    date    time    x-pid    c-ip    cs-bytes    sc-bytes    x-sname    sc-stream-bytes    x-file-size    x-file-length    x-status    x-comment
    session    connect    2010-03-25    23:11:17    7932    127.0.0.1    3073    3073    -    -    -    -    200    -
    session    connect    2010-03-25    23:12:43    7932    127.0.0.1    3073    3377    -    -    -    -    200    -
    stream    play    2010-03-25    23:12:43    7932    127.0.0.1    3139    3451    mylivestream    0    -    -    200    -
    and when i opened it from another machine nothing changed or added to the log file
    is it a problem with my webserver ??? its Lunix server and my OS is windows???
    thank you very much

  • Mid 2011 mbp i7 with a SSD has problems, including grey screen/blue screen/beeping/freezing when I stream live video (i.e. watch espn or time warner cable) Help? Ideas?

    Recently my Macbook Pro (June 2011, i7, 8gb RAM, 512gb SSD, AMD Radeon 6750, Mountain Lion - since July - currently 10.8.2) has been presenting me with an array of problems, usually initiated when I am streaming live video. I was streaming Time Warner Cable on 12/9 and it gave me what looked like the blue screen of death.  It started up after about five attempts that time. The other day, after about a week of not using the computer, it wouldn't boot past the grey screen. I (option) started it and it gave me two boot choices, the regular HD and a "10.8 restore" option.  The HD gave me the grey screen and the restore option gave me the dark blue screen. I reset PRAM and that didn't work.  After a force (x) start it worked.  Today, I was using "Watch ESPN" and the screen froze and the computer did some kind of repeating RAM beep or something.  I rebooted and it started up fine.  I'm not watching any videos anymore, but this is a problem since the primary purpose for my mbp is video editing. I'm still under AppleCare but I find more solid answers in the forums or at least better questions for the AppleCare people.
    Anybody have similar experiences, or a solid idea of what the heck has happened to my machine?

    I'm not really sure what method that person was talking about. I just read he had a successful install so I posted it.
    But I'll hazard a guess
    1. copy your entire drive to a backup drive
    2. boot into that drive and test it out - make sure its a flawless backup, it works, and the hard drive has no problems
    3. eject that drive, disconnect it and reboot into the leopard install dvd
    4. erase your main hard drive using disc utilities on the leopard install dvd -- you've made a backup, made sure that backup was good, and disconnected it so it's currently safely disconnected from the leopard install you're about to do. Also, on the hard drive you're erasing and installing leopard on to, many people recommend "Zeroing" it as well as erasing it. That option is part of the erase function in disc utilities on the leopard install disc.
    5. do a clean install of leopard
    6. follow step 4 from that original post exactly as that person described to do.
    7. read the rest of what they said
    That's pretty much it. With the backup/erase/clean install/import/ you pretty much get everything you need exactly the way you want it with very few things missing -- and you've done this over a clean install. Plus that poster did mention that you can select what you want to import from your backup hard drive.
    It sounds like its a "clean install" method that gives you control via "import from machine" option in the installer. Control over what parts of your "old mac" you want to import into your "new leopard mac".
    Hopefully that helps. It sounds more involved, but its actually pretty quick and provides you with a perfectly save backup in case anything goes wrong with the leopard install.

  • Streaming live video from iPad Air to an projector

    I would like to stream (IPad air) a live video to an projector visa Wi-Fi

    toks2003 wrote:
    ..I am a student trying to work on a project that requires streaming live video from an I.P. camera i have posted this topic earlier and a good friend refered me to this forum. I am not anybody's good friend, as it happens. Also, on your [first thread|http://forums.sun.com/thread.jspa?threadID=5445888], I recommended that ..
    ..If you think your thread will do better there, mention it and I'll get a moderator to move it...which would have been a better option than starting a new thread.
    It is good you took up at least dome of the recommendations, particularly code tags and indenting code, but there were also a number you seem to have missed. To save others the effort of writing what has already been said and seemed to be ignored, I recommend:
    - They look at that thread first.
    - You read it carefully again.

  • Its possible to stream one video at the same time to three appletv2?

    Its possible to stream one video at the same time to three appletv2?

    Welcome to the Apple Community.
    You can't stream a movie to more than one device at a time from iTunes. You can however stream the same (or indeed a different) movie from multiple Apple TVs although they won't necessarily be in sync.

  • Can someone tell me how to stream live video?

    Can someone tell me how to stream live video to my ipad?

    Someone could give you better and more exact information but you didn't include the model number of your computer. But I can give you a pretty generic answer. At the top of this webpage you should see Product Support. Click on Laptops and then select which model of Toshiba computer you own, ie Satellite, Tecra, etc. Finally type in the model number of your computer. Select the exact model number and click the red Go button to the right. Click the Downloads tab and look thru the different drivers for this computer. Make sure that the new video driver is newer and has a higher version number than your current video driver. If it does, click the Download button, click the Run button and let it do the installation. Afterwards, reboot the computer so that the latest drivers are fully installed. Try again with that game.

  • Possibility to stream 1080p video direct to monitor, while filming?

    hi there,
    is there any possibility to stream a video directly to an output-device like a display, while the iphone is filming?
    i need it because i´m interessted in the creative use of back coupling.
    thx a lot for your help

    No. sorry.

  • Stream live video - use http or rtmp protocols from player code?

    I'm trying to stream live video for the first time. I've installed FMIS 3.5 without Apache 2.2. I'm confused on the RTMP/HTTP protocol usage,
    I can only have port 80 opened on our FMIS 3.5 box.
    1. I've created a new directory under "C:\Program Files\Adobe\Flash Media Server 3.5\applications" called "livedev" as my publishing point.
    2. Question:
         Do I need to copy main.asc, Application.xml, allowedHTMLdomains.txt, allowedSWFdomains.txt to this directory as well?
    3. Question:
         Using FMLE 3 - FMS URL parameter which protocol do I need to use, does it matter 'http' or 'rtmp'? - http://localhost/livedev or rtmp://localhost/livedev
         Does RMTP use port 80.
    4. Question:
         In my Flash Player code. I dragged an instance of FLVPlayback component, what URL do I need for the 'Source' parameter?
         Which protocol do I need to use, does it matter 'http' or 'rtmp'? - "http://localhost/livedev/livestream" or "rtmp://localhost/livedev/livestream"
    Thanks,
    Dave

    A:
    2.  You don't need to copy main.asc unless you have logic in there that you want on your new application.  It's a text file so you can open and read it, get familiar.  allowedDomains is up to your security policy, but if you want it to apply to that application then yes.  Finally the Application.xml in there is an override of the default one in the server's conf directory - so you only need to include it if you plan on overriding settings from the default.
    3.  Chosing which type dictates whether or not you're doing HTTP (not streaming) or RTMP (streaming) however you've added a complication that you're only allowed to use port 80 - which RTMP does not by default.  FMLE doesn't support HTTP push to FMS, so the FMS URI must be fomr form of RTMP* so you're left with some good choices
    Use RTMP over port 80 like so rtmp://myServerName:80/appName/ <- notice the coded port number
    Use RTMPT which automatically uses port 80 and will get around most proxies that demand HTTP traffic - however there's more performance overhead than RTMP (think maybe 25% more overhead for a wild guess on my part)
    I dunno the answer for your FLVPlayback component but I'm going to take a guess that the issue is about the same here and you should use the same parameter that you're using for your RTMP ingest.  At worst I'm pretty sure that it will work and that's not so bad.
    Asa

Maybe you are looking for

  • Code to parse java code

    anyone know where we can get the code that parses the Java code that we put here ? i was thinking it would be a good base to use as a pre-compiler project - so we can have pre-compiler flags like in c - say to include logging ... example of the code

  • How do you get the per process I/O through Sigar

    I want to know whether there is any way that one can gather the per process I/O i.e. disk read/write performed solely by a particular process through SIGAR. As far as I know only system parameters relating to specific processes(like system CPU, Mem)

  • 6500 with 2 SUP's/do the GIG ports on the backup SUP work, when in backup?

    Hey I'm bout to install a 6500 series with 2 SUP engines, one for primary and one for backup in the same chassis. My question is: Do the fiber/GIG ports on the backup SUP engine work, when it is in backup mode, or ONLY when the SUP engine is in prima

  • SQL using analytical function

    Hi all, I want an help in creating my SQL query to extract the data described below: I have one table example test containing data like below: ID     Desc     Status 1     T1          DEACTIVE 2     T2          ACTIVE 3     T3          SUCCESS 4    

  • Repeating Subforms after applying Usage Rights

    Hi Guys, I've been going crazy trying to get this problem solved over the last couple of weeks. I unfortunately can't post the PDF due to privacy issues, but I'm hoping you might be able to point me in the right direction for what might be causing th