Dw cs5 FLV video quality difference between web play and local play w/same flv file

When I play a flv locally on my pc with adobe media player.. it looks great.
i build a page, insert it in the page (dw cs5) use auto size detect. upload all..
then go to test it out using FF and the video is not a sharp ( the text titles are especially ratty looking  http://www.centroidcnc.com/cncvideo/centroid_digitizing_cs5.html ).
how can this be? its the same file.  what am i doing wrong? thanks in advance for any tips.
here is a screen capture of the 480 wide flv playing in adobe media player... reasonable text clarity
and the same file playing in firefox.. with rattly looking text.
is the browser trying to scale it up or something?

Test page looks pretty good but you still have dimension problems.... notice the black bars on the side of the video. Black bars on the sides mean the height is not great enough. Because that version of the player has the controls below the video, you have to ADD that number of pixels to the height.
height: 360, width: 480
so width needs to be video height (360) PLUS height of controls ...15 or 20 or so... may need the trial and error thing again.
The JW Player will play mp4s on the iPhone.
I'd suggest using QuickTime Pro to convert. QT Pro has an excellent "Export for Web" option that exports beautiful video (m4v).
QT will open many file types but if you only have the .flv version, you can use Handbrake to convert to .mov or .mp4:
http://handbrake.fr/
It's free and does a pretty good job. But I still do the final convertion with QT because the finish video comes out so nice.
For example:
http://exploreolympics.com/reports/?p=3499
videos play in iPhone as well as PCs (JW Player with controls over video)
Check for other/newer version of player with controls over video.
Of course JW Player is just one of many media players available. FlowPlayer is another:
http://flowplayer.org/
or get a Flash developer to create one for you... as on the Home page here:
http://www.exploreolympics.com/index.html
This page uses our custom Flash player with fallback to the JW PLayer (using swfobject).
So there are many solutions to your problem, but the reason the text is fuzzy is that the video dimensions are not correct.
Best wishes,
Adninjastrator

Similar Messages

  • Difference between web server and application server

    Hi Everybody
    Could anybody expain difference between web server and application server?
    Sharad

    Hi there
    The difference I know is the application servers provides the containers for the applications to run which is not provided by the web servers.
    For example the containers can be an EJB container or JSP container etc

  • Difference between Web Services and RFC (both Advantages & Disadvantage)

    Hi All,
    will you please explain the difference between  Web Services and RFC (both Advantages & Disadvantage)
    Thanks,
    jyothi.

    Hi,
    If you want have a communications between SAP systems within a network, we can go for an RFC.
    If you want have communication between SAP systems through a medium like internet, we can probably go for a webservice.
    Please refer the following links:
    What is the difference between RFC vs. Web service ?
    Webservice
    If you want to convert an RFC fuction module to an webservice, you can refer the following link,
    Using RFC as WebService in WebDynpro
    Hope this will help you.
    Regards,
    Jithin

  • What is difference between Web Console and Web SAPConsole

    Hello,
    What is the difference between Web Console and Web SAPConsole.
    Thanks,
    Milind M.

    Hello Milind,
    I am not sure that there is any difference between Web console and Web SAP Console.
    But of course, there is a lot difference between SAP Console and SAP Webconsole.
    Using SAP console you can use mobile data entery with Character support where as with the help of SAP webconsole you can use web supported mobile data entry in which you can use touch screen device.
    Hope this helps.
    Regards
    Arif Mansuri

  • Differences between Web server and Application server

    Differences between Web server and Application server:
    We use Tomcat web server or sun Application server to deploy web applications . What is the differeences between these two servers?

    http://en.wikipedia.org/wiki/Web_server
    http://en.wikipedia.org/wiki/Application_server

  • Difference between Spilt Mac and Local Mac architecture

    Hi,
    Can someone explain to me the difference between Split mac and Local Mac architecture.
    And of course if you have some documentation on it, I'll take with pleasure.
    Thank you.
    Jonathan.

    http://www.cisco.com/web/about/ac123/ac147/archived_issues/ipj_9-3/wireless_lan_switches.html
    Two types of MAC implementations are possible with Fit APs, known as the Local MAC and the Split MAC architectures. Local MAC is where all the wireless MAC functions are performed at the AP. The  complete 802.11 MAC functions, including management and control frame  processing, are resident on the APs. These functions include time-sensitive functions (also  known as Real Time MAC functions).
    The Split MAC architecture divides the implementation of the  MAC functions between the AP and the controller. The real-time MAC  functions include functions such as beacon generation, probe transmission and  response, control frame processing (for example Request to Send and Clear to        Send—RTS and CTS), retransmission, and so on. The non-real  time functions include authentication and deauthentication; association  and reassociation; bridging between Ethernet and Wireless LAN; fragmentation; and so  on.
    Vendors differ in the type of functions that are split between  the AP and the controller, and in some cases, even about what  constitutes real time. One common implementation of a Fit AP involves local MAC at the AP and  control and management functions at the AP.
    split mac
    http://www.cisco.com/en/US/docs/solutions/Enterprise/Mobility/emob30dg/TechArch.html#wp999574
    CAPWAP Protocol
    http://www.cse.wustl.edu/~jain/cse574-10/ftp/capwap/index.html

  • Getting difference between GMT time and Local time

    Folks,
    I am trying to get difference between gmt time and local time for Korea time zone.
    which should be 9 hours.
    Instead of 9, I am getting 15 hours diff.
    What am I doing wrong?
    Here's what I did to test it:
    First I set the system (Windows XP) time zone to Soul (Korea GMT+9hours) time zone.
    Then I ran the following program, and I got 15 hour diff, not 9.
    Thank you in advance!
    import java.util.*;
    public class Using_GregorianCalendar
         public static void main(String args[])
              Using_GregorianCalendar ugc = new Using_GregorianCalendar();
              ugc.getTimeDiff();
         public void getTimeDiff()
              Calendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
              Calendar cal1 = new GregorianCalendar(cal.get(Calendar.YEAR),
                                           cal.get(Calendar.MONTH),
                                           cal.get(Calendar.DATE),
                                           cal.get(Calendar.HOUR_OF_DAY),
                                           cal.get(Calendar.MINUTE),
                                                      cal.get(Calendar.SECOND));
            int gmtHour          =  cal.get(Calendar.HOUR); //(Calendar.HOUR_OF_DAY);
            int gmtHourOfDay =  cal.get(Calendar.HOUR_OF_DAY);
            int gmtMonth        =  cal.get(Calendar.MONTH);
            int gmtYear          =  cal.get(Calendar.YEAR);
            int gmtMinute       =  cal.get(Calendar.MINUTE);
            int gmtSecond     =   cal.get(Calendar.SECOND);
            int gmtDate         = cal.get(Calendar.DATE);
            Calendar localCal  = Calendar.getInstance();
            int localHourOfDay = localCal.get(Calendar.HOUR_OF_DAY);
            int timeDiff = (localHourOfDay - gmtHourOfDay);
              //Korea time is GMT + 9 hours so I should get a difference of 9
              //why am I getting difference of 15?
                 System.out.println("************** in getTimeDiff() **********************");
              System.out.println("gmtDate: "+gmtDate);
              System.out.println("gmtHour: "+gmtHour);
              System.out.println("gmtHourOfDay: "+gmtHourOfDay);
              System.out.println("localHourOfDay: "+localHourOfDay);
              System.out.println("timeDiff: "+timeDiff);
              System.out.println("**********************************************************");
         }//getTimeDiff()
    }//class Using_GregorianCalendar
    /*              here's the output of this program:
         ************** in getTimeInGMT() **********************
         gmtDate: 14
         gmtHour: 6
         gmtHourOfDay: 18
         localHourOfDay: 3
         timeDiff: -15
    */

    DrClap wrote:
    sabre150 wrote:
    Nearly correct since the Daylight saving may or may not be in effect which does depend on the date...I would simplify that to this:
    TimeZone korea = TimeZone.getTimeZone("Asia/Seoul");
    long delta = korea.getOffset(new Date().getTime());
    System.out.println(delta / (1000.0 * 60 * 60));That's assuming that the OP really meant UTC when he/she said "GMT". Most people don't realize there's a distinction and that Java's timezones are all based relative to UTC.I suspect you are right in assuming that the OP want UTC and not GMT. I figured it was better to illustrate that the method can be used for getting the time difference between any two TimeZones.

  • Difference between Conformed dimnesion and Role play dimesion

    hi,
    I am not able to understand difference between Conformed dimension and Role play dimension.. Can anyone please explain the diff between both with real time example.
    I am confused with Date Dimension.
    Here i encountered, Cube dimension and Database dimension,what is that actually.
    Thanks

    Hi DevBi,
    According to your description, you want to know the difference between database dimension and cube dimension. Right?
    A database dimension is a collection of related objects, called attributes, which can be used to provide information about fact data in one or more cubes. What we created in BIDS is database dimension. For example, typical attributes in a product dimension
    might be product name, product category, product line, product size, and product price. These objects are bound to one or more columns in one or more tables in a data source view.
    Cube dimension is an instance of a database dimension in a cube is called a cube dimension and relates to one or more measure groups in the cube. A database dimension can be used multiple times in a cube. Those referenced and renamed for purpose database dimension
    is role-playing dimension. For example, a fact table can have multiple time-related facts, and a separate cube dimension can be defined to assist in analyzing each time-related fact. However, only one time-related database dimension needs to exist, which
    also means that only one time-related relational database table needs to exist to support multiple cube dimensions based on time.
    Reference:
    Role-playing Dimensions
    If you have any question, please feel free to ask.
    Simon Hou
    TechNet Community Support

  • Difference between web server and servlet container

    I can't able to figure out the techincal difference between web server(such as java web server) and servlet containers(such as jakarta-tomcat).If you please let me know then I will be very thankful to you.

    The web server serves html pages to browsers that request pages. It can also send images, javascript, flash content, and a few other things. When a request comes into the web server for a servlet or jsp, the web server calls on the Servlet container to do THOSE jobs.
    The Servlet container is the execution environment for a jsp or servlet (they are both servlets) to run Java code on the server and do logic.
    So you see, the web server spits out static content, where either no logic is involved, or the client's web browser does the logic. The Servlet container is used for applications that execute code, perform logic, connect to databases, etc.
    So they work together, but are completely separate logically.

  • Difference between web server and presentation service

    Hi,
    Can anyone please help me in getting the answer following query:
    What is difference between the presentation service and a web server? OR If we have a presentation service then why do we require a web server?
    Thanks & Regards,
    Satej

    Hi Kris/Saichand,
    Thanks for your reply.
    I gone through the image but didnt get the clear picture. Could you please elaborate it some more?
    Thanks & Regards,
    Satej

  • Difference between Web pages and journal

    I cannot really pin down the difference between a web page and a web journal in Aperture 2. Any ideas? I'm sure it is obvious but I'm dumb today.

    Here's a sample of a travelogue done with the Journal mode:
    http://ianjameswood.co.uk/ptm-luzern/report/
    Watch out, it's 17 pages long...
    Ian

  • Difference between web server and webcontainer

    Hai all,As i am new to the servlet technology, I am confused with the terminology of webserver and webcontainer. Can anyone tell me the clear difference between these both?
    Thanks in advance

    A web server refers to a server which normally listens at port 80 and serves up html pages, images, etc... The html pages are usually static pages unless they contain JavaScript. An application which uses servlets and jsps requires an application server such as Tomcat, WebSphere, WebLogic, etc.... These application servers include a "web container". Basically the "web container" is software which implements the "servlet contract". If you look at the api documentation for javax.servlet and javax.servlet.http, you will see that the most important objects (e.g. ServletRequest, ServletResponse, Servlet, HttpSession, etc...) are interfaces not classes. The reason for this is that each application server implements its own classes which implement these interfaces.

  • Difference between Web client and Tab client in NAV 2015

    Hi All,
    Can you help me to find differences between WebClient and Tab Client in NAV 2015?

    They'll help you over here.
    Microsoft Dynamics NAV Forum
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • I have a cool flv video that I want to inport and manipulate in my Flash fla file. Can I do that?

    It is a cool black & white smoke effect that I want to use.
    My goal is to place graphics over it and some under it.
    I am new to animation but hungry to learn!
    Thanks Everyone!

    kglad,
    Thank you so much ..... I have the flv video in my timeline now!!!
    A further quuestion.... if I may?
    How can I ...say break it apart to manipulate it?
    Thxs in advance!

  • Is there quality difference between iMovie project and QT shared file?

    I have several scenes that I want to piece together. Each scene was edited and saved as a separate iMovie project. I also "shared" each of the edited scenes to create full quality QuickTime files. I now want to compile the scenes to create a short film (actually an actor's demo reel). My reason for importing the QT files would be to have simpler uncut scenes as opposed to importing each of the iMovie projects, which would result in hundreds of tiny clips. It just seems like the fewer scenes/clips the easier it will be to make transitions, etc. But, will I lose quality (video or audio) by using the QuickTime files instead of the iMovie projects? Thanks.

    it just looked lower quality in the QuickTime Player.
    probably just my mind. thanks for the assurance.
    Don't worry; your mind (and your eyes) are okay. What you see is normal.
    By default, a Full Quality movie does not look beautiful. Playback quality is reduced, making it easier for your Mac to play the movie. But if you have QuickTime Pro you can adjust the movie's playback settings to see all the quality that's there. Even then it will appear to be "stretched". That's normal too.
    Full Quality means it contains all the data of the source material with no loss of quality, not that it delivers great playback quality. A Full Quality movie is not intended for playing movies, and it's too large to share. Its sole purpose is to preserve the quality of the video/audio, letting you copy it from place to place with no loss of quality.
    Actually, when you use QT Pro to adjust the playback settings of a Full Quality movie, it actually looks BETTER than iMovie's own display. iMovie never shows you all the quality that's there. (One of the benefits of having QuickTime Pro.)
    Karl

Maybe you are looking for

  • SLD to  LMDB sync is not working

    Hi , i hvae upgraded my  ERP ECC6.0 EHP6 SYSTEM to EHP7 after upgrade when i checked in SOLUTION MANAGER (USING VERSION 7.1 SP12) LMDB ,,prodcut version is showing the previous release(EHP 6) .i deleted the system entry in LMDB under product systems

  • Nasty page flash on swf pop up in IE 7 - fix?

    Go to http://www.enhancedwireless.net/Technology/patentPortfolio.shtml and rollover 71 Countries... I know that it works on IE 7, but when you rollover the "71 countries," the entire page has a nasty flash to it as the pop up is activated - in other

  • How do you edit the genre list in iTunes

    My genre list has become very random and I want to reduce it to the general Blues Jazz Rock Pop Classical, can anyone help?

  • Can I user JDeveloper (BPEL) with other (e.g. JBoss) AppServer?

    Assume I use JDeveloper to create some BPEL Web Services Process flow. Can I deploy these BPEL process flow components to other AppServers (.e.g JBOSS) instead of Oracle AppServer ? If yes: Are there adjustments necessary ? Is there a step-by-step gu

  • Fcp x to both my desktop and macbook

    I would like to buy fcp x, but can I download fcp x to both my desktop and macbook, and if so, how ?