How 2get video to play (now) on smartphones like Droid, other than on YouTube?

I understand Flash will be ready for the Droid in mid year... and maybe some other smart phones.
BUT... till then... other than using YouTube... is there anyway to get web video to play on the Droid or other smart phones?
Thanks for any help.

1. Correct, Flash will be available on pretty much ALL smartphones (sans iPhone ocourse) in mid-year.
For now, you can try to get onto the beta list for the flashPlayer (its a free download on Adobe labs for the desktop, but I don't know if it will go to Droid or not), or limit yourself to people who are publishing video using HTML5

Similar Messages

  • We are evaluating the use of iPod touch devices to record best practice videos on our manufacturing floor and to post to an internal Moodle web site. How can you upload a video from the iPod touch to a site other than YouTube?

    We are evaluating the use of iPod touch devices to record best practice videos on our manufacturing floor and to post to an internal Moodle web site. How can you upload a video from the iPod touch to a site other than YouTube? The Moodle upload interface is expecting a file selection dialog box like windows or OSX. I do not want to have to go through an intermediary step of messing with a pc.
    Thanks!

    It should be around 7 and a half gigs. In iTunes, across the bottom there should be a bar that show how much storage is being used and by what. (music, movies, apps, etc.) To make music take up less room, you can check the box to make it convert the music to 128kbps AAC. This lowers the quality, but with most earbuds and speakers, you can't even tell the difference.
    The iPod touch has parental controls built in. You'll find them in Settings. I think they only work for enabling/disabling Safari, Mail, YouTube, and App Store. Here's an app that does more: http://www.mobicip.com/online_safety/ipod_touch

  • This am I turned on my 4s and went to play some music and it was all gone, plugged into itunes and synced, now they are back, but other than 1 audio book they wont play

    this am I turned on my 4s and went to play some music and it was all gone, plugged into itunes and synced, now they are back, but other than 1 audio book they wont play

    they show up in my music, but they are like grayed out and when u click on them nothing happens, i can go to itunes on my mac and click on them and they play. should I install 6.0 or wait till i have this resolved

  • How can Reader v 9  be installed to a volume other than c:?

    How can Reader v >9  be installed to a volume other than c:? such as g:?
    and is there a distrubution executable available so Reader can be installed on a machine that is not connected to the Internet?

    download the .exe from the ftp service and use it to target the install directory:
    ergo
    ftp://ftp.adobe.com/pub/adobe/reader/
    and pick OS and version and language thus:
    ftp://ftp.adobe.com/pub/adobe/reader/win/9.x/9.5.0/en_US/AdbeRdr950_en_US.exe

  • How do I get an iPod touch to turn on other than the normal way. It has been dropped and all I can get is a blank screen. Have tried holding the HOME button down for 30 sec. but that didn't work.

    How does one get an iPod nano to turn on other than the "normal" way? This one has been dropped and all I can get is a blank screen. I have tried holding down the HOME button to restart it but no go. When I connect it to my computer, I am told to enter the PASSCODE which I cannot do as there is no touchpad.

    David ..
    Your topic refers to an iPod touch
    Then you say:  How does one get an iPod nano to turn on ......
    If it's an iPod touch, try a reset.
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, whether it's an iPod nano or touch, it probably needs service >  Apple - Support - Service Answer Center

  • How to install adobe X or XI in a directory other than default.

    Please,
    I need install Adobe reader in a diferent directory of default.
    How to install adobe X or XI in a directory other than default.
    best Regards.

    What OS? Why are you trying to install i a different directory. No matter what directory you install in, quite a bit must be installed on the boot drive. If you are running out of hard drive space, it is time to get a new hard drive.

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • How do I number pages consecutively starting with a number other than 1?

    In Pages, how do I number pages consecutively starting with a number other than 1?

    Inspector > Document > Section > Page Numbering:     click on the dropdown menu

  • How to stop the Play now feature?

    I have scheduled a presentation and a playlist both through the play now feature of the DMM.  I can not seem to figure out how you actually stop the content from playing.  I can send something else to it via future content.  However now if I try to delete the presentation or play list I get a message saying that it cannot because it is already scheduled.  How can I go about removing these?
    Also I am not a professional at creating the content for this system but my boss wants to be create some professional type content.  Is there a resource for maybe downloading more templates or even something for helping me go about creating some nice looking presentations?
    Thank you in advace!

    Hi Glen, the way I have halted "play now" content is by stopping all application for the dmp.
    navigate to Digital Media Players in the Digital Media Manager.  Check off the dmps that you want to halt content for. Click the dropdown under Actions, scroll to the bottom & select 'stop all application', click Go.
    hope this helps.
    Rose Ann

  • Videos not playing continuous in playlist, like when songs r played, help?

    Hi, i keep experiencing an annoying problem of my videos in music video playlist not playing continuous. by that i mean they play one by one going back to playlist menu when each vid is finished so i have to manually forward to the next one. This Music Vid playlist is a default in iTunes already created. I find the only way i can play vids cont. is to click the reset all settings button and i shouldnt have to keep doing that as it messes up everything else. Can anyone help? thanks

    OKAY!
    I was having the same problems! I could not get my
    videos to play continuosly. I did a search for
    'Continuos Video Play' and went back to some posts in
    Dec '06 and I found out, that when your Shuffle
    Setting is set to Shuffle, then your videos will not
    play continuosly. Who would have ever thought that?
    So I tried it and IT WORKED!
    I hope that helps you.
    Hi, thanx for your help Invisionz that worked a treat, Cheers. Dee
    Message was edited by: Dee Mat

  • I have low C disk space. Want to install Ai Trial. Not enough Space. But have a huge space of G: drive. How I can direct install to download and install on other than C: drive?

    I am short with C: Drive space. Cannont Install Ai Trial. How I can download and Install on other than C: drive? I am trying to download it through Creative Cloud as a subscriber.

    Thanks for help. It worked. Now up and running Ai.
    Sent by:
    Khalid Hameed
    London - UK

  • HT2486 How do you assign a new contact to an account other than default account?

    I have multiple mail accounts (iCloud, exchange server, gmail) each with their own contacts. When adding a contact how do you assign it to the right account? I know you can assign a default account under settings but how can you assign it to an account other than the default?

    Apple allows you a deauthorize all option once every 12 months.
    iTunes Store: Authorize or deauthorize your Mac or PC
    Deauthorize all computers
    After you authorize two computers, you'll have the option to deauthorize all computers for your Apple ID. You can deauthorize all computers once a year.
    Just like deauthorizing a single computer, you won’t delete anything if you choose to deauthorize all computers. You just won’t be able to play content that you bought from iTunes on those computers. After you deauthorize all, you can easily authorize computers again one by one. Just follow the steps to authorize a Mac or PC.
    Here's when you should deauthorize all your computers:
    If a computer doesn't work anymore
    If you don't have one of your computers
    If you used 5 authorizations and want to authorize a new computer
    To deauthorize all your computers, follow these steps using one of your authorized computers:
    1.Click to open your account in iTunes (you may need to sign in with your Apple ID), or follow these steps:
         a. Open iTunes and click iTunes Store.
         b. Click Sign In and enter your Apple ID.
         b. Click your Apple ID and select Account.
    2. Click Deauthorize All.
    The Deauthorize All button appears only if you have more than two authorized computers.

  • How can I install Adobe Reader 11 to a drive other than C:\?

    I downloaded Reader 11, but at no point during the installation process am I prompted for an installation location.  How can I install this to a drive other than the C:\?  I keep my C:\ and data storage drive separate so in the event the OS crashes I won't lose my data.  I have limited storage capacity since I'm on a laptop so I didn't make my C:\ very large, so that I would have more room for my D:\.  Any suggestions?
    Sincerely,
                    LT Gannon

    having data on a different drive is a good idea.  installing programs on a drive different from you os containing drive is generally not a good idea.  but if you have the expertise and are sure of what you're doing:
    mac:  ftp://ftp.adobe.com/pub/adobe/acrobat/mac/11.x/11.0.00/misc/
    win:  http://www.adobe.com/support/downloads/detail.jsp?ftpID=5515

  • How can I open a PDF into an iBooks folder other than PDF folder?

    How can I open a PDF directly into a folder in iBooks other than the PDF folder?  I have different folders made and am currently having to open into the PDF folder and then move to the correct folder. Can I open directly into the needed folder? 

    No, I don't think so. The pdf isn't capable of knowing which folder you would like it to open in – all it knows is that it is a pdf. It's up to you to put it in the appropariate folder.

  • How do i get sql plus to start in something other than command prompt?

    I have just installed oracle 11g enterprise addition. I am use to a different type of editor for the sql plus, the one I am use to comes up in a white area and has drop downs for file, tools, spool, help and so on. You can also open notepad with a shortcut. I like this better than command prompt how do i get this?

    I think you mean sqlplusw.exe which is a Windows executable delivered until Oracle 10.2 but no more delivered with Oracle 11g.
    Mayb you can have a look to SQL Developer http://www.oracle.com/technology/software/products/sql/index.html

Maybe you are looking for

  • Adobe Premiere Pro CC Crashes On Startup

    Hi Im Bushar And Im Having Troubles with Adobe Premiere pro i recently got it b ut when ever i try to boot it up windows tells me that it stopped responding here are the crash details: Problem signature:   Problem Event Name: APPCRASH   Application N

  • Seconday Display Now "Stretched"

    Hello, I run a new 15" Retina MacBook Pro, with two external LCD displays. One is via HDMI, and the other via Thunderbolt-to-VGA adaptor. They have been working great until today; for some reason the monitor connected to the Thunderbolt/VGA is stretc

  • Here's what I

    As I stated in a prior post, I reformatted my system and reinstalled Windows XP Pro. After everything was installed and in good working order I installed version 4.0 of the Vista Transformation Pack. I know that it's not the same as Vista Beta 2, but

  • PR requisition Workflow

    Hi,     I am new to Workflow. Now I am working on PR release standard workflow. Here I got problem in Agent assignment. We have more than 1000 plants and for each plant we have manager, he approves all the requisitions that belong to their plant. But

  • ICal sync with palm

    when I synced my Palm Zire to my old iBook G4, it added approximately 224 new events, and modified approximately 46 existing events. whenever I try to sync it with my macbook pro, it warns me that it will update the database to match what's in my old