How to add streaming live video code

in drmwvr mx how do i "embed" streaming video. what is the
code? if u can help or point me in the right direction that would
be great. i'm thinking of using windows media encoder. this is to
broadcast church service.
thanks

In Indesign create a frame, use Overlay creator panel to create a Web content overlay, in webcontent overlay paste the url as http://www.youtube.com/embed/Y4DhGDpnRnA
Click on Allow user interaction and auto play if required

Similar Messages

  • How do I stream live video on my website or via Quick Time?

    Okay, so I've searched these discussions and have found many people with the same question going unanswered.
    Basically. Our dog is at home, just out from surgery and we want to keep an eye on him from work.
    I've downloaded Quick Time Broadcaster to our MacBook and am using the built in iSight camera on it. I am able to broadcast via the application "Quick Time Broadcaster" and have been able to view the live video stream through Quick Time player from a second computer in our home. But I am unable to view the video at work using the same URL generated from QT Broadcaster. Maybe it's a firewall issue?
    But more so... I'd like to embed the stream into my personal website. What do I need to do to set that up? I've also downloaded and setup Darwin Streaming Server, but it doesn't make much sense to me at this stage in time as to how to get that running and linked up through my personal web site. Anyone know how to set that up? So I can do something like www.mysitename.com/petcam
    I'd like to be able to view the video via the web using an address similar to something like that, but via my personal web domain.
    Worse case... I'd like to at least be able to watch the stream via Quick Time player from work... like I can from home. Any work arounds or steps I'm missing so I can view this at home? Any help is greatly appreciated.
    Many Thanks

    Thanks for the link... lots of good stuff in there.
    I did read about EvoCam in another thread here. I was hoping it would of been as easy as writting some code into an HTML doc and uploading it to my webserver with the proper IP link. Guess it's not quite that simple... or complicated. I was also hoping to be cheap and not have to buy anything. The price of EvoCam at $25 bucks isn't so bad. I'll look into it when I get home this evening. There were also a few other applications at that link that seem to do the same thing. Wondering if they'll all give me the same results? Or is EvoCam the cure all with the best results and options...?
    Thanks for the input. Any further suggestions or comments are greatly appreciated.

  • How can I stream Live video?

    I'm working on a project where I take live video from an NTSC source. I'm looking for a simple program to import and allow me to take screen captures on the fly. I can edit it later. Can iMovie 09 do this...if so how?

    This is an AVCHD camera. On import the AVCHD is converted to AIC. So bottom line is, no streaming from this camera.

  • 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.

  • 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

  • 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

  • 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.

  • Any way to stream live video to an Ipad?

    I'd like to be able to stream live video to an Ipad.
    Is there any way to do that (before Ipad 2 comes out with ichat?)
    I don't need sound though I doubt that matters.
    Thanks.

    Thanks Chris. I really do mean stream video TO the iPad. The video source is going to be locally generated probably through a consumer camera, so sending that to a website just to get it feed to the iPad seems like a long way around and introduces a potential weak link.
    Is that really the only solution? There's no way to directly feed the iPad or use some sort of mirroring or any other trickery that will get the video on the Ipad?
    If that is the only solution, any suggestions how to set that up locally with a couple of laptops and a consumer video camera, and Wifi to minimize the use of the web? Would it be some remote monitoring software like that people use to keep an eye on their cat?

  • 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.

  • HT4437 How do you stream live tv from an abc app from my iPad 4 retina to my tv using Apple TV?

    How do you stream live tv from an abc app from my iPad 4 retina to my tv using Apple TV?

    you use airplay mirror
    if that does not work then it's because the app block the feature
    how you turn on airplay mirror
    http://support.apple.com/kb/ht5209

  • How do I transfer live video from the iPad to my Apple TV.  Seems there is a key stroke but I find no reference anywhere

    How do I transfer live video from the iPad to my Apple TV.  Seems there is a key stroke but I find no reference anywhere!

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

  • 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

  • How to add breakpoint in abap code

    when use <i><b>java</b></i> call abap code ,
    how to add breakpoint in abap code?

    Hi,
    To start the ABAP debugger from your java client you have to set the JCO client to debug mode:
    e.g.
    yourJCOClient.setAbabDebugMode(true)
    (hope thats the right method name:-)).
    And don't forget to set also a break point of type "External" in the function module you call from your java client. For debuging, the user which calls the FM has to be a SAP User of type "<b>Dialog"</b> and has to be the rights to call RFCs, ...

  • 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

  • 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

Maybe you are looking for

  • Unable to start Oracle Process Manager Service

    I installed EPM 11.1.2.1 on Windows 2008 R2. Oracle database 11g. I installed and configured every thing was working fine. But suddenly the Oracle Process Manager service is not starting. I checked in event viewer the following error i found: The Ora

  • IMAP - see deleted mail yes/no - auto expunge?

    Have a strange situation on IMAP. My phone. 1. If I delete on my iPhone: a) The message is copied to a Deleted folder b) The message is deleted from the Inbox c) An expunge is sent immediately and the message has totally left my Inbox 2. If I mark as

  • Agent Assignment - if no agent found

    Hi,   I have created a dialog work item. i have done agent assignment with position id.   My problem is  if  position id is not having users( in some cases)  then the workitem will go to whom? ,  how  can i resolve this . Thanks & Regards Sankar.

  • Some suggestions on the new release

    Hi all, I have some suggestions on JDev 10.1.3 - WSDL: a BPEL project in JDev 10.1.2 automatically creates a .wsdl file with the same name of the .bpel file, even if a project already has its own wsdl documents (with different names). If you try to d

  • What exacly does filtering by the "like" operator do?

    I'm using Apex 3.1 and in my interactive report I'm using the "Filter" option from the action menu. What exactly does the "like" operator do? For example if I have a string "male" does the like operator search for all words %male male% or %male% Than