I want to display a video file on Flash without ENCODING IT! HELP ME PLEASE

Hi everyone! I am using Macromedia Flash 8 and now I want to
display a video file (avi formatted, for example) on flash . But
the main idea is that I don't want to encode this file into *.flv
file, I want to display it directly. Please, any one , can you help
me to find a solution?!
thanks very much

Nope, I have tried it:
page_jep.setPage("file://c:\\index.htm");Gives me:
java.net.UnknownHostException: c

Similar Messages

  • I want to display contens of laptop by touchsmart? can you help me, please!

    Dear Sir/Madam!
    i want  to display contens of laptop by touchsmart HP? can you help me, please!
    Thank you so much!
    This question was solved.
    View Solution.

    about infomations:
    I have Touchsmart 520-1140e.
    i see it have " HDMI In Port", i want o switch contents of laptop for touchsmart display and work, i don't know that job same switching LCD with laptop.

  • I want to display a HTML file that is stored locally on my machine.

    Hello,
    I am having a problem with my paths (I believe). I have created a JEditorPane that reads in a HTLM page. If the page is form the web it works fine:
    page_jep.setPage("http://www.google.com");However I want to display a HTML file that is stored locally on my machine.
    I have tried the following but cant get it to find the stored page:
    page_jep.setPage("file:///index.htm");
    java.io.FileNotFoundException: \index.htm (The system cannot find the file specified)I have tried putting the index file in both the root directory ( C ) and also the same place as where the class files are.
    Any help will be gratefully received,
    Harold Clements

    Nope, I have tried it:
    page_jep.setPage("file://c:\\index.htm");Gives me:
    java.net.UnknownHostException: c

  • How to declare ftp in File class. I want to display filename of file in FTP

    How to declare ftp in File class. I want to display filename of file in FTP server.
    I try
    File f2= new File("ftp://abc:abc1111@ABC/file");
                   String n[] = f2.list();
                   System.out.print(n[0]);
                   Vector filename = null ;
                   for (int i2 = 0; i2 < n.length; i2++) {
                        filename.add(n[i2]);
    but it is not work
    Thank you.

    You can use Jakarta's net-package to connect to a FTP server.
    Download it here:
    http://jakarta.apache.org/site/downloads/downloads_commons-net.cgi
    Here's a small demo:
    import org.apache.commons.net.ftp.*;
    public class FTPTest {
        private boolean isConnected;
        private FTPClient client;
        public FTPTest() {
            isConnected = false;
            connect();
        private void connect() {
            String server = "server.org";
            String username = "user";
            String password = "password";
            client = new FTPClient();
            try {
                client.connect(server);
                client.login(username, password);
                String[] files = client.listNames();
                for(int i = 0; i < files.length; i++) {
                    System.out.println(files);
    isConnected = true;
    disconnect();
    catch(Exception e) {
    e.printStackTrace();
    private void disconnect() {
    if(isConnected) {
    try {
    client.disconnect();
    isConnected = false;
    catch(Exception e) {
    e.printStackTrace();
    public static void main(String[] args) {
    new FTPTest();

  • Hello, I want to play my video files (which are on s3 bucket ) like live . Some buddy please help me

    Hello, I want to play my video files (which are on s3 bucket ) like live .i.e.mox.tv   i want play videos on my website.Some buddy please help me ..for that what i need to do?
    my video are in mp4 formate with h.264 codecs
    Message was edited by: lakhanp22

    Just as of late I noticed that Apple Stores are selling security cameras that work with their app on an iPhone. Very expensive but it uses both WiFi when local and cellular when not at home.
    In your case I would check the apple store and see if there is a free or paid app to access your home closed circuit TV system. The cameras have to have their own ip address so you then need only enter that and access will be available to you. But they must be on your home network.
    a lot of the higher end CCTV systems have a free app that can be used like the new Apple Security system.
    Just Google it or check the store.
    Good Luck

  • Even when I select a specific media type (or multiple media types) for ingest, Prelude imports .JPG etc.  I want to only import video files.

    Even when I select a specific media type (or multiple media types) for ingest, Prelude imports .JPG etc.  I want to only import video files within a section of subfolders.
    please help
    adobe prelude cc2014

    Prelude will ingest only the files that you have selected (checked the box next to) in the Ingest Dialog. Can you provide more information or screen shots of what you Ingest Dialog looks like BEFORE you ingest and what your Project Panel looks like AFTER you ingest?
    Thanks -
    Michael

  • I have a mac mini (without sd/sdhc card slot) and a sony cx160e camcorder and i want to import 50p video files, but i don't want to convert my video's. How can i import my video's?

    i have a mac mini (without sd/sdhc card slot) and a sony cx160e camcorder and i want to import 50p video files, but i don't want to convert my video's. How can i import my video's?

    Connect the camera to the computer with a USB cable and use the camera as the card reader. Make sure the camera is in playback mode.

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • I want to display live video in LV, with the option to click on "delay" button, to view what happened N s. ago (i.e., a variable video delay)?

    Hi. I have a standard video camera + PCI 1408. I can nicely show the current image, using LL Ring examples. I want a boolean switch so I can switch from watching the live video to the video recorded N seconds ago. My initial hope was to use LL Ring, with
    lots of buffers, and copy/extract either latest buffers or a buffer several acquisitions ago. However, this seems to add no delay at all. Suggestions please? Thanks Patrick

    Patrick,
    What I start with is the sequence acquisition. I change it from one time to continuous, and simplify it a little bit.
    I have included an example that shows how to set up a buffer and display delayed video.
    One thing you have to do is open MAX and change the maximum number of buffers for IMAQ to something larger than 50. I usually select around 2000 buffers so that I never run out.
    Bruce
    Bruce Ammons
    Ammons Engineering
    Attachments:
    Delayed_Video.vi ‏66 KB

  • I want to export a video file with 6 mono track for surround sound and the 7th track to be stereo.

    I want to give my friend a video file, so when he imports it into avid, premiere, final cut etc. he would recieve 6 mono tracks (L,R,C,LE,Ls,Rs) and the last one to be stereo. but every time i export it comes as 7 mono tracks. and in the setting thats the only option

    i think you would have to go with 8 mono tracks, 6 for the 5.1 mix and 2 more for the stereo. that or try to use 4 stereo pairs, but that would combine parts of the 6 mono (5.1 mix).
    The Video Road – Multichannel Audio in Premiere Pro

  • I want to make some video files together asone file.

    I have some video files which record manyhappy days about me.Recently,I want to make them together as one file,so that Ican save them much more easier.Do you have used some video joiner tools?Doesthe boilsoft video joiner for Mac works well?
    Share with me your advice,thanks.

    An easy way of combining movies in QuickTime:
    To combine two movies:
       1. In QuickTime Player, choose Edit > Select All to select the entire contents of the first movie.
       2. Choose Edit > Copy, then open the second movie.
       3. Move the playhead to the point at which you want to insert the movie (usually the very beginning or end of the original movie), and choose Edit > Paste.
       4. Choose File > Save As to name and save the new movie.
    You can continue to add on to the saved movie.

  • Want to display a .bmp file in reports

    Hello there
    I am trying to display a .bmp file on reports which I think is simple.the main problem is that After making changes to report we transfer the report file to Unix and then generate the report in unix and print it and in that process the report stops printing.
    Thanks in advance.
    Jha

    make sure SOURCE FILENAME is valid in your LINK FILE pointing to the image.bmp
    Report compiles nicely even with wrong source filename, only when opening layout editor an error message will appear.

  • I need a wireless option for older Mac desktop is there a good card or adapter  I want to transfer hd video files over the internet.  using a hotspot and wireless card in computer, any recommendations

    Is there a good card I can put in the computer, and use with a hotspot?  Any experience with uploading HD video files this way.  DSL hard wired connection is too slow

    As for the people on eBay, my only beef with them is that it has turned into a money hungry store instead of an auction place to pick things up inexpensively, like it used to be.
    Agreed.
    There is one, in particular, who really puts a dear price on his flashed cards.
    Not a friend to the Mac community.
    Of course, others see his prices, and say "Well, if he can, then so can I".....
    By the way, I have been noticing the same cards, only for PC for around $30-$40, which lead me to believe that those are the ones they are "flashing". Sorry if that's incorrect.
    It's OK.
    I watch for the prime cards all the time.
    Radeon 9800 Pro and XT PC cards have increased to the $50-$70 range.
    Pros used to be $20-$30, XTs $30-$60.
    Some guys here in Japan are trying to get $100 for Radeon 9800 Pro cards- vanilla PC versions.
    The glut in Mac options has inflated the flashable PC card market dramatically.....
    The Mac Edition Pro retailed for $200+.
    $100 isn't bad for that card flashed to Mac... the XT gets $20-$50 more.
    Try telling a PC guy that a Radeon 9800 is a $100 card..... the old boys laugh!
    Adding to this is the recent influx of "new" Mac users, PC modders/users buying cheap, used G4's, and the demand for upgrades has increased as supply decreased.
    If you see any rev 5.70 Geforce 7800 GS AGP cards, or any FireGl (Radeon) X800XT (unflashed) cards for less than $130, amazing is all that I have to say.
    $30-$40, and I'll take 20 of each- cash!
    Hmm, same goes for Geforce 6800 Ultra's......
    I am just a little (or a lot) frustrated with Apple and Apple vendors lately. For obvious and not so obvious reasons. Please accept my apologies as I go through this phase.
    We all have our days, and our reasons. At least, I know I do......
    Apology warmly accepted!
    Count me as frustrated, as well.
    The new machines sure look nice, but when I tally up the price of the software that I own, which can't be run on Intel or 10.6x Macs, my room full of G4's look a lot nicer.

  • Working with linked video files in Flash CS5

    Hi,
    I'm working on a project that involves making decisions that affect how a short film plays out.
    The basic idea is link some video files to the flash file (don't embed because it loses a lot of quality) and have buttons appear at the end of each clip that will link to another place on the timeline where another video clip will play. Pretty simple.
    However one problem I have encountered is the only way I can make the buttons appear after the video is finished, is by dragging out the single frame of video on the timeline to whatever length in seconds it is multiplied by the number of frames per second.
    This is very tedious and not very effective despite solving the problem.
    Is there some way to maintain each linked clip in a single frame and only move to the next frame (which contains the relative buttons) after the video is finished?
    Of course if there is an even more effective way to do this please let me know as well.
    Thanks,
    Aaron

    What you really want have is this:
    Instead of using the timeline you should use Code to organize your application.
    So you will have only one frame and only one scene and only one flvComponent.
    import fl.video.FLVPlayback;
    import fl.video.VideoEvent;
    //Assuming you have 9 Videosegments to choose from
    var videoNr:uint = 9;
    // the buttons to navigate to the segments
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this[currentButton].addEventListener(MouseEvent.CLICK, playSegement);
    // the array to store the names of the videosegments
    var videoArray:Array = new Array();
    for (var i:uint=0; i<videoNr;i++){
      var currentVideo:String = "video_"+i+".flv";
      videoArray.push(currentVideo);
    //hide the buttons whenever the video plays and vice versa
    flvPlayer.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, hideButtons);
    flvPlayer.addEventListener(VideoEvent.STOPPED_STATE_ENTERED, showButtons);
    flvPlayer.fullScreenTakeOver = false;
    function hideButtons(e:VideoEvent):void{
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this.getChildByName(currentButton).visible = false;
    function showButtons(e:VideoEvent):void{
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this.getChildByName(currentButton).visible = false;
    // or make a switch clause where you define which buttons are visible after which segment
    //switch(i){
    //only 1 and 2 are visible after Segmenet 0 has played
    //case 0: this.getChildByName("btn_1").visible = true;this.getChildByName("btn_2").visible = true;break;
    //only 3 and 4 are visible after Segment 1 has played
    //case 1:  this.getChildByName("btn_3").visible = true;this.getChildByName("btn_4").visible = true;break;
    //function to choose from the videos
    function playSegment(e:MouseEvent):void{
      var whichButton:String = e.currentTarget.name.substr(4,1);
      //gives the IndexNr of the Video that should play
      flvPlayer.source = videoArray[uint(whichButton)];
      flvPlayer.autoplay = true;
    // you want the actual video to stop on the last frame
       flvPlayer.autorewind = false;

  • How to copy Video files to iPod without using iTunes???

    Hi there ..
    I have the latest iPod Video 80GB.
    If I copy video files larger than 640 pixels iTunes stops me.
    But, I don't trust apple folks.
    In the previous iPod it didn't matter the width unless you had a total number of pixels inferior to 480x480 (Mpeg4)
    Now iPod 5.5G says 640x480=307200 pixels is the max.
    If I have a 736x416=306176
    But iTunes doesn't let me copy such files into the iPod.
    I WANT TO check if at Apple just don;t want me to have such files copied or if the iPod itself can't play them for real!!!!!
    SO Anyone knows of an utility or a way to just copy such files to the iPod so that the database is refreshed and I can test them???
    thank you.

    Help Help .... !!!

Maybe you are looking for

  • Changing BEx Query in EDIT mode in production environment

    Hello, In our BI Production system, the BEx queries can not be opened in edit mode. I have to change the query in production.But the same qury in developement is quite different. So instead of changing the query in dev and transporting it to quality

  • Shortcut to show timecode

    Hello, Please let me know if you how to do this, and the keyboard shortcut. In PPro CS3, I could double-click any clip on the timeline, so it would appear in the source window, and then press the "F" key, and in the source window it would show the cl

  • How to use java to gather online information

    Hello What i want to do is provide the application with a set of urls, have the app gather some data (i.e. pricing, product list, etc) automatically. ex. give the app a url address and have the app gather the price data on certain products. I looked

  • Director MX 2004 Games - Game Development with Macromedia Director examples

    hi, do you know where can I get examples for Director MX 2004 Games - Game Development with Macromedia Director from?

  • Just a question, I need help

    I have about 750 songs in my ipod and the main computer that itunes was in I no longer have and I want to keep all of my songs that are in my ipod, but i was wondering if there is any way that i can load my ipod into my new computer without losing my