Posting video to website

Dear All,
I am new to the webpage construction world, but I used Premiere a while ago to create a neat video I would like to post on my website. Does anyone know how to do this? I am using Expression Web and I wouldn't think it'd be too hard to post a video from Premiere, but again, I am not familiar with website building. Any ideas or suggestions?
Thanks!

Sorry; I confused this by saying "flashplayer" in the first response.  What I am referring to is a "Flash video player" or "flv player" which is itself a flash swf.
I started using flv videos before I had the suite, and did not have adobe flash.  It was my belief then, and now - although I can't find documentation for it at this moment - that you cannot simply get a copy of a flash video player without having a license to have produced it.  You can find open source or for fee options (see for example flvplayer.com which is what I used when it was all open source) if you don't want to use the adobe option.
If you have the flash program, it creates a flash video player for you that you upload to your site, and that you can use with Adobe's blessing.
There are 3 options for using video in flash.
1 - You can embed the video directly into a flash movie (swf file) and not create an flv,
2 - You can export a .flv file (from Premiere or from the flash encoder), and put it in an swf file (when the video is called, you see an flv player appear), or
3 - You can export flv and play it from a "flash video player."
You can specify options for the player that provide/limit user options such as volume controls, having any controls, etc.  this includes having no frame, no controls, etc, so you don't even see the "player."

