Streaming out video live

Is there a blackberry phone that will stream out video live to ustream like the iphone and android?  I want to do this with my tour. I would love to do this.  I'm debating on keeping my blackberry or getting the HTC EVO 4g
-ToNY
www.abovethefirehouse.com

Get a new phone.  Blackberry, including Playbook do not support ustream.  I'm on the verge on switching my phone and tablet over to apple.  I tried to remain loyal but day after day....the tablet is not supported.

Similar Messages

  • Use FMS & Actionscript to Stream Audio/Video and control (powerpoint) slides

    Hi there,
    My compnay provides webcasting services to numerous clients, and we currently use Windows Media Encoder as our base software for these projects.
    However, I'm interested in switching to Flash Media Server, but need to figure out one issue and how to implement it in such a way like how we are currently using Windows Media Encoder.
    We need a way to stream out a live audio/video feed AND have a way to control a presenter's POWERPOINT slides and have them advance by our command when streaming live.
    Basically, the way we do it is we will stream out audio/video from WME and also use the encoder's SCRIPTING functions to send out a "url"  from the encoder to the actual page in which the viewer is watching the live embedded stream.  On that page is an embeded/internal frame which we can specify (using the id/name) that the url gets loaded, and this actually advances the slides (or more so pulls up a pre-created html page of the next slide in the person's powerpoint, which is actually a screenshot or exported image of that slide and embedded within a specific HTML file and hosted on the same server as the embedded player/html file)
    Would there be a way to send out this same type of script using FMS?   I've been playing around with it and notice the interface itself does not have a built in scripting function like Windows Media Encoder does. However, I did read somewhere that it supports ActionScript... but I have no clue how to implement this feature.
    I am just curious how it might be able to go about doing this?  Is there a way to use an [action]script with FMS and have it send out a URL to a specific frameset embedded on the same page as the Flash Media Encoder Playback?
    Hopefully this make sense and that someone can point me in the right direction.  Switching to FMS over Windows Media Encoder is the way I would love to go, just need to figure out how this could be done.
    Would a better method be converting the powerpoint slides to a swf or flv file, embedding that file within the same page as the FMS playback, and somehow using a script to "advance" the frames/slides/scenes within that file?
    I also heard something about Flash "Shared Objects" and how this could be a way of controlling a swf file remotely.....
    Could anyone give me some advice and know a method that I could use to achieve this type of implementation?
    Any help is GREATLY appreciated!   Thanks!

    FMS (the interactive version, FMIS) has complete scripting support.
    What you want to do can be done with FMS, and there are a lot of ways you can approach it. Converting to .swf can be helpful, as it means you have a single resource to load rather than a bunch of individual slide images (the flashplayer can load .swf, jpg, gif, png). Rather than embedding, I'd opt to make it an external resource and load it at runtime... that would keep the player application reusable.
    To get an idea of how to use server side actionscript, see the getting started portion of the FMS 3.5 dev docs
    http://help.adobe.com/en_US/FlashMediaServer/3.5_Deving/
    Then, see the SSAS docs for the following classes in particular:
    The Client class for Client.call()
    The Stream class for Stream.send()
    The Shared object class
    The Application class for BroadcastMsg()
    The docs give some general overview for the usage of each. The best choice really depends on your deployment architecture and scalability requirements.

  • We reset the system and now I cannot watch video/live stream. What setting to I need to change?

    I cannot download any programs to allow access to video/live stream TV. What settings do I need to change?

    Welcome to Apple Communities
    Uninstall > http://fpdownload.macromedia.com/get/flashplayer/current/support/uninstall_flash _player_osx.dmg Finally, install Flash > http://get.adobe.com/flashplayer/otherversions

  • Live Streaming from Video File

    Hi everyone,,, im newbie in programming streaming video with flash....ater reading documentations i tried the instructions on doc, i got a question that i've not been solved. How to make a "live streaming" from "video file". It likes a live streaming from camera but it uses video file  as the source.... many thanks

    Do you mean you have video file but you want to publish it as live stream , am i right? If yes following is the solution, but before that let me clarify you will need server to do it , i mean there is no way Flash client (i.e. .swf file running in Flash Player) can publish file from local disk.
    Now let me tell you how to do it from server:
    Place your video file under "streams" folder of your application i.e. say "myVideo.flv" under  <FMS root>/applications/myApp/streams/_definst_
    Now write following code in your main.asc file (this file would be under <FMS root>/applications/myApp )
    var mystream;
    application.onAppStart = function(){
         mystream = Stream.get("livestream");
         mystream.play("myVideo",0,-1,true);
    This will publish "myVideo" file as live stream under name of "livestream". Client would have to subscriber using NetStream and
    use ns.play("livestream",-1,-1)
    You might have to write some extra code if you want to loop same file else once play of recorded file gets over , live publish will automatically stop.
    let me know if this solves your problem

  • Multiple out streams from one Live in stream

    Hi,
    Just wondering is there a viable way to get FMS to stream out
    different bitreates from one live stream?
    /A

    Hi Matthew,
    Welcome to SDN!
    Here is some on-line help. Let me know if you have any other questions.
    http://help.sap.com/saphelp_nw04/helpdata/en/4e/4a75bb7fe211d4b2c50050da4c74dc/frameset.htm
    Cheers! Bill

  • How to stream audio / video in java?

    Hello.
    I would live to develop a java application (JavaEE, with tomcat or JBoss) that could stream audio / video over the Internet, on a controlled matter.
    First, I would have to embed a flash player, correct? Need suggestions on one, paied or free.
    My questions are: How can I have the flash player stream audio to users by downloading it from a java app server, if the user has a session and is logged in, etc? (picture myspace here)
    Also, how do I measure network traffic in Java? (The flash player of each user will stream the songs, I'd like to know how much bandwith is going around).
    The reason that I'm asking this here is because I have no idea of which forum to ask this.
    I have been a Java app developper for the past five years, so coding won't be a problem, I just don't know which API / Frameworks to turn to.
    Thanks for all your help.
    Regard,
    Carlos.

    ragedd wrote:
    First, I would have to embed a flash player, correct?No. You're just taking ideas from other popular streaming sites. It's certainly not a requirement.
    My questions are: How can I have the flash player stream audio to users by downloading it from a java app server, if the user has a session and is logged in, etc? (picture myspace here)The same way you would authenticate any website. Usually a database and a challenge/response. If they're not logged in, then instead of writing out the content, write out a 403 status code (or do something more graceful, such as redirect them to the login page).
    Also, how do I measure network traffic in Java? (The flash player of each user will stream the songs, I'd like to know how much bandwith is going around).Just keep track of how much data you send to the OutputStream.

  • Possible Bug in iOS 8 via Streaming iTunes Video results in lost storage space?

    Hi looking for suggestions or help on this issue if you can.
    I'm not sure if the issue is my attempting to stream a movie from iTunes under iOS 8 or if it is a result of the iOS 8 update (size) itself or some type of memory leak or inability of memory to be released back to the OS.
    This AM I had ~4.8GB of free space on my 16GB iPhone 5C; running under iOS 7. I then updated to iOS 8 by connecting the phone to my iMac and doing the install through iTunes under a USB wired connection. I however I did NOT check after the update how much space was "Available" after the update on the iPhone itself.
    While streaming a long movie (LOTR extended) from the iCloud through the Apple Video app; now under iOS 8, I received a notification that my Storage space was nearly used up. While looking in Settings\Usage\Storage I can see that I had roughly 250MB of space "Available" but only 12.7GB was "USED." Here is were things get strange. Looking into the "Manage Storage" section I added up all of the space "used" by the apps listed (Video app was NOT listed) and came up with a sum of 6GB of used space. Now why is that? The listed 12.7GB of used space is not equal to 6GB what is using up the remaining 6.7GB?
    Now my research of the web suggests iOS 7 was ~3.5GB in size and my best GUESS at iOS 8 is that it is a16GB - 12.7GB = 3.3GB; although I thought iOS 8 was going to use up more space? For the sake of argument lets say iOS 8 is 5.8GB and my calculated Used Space it 6GB, that equals 11.8GB. Where are the remaining 4.2GB?
    Keep in mind I added No new apps (albeit a few updates to FindMyFrieds, Remote, Pages, AirPort Utility, FindMyiPhone all to be iOS 8 compatable).  I also force quit the VIDEO app thinking that the video that was streaming was taking up local storage while it was playing. Is it possible that the memory was used up by the stream and is not being Released; hence it seems I have no available space?
    Powering the phone down and re-starting it did not seem to do anything.
    I still need to go home, connect to iTunes and double check if the available space on the phone matches to what iTunes see.
    Thanks and sorry for the long question, just wanted to get as many variables out there in case anyone else has had this issue.

    searching.4.answers . . . sounds like you too were able to "inform" your device that the content is no longer needed, great.  I posted a solution that later didn't work for me when I streamed another video (see my post dated Nov 1 - cjdmedia).  I then had great success using what others in this forum have suggested . . . I downloaded the free ibrowse app (do a quick google search for this and you'll find the website for it).  Sure enough it was a piece of cake to navigate to the iCloud assets folder and find and delete the video file.  That is my solution from now on.  Unfortunate that I need to do that to have my storage space clear. 
    Also in my post I shared that I thought this was a bug, unfortunately I now believe that this could be intended behavior.  The only question is how long does this data just sit there until it is removed by the system? or is it removed by the system?  If it is not removed by the system at some point then a strong argument could be made that this is a bug. Streaming means that data is not permenantly saved on the device, right?  
    My fundamental issue is that I have 16GB storage that really means I have a total of 12.8GB (so says my iPhone).  With no personal photos or videos, only 300MB of music, some books etc, and all the apps I want installed on my iPhone I end up with only 9GB available for anything else.  A typical movie in HD takes up half of that.  Not aware that the data of movies was being stored on my phone while streaming I completely filled up my iPhone only days after completely wiping and setting up.  When I got the notification that my phone was full when trying to take video of my kids Trick-or-Treating - I was infuriated that something was hogging the memory in my phone, perhaps I had upgraded to iOS 8 too early before known issues were eliminated.  I thought I had 9GB of space for pictures and video!  To be fair, Apple did not ruin Halloween because my wife had her iPhone.  I also know that this "issue" has been around since iOS 7 (based on my searching) and I haven't seen any confirmation it has ever been dealt with.  From another apple discussion forum stream itunes purchased movies to iPad I discovered that if your device is almost full you can still "stream" because somehow the system knows how much space you have and then behaves more like what you'd expect from streaming which is interesting. 
    So to wrap this long post . . . it is obvious that to stream there needs to be data stored locally, but it is unclear how much data and how long this data will stay on your device.  The quickest solution (requires a computer) is to use the iBrowse app and manually delete the movie files in the iCloud assets folder.

  • Can this MacMini (2007) handle streaming HD video?

    I'm looking at buying an used MacMini (2007) to act as a dedicated media server. I want to make sure the one I'm looking at can properly handle HD video streaming.
    It's a 2007 model with the 1.83 ghz Core 2 Duo processor and 2gb ram upgrade.
    I'm nervous because the 2.0 ghz macbook I've had for years has trouble streaming HD video. But that computer has been overheating and slowing down allot for the last year or so. Barely functions anymore.
    Thanks, Apple Community.
    -Aaron

    Thanks for the replies. You guys are great here.
    I figured out what the problem was... or at least well enough to be able to fix it. A while ago, I had been converting the mkv files to m4v, like you do, but iTunes didn't seem to like them, even though it did accept them (sometimes it would corrupt the files). So, yesterday, I decided to convert one of the mkv files using Quicktime with the "Movie to AppleTV" option. I added the file, without copying it, to iTunes, and pointed it to the file on the TC. Voila, it plays on AppleTV beautifully.
    So, for some reason, iTunes and ATV do not like the other converted files. Most of them I converted in Quicktime with the proper settings to convert it to mp4, so I don't know why there is an issue. I've used HandBrake, as well. Anyway, I'm glad the files will stream from TC if they are converted a certain way.
    But while we are on the subject, does anyone know of a way to convert it for AppleTV like this but still have it be able to go on iPhone, too? iTunes always says that the file type is not supported on iPhone, even though it is a H.264. If I use HandBrake to convert for iPhone/iPod Touch, then that of course works, but I'd rather not have two types of each file.

  • Powerbook g4 cannot stream any video without serious lag issues

    hi guys
    have a solid older g4 powerbook 1.33 ghz 1.25 ram powerbook i gave to my gf as a present. This thing just will not stream any videos with out serious lag. Even if videos buffer all the way it jumps all over the place.
    Sites like Justin.tv we cannot stream one channel good, audio is fine but picture is unwatchable due to lag. I can watrch the same channel on my 2007 macbook pro and its totally fine. Any tips on how to get this powerbook running right?? Even youtube you can't watch because of laaaaaag. This shouldn't be an issue.
    thx

    Unfortunately, our PBs are showing their technology age with streaming video's that have become more prevalent. You can take a few steps to try and maximize the performance, however, at the proverbial end of the day, if viewing streaming video's is important, it's time to upgrade.
    First, ensure you have 10% to 15%+ free disk space on your internal hard drive. Less than that can really crimp performance.
    Download OnyX and run the tasks on the cleaning and maintenance tabs. Before using any disk maintenance program, good data protection practice says you should have your hard drive backed up. (I've never heard of a data issue with Onyx, however). Download from: http://www.titanium.free.fr/download.php?sid=e115f3f4154a6c53a8426d0c4b8a52a5
    Periodically run the Apple hardware test or either of the TechTool programs to ensure there's not any sick hardware getting in the way.
    Bring up the activity monitor and on the system memory tab look at page ins and outs. If page outs are 10% or more of page ins, you can use more memory for what you run.

  • DW CS3  Streaming Quicktime Video

    I put a Quickime video in a web page following the instructions. When it appears in a browser it loads first, 3 minutes , and then plays. How do I get it to stream when a visitor clicks on it?
    <embed src="Audio_Board_Instruction.mov" width="600" height="475" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download" autoplay="false"></embed>
    I do have an option to put the video in other formats.
    Thank you as always.
    Cheers!  Phil

    Well first off, you are probably not really "Streaming" the video (playing right as the data is being downloaded), but rather "Progressively downloading", meaning that the video file is FIRST being downloaded in the visitors Temporary Internet Files folder and then being played back from there.
    Most video files will START the download process and then after just a few seconds of data being downloaded into the cache,.....the video will start to play while AT THE SAME TIME, the rest of the video is being downloaded into the buffer.
    One of the many reasons that .mov video files never really caught on for Web delivery is the problem with the MOOV Atom... or the index file that tells the video player how large the file is, so the video file can figure out how much/when the file has loaded enough to start the video file playing. Unfortunately, many .mov files have this very important index file at the very end of the video file.... so the entire file has to download before it knows to start to play....
    so just SWITCH that index file to the beginning of the file like most other Web friendly formats do. Check out:
    http://renaun.com/blog/code/qtindexswapper/
    Best wishes,
    Adninjastrator

  • Problem creating walk-out videos

    I'm trying to create a walk-out video by exporting from After Effects, using the VP6 codec. Sound didn't export, so I brought a WAVE file into a Flash stage and saved as swf. Brought the swf on a layer in Dreamweaver. The audio is unacceptable. When exported from another codec or directly to flv in AF, the transparency is lost, but the audio plays okay. Obviously, there's a better way to do this, like the website http://www.talkingheads.com/ .
    Here's what I've got so far http://www.cestcop.com/Heads/Mike_3.htm
    Thanks ahead for your help!
    -Mike Carroll

    When exported from another codec or directly to flv in AF, the transparency is lost,
    Make sure you are actualyl enabling Alpha channel usage. aside from that, transparency usage requires proper support in whatever player you use to embed, usualyl by setting variables in the surrounding JS code. Since the performance hit is considerable, it's optional and off by default. Similarly, your audio issues could be just that. Also sounds like you're embedding teh video and audio in the SWF, which is fundamentally evil. Keep them external and stream them to the stage, rather than making the player cringe by enforcing synchronous redraw of the whole SWF...
    Mylenium

  • Playback control over the video live.

    I can not to see playback control over the video live.
    I have to image attachet that I do not can to see.
    can you can help me?

    There is a freeware out there http://www.download3000.com/download_5285.html

  • What extenstion will allow me to capture streaming audio/videos?

    I am trying to capture a streaming video of a program broadcast by Fox News which is not protected. I understand that in the past versions of Firefox some of the extensions or free applications would allow the video to be captured (per CNET). What is the application or extension I need to capture streaming videos using the FLV format or any of the other popular formats?

    Hi Pat,
    What I want to do is download the on-line videos/live streaming video but the source of them doesn't make them available as download files.
    As regards Flash Player Pro, apparently I was looking at something else entirely.  Sorry for the misleading statement.

  • How to  stream audio/video to real Audio Player

    Hello
    I am planning on doing a project on streaming audio/video onto Real Audio Player . I am very new to JMF . I would appreciate some pointers on how to start off. I ahve read the documents but am not able to get started right .
    I wanted to know the following :
    1. Isnt the RTP streaming streaming for live audio or video ? If I want to stream something which I have stored in my local machine then how do i do it - do i need to use RTP ?
    2. I undertsand that if i need to stream the audio/video file I need to convert it to a format the Real Audio Player supports. How do i go about that ?
    Any help would be greatly appreciated!!!
    Thanks in advance
    Shailaja

    JMF doesn't have any support for Real media. Real has gone open source with their Helix Community, so maybe you could find some useful information there: http://www.helixcommunity.org

Maybe you are looking for

  • Logic 7.1, 10.3.9 and MT4 NOT WORKING

    Latest drivers from Emagic but the MT4 is not working in 10.3.9 and Logic. audio/midi prefs see the MT4 but the usb-light won't come on at starting Logic. MT4 is OK and working perfect under OS 9.2 for instance. Even tried another MT4 with same resul

  • PDF links - open in new window

    I have a PDF document that has web links that were created in InDesign, then exported as a PDF. Once in the PDF, the links are fine but I would like for a new browser window to open when they are clicked rather than within the same browser window. I

  • Is the dell S2240T compatible with mac

    Is the dell S2240T compatible with mac?

  • WPA Security w/ Non-Apple Wireless Base?

    I'm upgrading from an original Airport BS and was curious to see if anyone has purchased a wireless "N" station from another compatible brand such as Netgear? My question is about security. If I purchase a non-Apple router, how do I set up WAP securi

  • Oracle Alert - ORA-1652 Unable to extend the Temp Segment

    Hi Team, During our DB Reorg we have received the Oracle Alert - ORA-1652 Unable to extend the Temp Segment by 15485 in tablespace :PSAPBTABI. Our DBReorg got cancelled.. We would like to know how we can resolve the above error so that we can resched