Similar Messages

  • Screen capture for posting video to website

    I used iShowU for taking screen capture videos then edited with iMovie and posted them to our website. I am wondering if there is a better application out there for Mac users? Any information as well as posting it to the site is helpful! How to keep the file size down while quality high.
    Thanks

    What is the question? It's unclear what you are asking.
    Is it ...
    Is there a better app for screen capture?
    or
    How do I reduce the size of the edited files for web use?
    x

  • Share videos posted on iWeb website to emails

    I need help. I purchased Moblieme under the impression that I could create a website and show the world. I have created the website and have posted videos. My problem is that I want people who view my website to be able to share the videos I posted with others via email and facebook and any other networking site out there. Is this possible?

    The easiest way to do this is to upload the video to Vimeo, YouTube etc and display it in an HTML Snippet on your web page.
    http://www.iwebformusicians.com/Website-Music-Movies/Vimeo-YouTube.html
    If you don't want the stigma of a YouTube video on your site you can us the JW Longtail media player....
    http://www.longtailvideo.com/

  • I have a Quicktime video posted on my website. It plays perfectly in Safari but won't reload in Firefox unless I clear the cache.  I have Firefox 4.0.1, Quicktime plugin 7.6.6 and Quicktime Pro 10.0..

    I have a Quicktime video posted on my website. It plays perfectly in Safari but won't reload in Firefox unless I clear the cache.  I have Firefox 4.0.1, Quicktime plugin 7.6.6 and Quicktime Pro 10.0..

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Does your phone let you email or post videos?

    My droid will not let me email videos or post video to facebook no matter how long they are. I also can not text any of my videos..what is going on? I am getting fusterated with this so called great phone..

    i know on my htc inc the max i can send is 1.2 megs (via text). the problem with these great cams is that the files they record are LARGE. i put the video on the lowest resolution but still can't text a vid that's more than about 12-15 seconds. as far as facebook goes....that's a fb issue. ages ago i could email video and it would post (eventually). now, nothing! i've even tried to get a response from fb twice, but they never got back to me and nobody specifically addresses this in any of the fb help forums. so i've found a fix. if you have the patience to learn a pretty cool app then go to the market and download qik. i can now take long videos and IMMEDIATELY post to fb (seriously.....it's close to a live stream). you gotta set up an account on the qik website and link it to your fb and i had to learn a bit.....but in less than an hour i was postin videos to fb and now i use it all the time. as far as sending vids via text....i am and will remain dissapointed. i could send 30 second vids on my env touch!!! i know they were poor quality, but a 12 second video is all i can get through now and that's pointless.

  • Video Sharing website in PHP & Adobe FMS

    I'm trying to build a  video sharing website in PHP & Adobe Flash Media Server.
    I got Adobe FMS pro 5 & a Windows server for PHP.
    how to proceed with next step on uploading/browse video to MEdia server through PHP & get videos & play it in website.

    Hi Pedro,
    Thanks for your posting!
    In your scenarios, two approaches could meet your requirements.
    >1 you could download Azure SDK for PHP as Magamalare said,
    Also, you could see this blog and sample:
    http://blogs.msdn.com/b/brian_swan/archive/2010/07/08/accessing-windows-azure-blob-storage-from-php.aspx
    >2 You could use azure storage REST API to operate the storage:
    http://msdn.microsoft.com/en-us/library/azure/dd135733.aspx
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Screen dimming & going to sleep when watching videos from websites

    when clicking on a video from websites or from news readers (eg. Focus or Stern) this doesn’t prevent TP to dim the screen and even go to stand-by/sleep after the time set in the TP configuration. So you have to touch every now and then in order to keep it running.
    Post relates to: HP TouchPad (WiFi)

    yeah noticed this last night when being v lazy and watching a load of stuff in bed, kept having to tap the screen which would inadvertantly click some element of the app or webpage that launched the vid, could do with the dimmer not kicking in when video of any sort is being played.

  • POSTing to a website

    hi, i was wondering how i would go about posting to a website form, and then getting the data that the form returns. is this easy to do? and can it be done from like a java application. i want to automate entering some information into a text field. i would appreciate any help, thanks.

    i wrote this and i am getting somewhere, but it seems what i am reading back is the same as if i were to just visit the main website www.mysite.com. anyone have any suggestions.
                    URLConnection connection;
              BufferedReader in;
              PrintWriter out;
              String site = "http://www.mysite.com/",
              action = "/servlet/TestServlet?ACTION=SUBMITsomeotherrandomuserstuff";
              URL url = new URL(site + action);
              connection = url.openConnection();
              System.out.println("Connection Opened");
              ((HttpURLConnection)connection).setRequestMethod("POST");
              System.out.println("POST");
              connection.setDoOutput(true);
              out = new PrintWriter(connection.getOutputStream());
              out.println("asdf");
              out.close();
              in = new  BufferedReader(new InputStreamReader(connection.getInputStream()));
              String s;
              while( (s= in.readLine()) != null)
                   System.out.println(in.readLine());

  • Can't post video to facebook

    Hi, I can't post video to my facebook "page", I can post to my profile but not page.

    The FaceBook app supports uploading photos, not video.
    Try an app called iLoader which supports uploading more than one photo at a time to FaceBook and uploading video.

  • With Firefox 4 I can't print a shipping label off the post office's website (click 'n ship) like I used to with Firefox 3

    I go through all the steps to print out a shipping label when I am on the post office's website for click 'n ship, but the website won't communicate with my printer (when I am in firefox 4). So I switched back to Firefox 3 and have no problems.
    This happened before in the beta version and I had to switch back to Firefox 3, so I was happy to switch again to Firefox 4 when the completed version came out, but the problem came up again and after all the steps were done to complete the shipping label and I hit the print label button, my printer connection window never popped up so that I could click on it to command my printer to print the label. I am a registered user of click 'n ship on www.usps.com

    After waiting forever to talk to some jerk at USPS Click and Ship help, he told me it's an Adobe issue. I didn't ask why it just started happening, but I too just updated to Foxfire 4 recently, it must have something to do with it.
    Open your Adobe reader... under programs...mine is called Adobe Reader X
    Go to "Edit" in top left...click "Properties"...
    Uncheck "display PDF in browser",
    Then restart your computer for it to take effect. I am so thankful it worked!

  • How can one make a poster video in Adobe Premier Pro- or other play  replay function?

    I want to embed my video into a blogger layout . You Tube takes it back to You Tube- I want to remain on my blog.
    Quick Time instructions require a poster video in order to incorporate play and replay controls.

    Agreed.  From the top.
    all steps followed yielding the following errors:
    Scene 1, Layer 'a', Frame 1, Line 9
    1119: Access of possibly undefined property PLAYING_STATE_ENTERED through a reference with static type Class.
    Scene 1, Layer 'a', Frame 1, Line 3
    1119: Access of possibly undefined property PLAYING_STATE_ENTERED through a reference with static type Class.
    import fl.video.VideoEvent;
    vid.addEventListener(VideoEvent.PLAYING_STATE_ENTERED,f); // line3
    function f(e:Event):void{
    splash6x3.visible=false;  // use the right name
    vid.removeEventListener(VideoEvent.PLAYING_STATE_ENTERED,f); // line 9

  • Can't view photos or stream videos from websites on iPad 3

    When I go to a website with safari, I can't stream video or view photo galleries.  It tells me that I need adobo flash player.  That is not supported for this device.  How do I see photoographs or stream video from websites??

    Jenpre.... keep your head down in that hurricane, and good luck. I hope it moves away soon for you all.
    When I say "more modern", from what I've read many sites recognise that Flash can be a problem on mobile devices (phones and tablets) because it's very power hungry. So, if I understand things correctly, many sites are putting up html5 versions, which is supposed to be much easier on computers / devices. Quite oftne when I go to a site on my iPad it auto-diverts to the "mobile" version of the site, and I haven't found a single case where I can't see a video. To be truthful, even if not directed to a mobile version, I don't have much trouble with any of the sites I visit..... I can see most videos and pretty much all graphics, the same as I can on my Mac, which does run Flash.
    Still, I'm sure a computing expert will know much more.
    Good luck in that hurricane....
    PS... there are quite a few good hurricane tracking Apps you know....

  • How do you choose which blog to post video to?

    we have two group blogs and need the students to be able to post video from podcast capture to both of them but need to be able to choose which blog. Any ideas?

    Hi
    In fact you don't...Pcp has a property named Group Short Name that define where a workflow posts (you find it in groupblog task) using this means you can post in only one podcasts blog.
    They are multiples ways to "automatize" or make it easier:
    1. Duplicate workflows: means you have multiple workflows doing same encodings,etc except groupblog, which posts, where you put $$Group 1$$ (previously defined and valued whith the short name of the group 1, group1 maybe,as a custom properties in pcp admin
    2. Web controller can handle additionnal userRequirements, one could be name group and called still in groupblog by $$group$$ but users will have to type correctly their group name..source of errors to my opinion..
    3. Post to user blogs: see there http://podcastproducer.org/forums/custom-workflows/218313196
    4. Hotfolder: http://discussions.apple.com/thread.jspa?threadID=1780728&tstart=0
    (5). The best to me but don't exist yet: a dropdown list of groups a user belongs to in podcast capture and web controller to choose the destination group
    If i missed one or more, i'll be happy to hear about..!
    ju

  • Any program for mac to download videos from website like youtube, dailymotion, and any video online?

    Any program for mac to download videos from website like youtube, dailymotion, and any video online?

    TOAST!
    http://www.roxio.com/enu/products/toast/default.html?gclid=CIDu-MaizLACFQFeTAoda nEfWA
    Ciao.

  • In firefox, the video from website "tv.vu.edu.pk" is not displaying even i have installed the latest version of JAVA. There rotates a circle around java monogram every time but video is not playing even it is working fine with internet explorer

    In firefox, the video from website "tv.vu.edu.pk" is not displaying even i have installed the latest version of JAVA. There rotates a circle around java monogram every time but video is not playing even it is working fine with internet explorer

    It's not working here as well with Java 6 U25 on Linux.

Maybe you are looking for

  • HT4623 My new iPad can no longer connect to the 3G network. I keep getting the message "could not activate cellular date network".

    I updated my new iPad to the iOS 6 while connected to wifi. However, it will no longer connect to the 3G network. I keep getting the message "could not activate cellular data network" even though the 3G symbol appears normal. I have tried rebooting,

  • Scanner on 4700

    We upgraded to an HP Color LaserJet 4700DN. We purchased it used without manuals etc...    I believe it has a scanner on it, as the display window told me to close it.  I have downloaded the manual however I am not finding instructions on how to use

  • Any help with Linkskys PrintServer PSUS4, G4 and HP1200 in a wired network?

    Wired the house with cat 6e wire. Verizon FIOS is working great on a network of Mac G4 Powerbook; Mac G4 PowerPC and two PC's. Hooked in a Linksky's PrentServer to the network - the Mac won't recognize the HP 1200 printer. What settings should I be p

  • Nikon 50mm 1.8 AF-S

    I am looking into purchasing a Nikon 50mm 1.8 AF-S lens for my D5000 camera. I do notice that you carry the AF version but it is not capable of working with the auto setting on the D5000. I was wondering if you will ever carry the AF-S version or if

  • AV/C Tuner

    WinXPでデバイスマネージャで.AV/C Tunerが ?マークになってドライバ インストール しても見つかりません.教えて!