HTML 5 OGG FILES

I'm really excited about HTML5!!!
How do you get OGG files into the forumlua. Here is an example formula, but I want to use my own videos files:
<video src="movie.ogg" controls="controls">
your browser does not support the video tag
</video>

Here's one way
http://www.iwebformusicians.com/HTML5-Media-Players/Video.html
The fallback in my code is SWF but it can just as easily be OGG - or both.
The method of converting movies to OGV is on the same page.

Similar Messages

  • Re: Itunes will not play OGG files.

    I am not being combative. I asked a simple question and got a stuck up answer. The I should have got back is apple does not feel like making Itunes play OGG files. It is more of a management descion then anything else.

    Hi Mac Dudes,
    I am not running Mac, but have the same problem. I have managed to get my music back by doing the following, hope this helps someone else (from my post in the windows section):
    To cut a long story short...
    Installed iTunes 7 over my existing 6.0.5 setup. Disaster.
    No audio, Audio card now seemed to have been disabled by iTunes 7 install (SoundBlaster Audigy).
    Rebooted and sound back but all audio played from iTunes 7 was distorted and impossible to listen to. Audio from Windows Media Player was fine.
    Uninstalled Quicktime and iTunes 7. Downloaded iTunes 6.0.5 from Apple.
    (Windows) http://www.apple.com/support/downloads/itunes605forwindows.html
    or
    (Macintosh) http://www.apple.com/support/downloads/itunes605.html
    On launching iTunes 6.0.5 I received the following error: Cannot read iTunes Library.itl as created by newer version of iTunes (or something to that effect).
    Opened up my iTunes folder which I have on a separate partition and located the folder "Previous iTunes Libraries". I backed up the present .itl file into this folder (called it iTunes 7 fookup for reference) and then copied the latest .itl backup (which was iTunes Library 2006-09-13, yours may have a different date), back into the iTunes folder and renamed it to "iTunes Library.itl"
    Launched iTunes 6.0.5 and my old version of iTunes is now back to its former glory and my music (thank god) is now playing as before.
    <Rant Alert>Thanks for nothing Apple, that's 5 hours of my life I will never get back. As for iTunes 7, you can stick it where the sun doesn't shine.

  • HTML and XML files open in same window(KM Navigation iView)

    Hi All,
    I have created a KM navigation which is pointing the folder inside the documents repository. This folder contains HTML and XML files. It is rendering fine. But, when I click on the file links in KM Navigation iView, it is opening in new window.Here I need to open in same window. How can I acheive this?. Please help me.
    Thanks & Regards,
    Venkatesh R

    Hi ,
    check the below thread and try options mentioned in it
    https://www.sdn.sap.com/irj/sdn/thread?threadID=72594
    Koti Reddy

  • Problem in getting the parameters from teh form html with upload file

    I have used the jspsmartupload package:
    the html file:
    <HTML>
    <BODY BGCOLOR="white">
    <H1>jspSmartUpload : Sample 5</H1>
    <HR>
    <form METHOD="POST" ACTION="sample5.jsp"
    NAME="PW" ENCTYPE="multipart/form-data">
    <table CELLSPACING="0" CELLPADDING="3" BORDER="1" WIDTH="474">
    <!-- FILE -->
    <!-- TEXT -->
    <tr>
    <td width="150">
    <div align="left">
    <p><small><font face="Verdana">Text :  </font></small>
    </div>
    </td>
    <td width="324"><small><font face="Verdana">
    <input TYPE="TEXT" name="myText" value="">
    <br>
    </font></small></td>
    </tr>
    <!-- TEXTAREA -->
    <tr>
    <td width="150">
    <div align="left">
    <p><small><font face="Verdana">Text Area :  </font></small>
    </div>
    </td>
    <td width="324"><small><font face="Verdana">
    <textarea name="myTextArea" rows="4" value=""></textarea>
    <br>
    </font></small></td>
    </tr>
    <!-- PASSWORD -->
    <tr>
    <td>
    <div align="left">
    <p><small><font face="Verdana">PassWord :  </font></small>
    </div>
    </td>
    <td><small><font face="Verdana">
    <input TYPE="PASSWORD" name="myPASSWORD" value="">
    <br>
    </font></small></td>
    </tr>
    <!-- HIDDEN -->
    <tr>
    <td>
    <div align="left">
    <p><small><font face="Verdana">Hidden :  </font></small>
    </div>
    </td>
    <td><small><font face="Verdana">
    <input TYPE="hidden" name="myHidden" value="hidden">
    <br>
    </font></small></td>
    </tr>
    <tr>
    <td><small><font face="Verdana">Select a first file : 
    </font></small></td>
    <td><small><font face="Verdana">
    <input type="file" name="FILE1">
    </font></small></td>
    </tr>
    <tr>
    <td><small><font face="Verdana">Select a second file : </font></small></td>
    <td><small><font face="Verdana">
    <input type="file" name="FILE2">
    </font></small></td>
    </tr>
    <!-- CHECKBOX -->
    <tr>
    <td>
    <div align="left">
    <p><small><font face="Verdana">CheckBox :  </font></small>
    </div>
    </td>
    <td><small><font face="Verdana">
    <input TYPE="CHECKBOX" name="myCheckBox" value="Value 1">
    Value 1<br>
    <input TYPE="CHECKBOX" name="myCheckBox" value="Value 2">
    Value 2<br>
    <input TYPE="CHECKBOX" name="myCheckBox" value="Value 3">
    Value 3<br>
    </font></small></td>
    </tr>
    <!-- RADIO -->
    <tr>
    <td>
    <div align="left">
    <p><small><font face="Verdana">Radio :  </font></small>
    </div>
    </td>
    <td><small><font face="Verdana">
    <input TYPE="radio" name="radio" value="Value 1">
    Value 1<br>
    <input TYPE="radio" name="radio" value="Value 2">
    Value 2<br>
    <input TYPE="radio" name="radio" value="Value 3">
    Value 3<br>
    </font></small></td>
    </tr>
    <!-- SELECT -->
    <tr>
    <td>
    <div align="left">
    <p><small><font face="Verdana">Simple Select :  </font></small>
    </div>
    </td>
    <td><small><font face="Verdana">
    <SELECT name="mySimpleSelect" >
    <OPTION value="Value 1">Value 1</OPTION>
    <OPTION value="Value 2">Value 2</OPTION>
    <OPTION value="Value 3">Value 3</OPTION>
    </SELECT>
    <br>
    </font></small></td>
    </tr>
    <!-- SELECT MULTIPLE -->
    <tr>
    <td>
    <div align="left">
    <p><small><font face="Verdana">Multiple Select :  </font></small>
    </div>
    </td>
    <td><small><font face="Verdana">
    <SELECT multiple name="myMultSelect" >
    <OPTION value="Value 1">Value 1</OPTION>
    <OPTION value="Value 2">Value 2</OPTION>
    <OPTION value="Value 3">Value 3</OPTION>
    </SELECT>
    <br>
    </font></small></td>
    </tr>
    <!-- SUBMIT -->
    <tr>
    <td colspan="2" width="474">
    <div align="center">
    <center>
    <p><small><font face="Verdana">
    <input
    TYPE="Submit">
    </font></small>
    </center>
    </div>
    </td>
    </tr>
    </table>
    </form>
    </BODY>
    </HTML>
    the jsp file :
    <%@page language="java" import="com.jspsmart.upload.*"%>
    <%@page import="java.util.*"%>
    <jsp:useBean id="myUpload" scope="page" class="com.jspsmart.upload.SmartUpload" />
    <HTML>
    <BODY BGCOLOR="white">
    <H1>jspSmartUpload : Sample 5</H1>
    <HR>
    <%
         // Initialization
         myUpload.initialize(pageContext);
         // Upload
         myUpload.upload();          
         // Files
         out.println("<BR><STRONG>Display information about Files</STRONG><BR>");
         out.println("Number of files = " + myUpload.getFiles().getCount() + "<BR>");
         //out.println("Total size (bytes) = " + myUpload.getFiles().getSize() +"<BR>");
         for (int i=0;i<myUpload.getFiles().getCount();i++){
              out.print(myUpload.getFiles().getFile(i).getFieldName());
              if (!myUpload.getFiles().getFile(i).isMissing())
                   out.print(" = " + myUpload.getFiles().getFile(i).getFileName() + " (" + myUpload.getFiles().getFile(i).getSize() + ")");
                   myUpload.getFiles().getFile(i).saveAs("/upload/" + myUpload.getFiles().getFile(i).getFileName());
              else
                   out.print(" = vide");          
              out.println("<BR>");
         // Request
         out.println("<BR><BR><STRONG>Display information about Requests</STRONG><BR>");
         // Retreive Requests' names
         java.util.Enumeration e = myUpload.getRequest().getParameterNames();
         // Retreive parameters
         while (e.hasMoreElements()) {
              String key = (String)e.nextElement();
              String[] values = myUpload.getRequest().getParameterValues(key);               
              // Browse the current parameter values
              for(int i = 0; i < values.length; i++) {
              out.print(key + " = ");
              out.print(values[i] + "<BR>");
    %>
    </BODY>
    </HTML>
    The result shown is:
    jspSmartUpload : Sample 5
    Display information about Files
    Number of files = 2
    FILE1 = path.txt (240)
    FILE2 = WS_FTP.LOG (146)
    Display information about Requests
    radio = Value 2
    mySimpleSelect = Value 1
    myTextArea = test
    myPASSWORD =
    myMultSelect = Value 3
    myHidden = hidden
    myText = test
    myCheckBox = Value 1
    myCheckBox = Value 2
    myCheckBox = Value 3
    I would like to know if i want to get back the parameters from the form ,
    is that i must use Enumeration.
    Because i have tried request.getParameter() to get the value of radio button, textbox, checkbox and select menu, but it get the null values.
    Also, the function of Enumeration does not get the values of parameter in sequence as html form. e.g.In the html file, the first parameters should be textbox,but it displays the radio button's values first.
    How to solve the problem .
    Thanks

    This sounds like a bug in the smart upload code. I have used this stuff before, but it's probably an older version, so maybe they broke something. Enumerations aren't usually guaranteed to keep things in any particular order. I would say for now, make a method to take the enumeration and a param name to find the value. And write to the JSPSmart people.

  • How can we generate the reports in html or text file formats?

    Hi,
    Is there any package that can help in creating HTMLDB reports in .txt files or .html files? (Similar to TEXT_IO in Oracle Forms)
    How can we generate the reports in html or text file formats from HTMLDB?
    Thanks in Advance
    Renjith

    Hello all.
    Bi Publisher is great, but has a very high price tag. It's even more expensive than Forms & Reports Services. We are considering APEX to replace Forms & Reports on the web, but the reporting limitations are still a problem.
    I wonder if there is another option.
    Thanks

  • In Flash CS4 a generated html with swf file won't play swf

    Using Flash CS4 and having the Flash plug-in ver 10 on my PC, the generated html file will not play the swf in the browser.
    I noticed that the active-x javascript is now included in the header as well as the javascript portion in the body tag.
    But it won't play.  I get the typical blank window in IE with the "X" in the upper left corner.
    I don't have this problem with Flash CS3.
    Any ideas what may be going on?
    Thank you.

    I am having similar difficulty; mostly I am confused.
    I want to open a flash video file in a frame within a webpage.
    I have generated a Flash CS4 html and swf file. When loaded they play, but they play on a separate, full size web page, not in the frame where I want it.
    I then generated FLV and F4V files but that doesn't work.
    It appears that I need to insert the object and embed tags "for Flash Movies" in the html file.
    Once I do that, do I go back to only putting in the html and swf files and create a link to the html file to bring up the video in the target frame?
    What are the FLV files for?

  • .HTML and .DWT files in folders have 0kb size

    Hey guys,
    I was just setting up a new client on the system and I have an issue with uploading HTML and DWT files through Dreamweaver.  The files end up on the server but each is a 0kb file.  Here are my steps:
    In Partner Portal I created a new site
    I chose to start with a blank slate/template
    I logged in via Dreamweaver CS5's BC Extension as I normally do and set the local directory of the project
    I was moving a static HTML site over to this site so the design and files were done already. So once the project was setup in DW I selected all the files in the project folder and uploaded them to the remote site via the Files panel in DW.
    The upload completed and did not note any errors or problems.
    I logged into the BC Admin and went to update some URLs of the pages and I noticed the first .html file in a folder had 0kb.
    I noticed that this problem only occurred in files that are uploaded to a folder. IE- I had a folder called "contact" and a file index.html inside.  I uploaded this folder and the rest via the Files panel in DW. I DID NOT create the folders through BC first.  The same thing happens with .DWT files too.  Although, in this case, since I had a "Templates" directory locally and I'm assuming one was created by BC on the remote host when I created the account it's probably not having to do with users creating folders through FTP/Files panel in DW.
    The .html files in the root of the site are fine. All my JS and CSS files in their folders are also fine.  It just seems to be .HTML and .DWT files in folders that have 0kb.
    Has anyone seen this? 
    I have to get this site live in a rush tomorrow so I'm either going to delete the folders via FTP and create all the pages/folder first in BC and copy and paste the code over from DW to BC Admin area manually.  I'm not excited about doing that as it will add hours onto this site when moving a static site over should be pretty quick.  Now I have to create all the pages and templates manually.

    I can now confirm that the problem is related to DW or the DW FTP login session. I used WinSCP to FTP my files up and they went up fine.

  • ITunes refuses to play shared .ogg files

    I have the xiph codec thing installed for playing ogg files. Ogg files play fine if the files are stored locally on the mac. However, if I try to play the same files when they are stored on another computer on the network, it refuses to play them. Why?
    Nearly all my music files are ogg vorbis. I have only one imac running OS X 10.4.
    All my other computers are linux based and share their music through Rhythmbox's DAAP music sharing function.
    itunes has no problem playing regular mp3 files from shared sources. Only has a problem playing shared ogg files.

    I have ogg files stored locally (on a PC) and iTunes won't play them, no idea why.

  • HTML formate excel files

    Hi,
    I just recognized that the excel files which I can download from my OBI/Answers reports or which I used to send to customers are HTML formated excel files. I also found a remark in the Oracle OBI documentation.
    Now my problem ...those files are much bigger then the ordinary excel files. Opening those files and saving them again as pure excel decreases the size by the factor 10x.
    Unluckily some of those files a bigger then 10MB which is the size limit of mails of our mail server. My question is there a way to create normal, non-html formatted excel files (especially for sending them)?
    Thanks.

    The link is very helpful but unluckily it is no solution (maybe there is no solution). If the excel file is in MHTML format it is much too big ...on the other hand it needs to be Excel 2003. So finally the question is still whether it is possible to get am Excel 2003 file without MHTML?

  • How do I remove the 2 dashed lines (dashes) from above my html signature (from file) appearing in new mail I write?

    I have saved an HTML signature to file (as per Mozilla instruction).
    When I write new mail the signature is present but it is preceded by 2 dashes.
    I have no idea why and would like to have them removed please.

    You are refering to the signature delimiter.
    '''what does the delimiter do?'''
    http://www.ehow.com/info_12071771_email-signature-delimiter.html
    If the signature is placed directly after the reply and on top of the quote, it lacks the "-- " signature separator. That separator is used by Thunderbird to strip off the old signature when replying or changing identities. The signature becomes part of the message and can no longer be automatically removed (since it can't be identified using the seperator), causing a stacked signature
    ''' To switch it off for all identities of your accounts:'''
    Tools > Options > Advanced> General tab
    or
    menu icon > Options > Options > Advanced> General tab
    * click on 'Config editor' button
    it will tell you to be careful :)
    * in top search type: separator
    * look for this line: mail.identity.default.suppress_signature_separator; false
    * Double click to toggle 'false' to 'true' or right click on line and select 'Toggle'
    * Close config editor - top right X
    * click on OK to save changes in Options.

  • Although iTunes works with XiphQT and hence ogg files, front Row will not

    Hello,
    front Row displays "front Row cannot play the current song" although the underlying QT infrastructure/iTunes plays ogg files just fine. Does anybody have a suggestion other than re-encoding them as mp3s?
    Thanks.
    PS. I have the the latest 10.5.2 updates installed through system update.

    But the QuickTime player can indeed play ogg files just fine like iTunes. I have the latest version of XiphQT (http://xiph.org/quicktime/), which is installed under what seems to be the QT component directory. If you are still surprised, you could readily test this and get rid of this fairly self-contained component afterward, assuming you don't have tons of ogg files like me.
    Thanks.
    $ find /Library/Components/XiphQT.component/
    /Library/Components/XiphQT.component/
    /Library/Components/XiphQT.component//Contents
    /Library/Components/XiphQT.component//Contents/Info.plist
    /Library/Components/XiphQT.component//Contents/MacOS
    /Library/Components/XiphQT.component//Contents/MacOS/XiphQT
    /Library/Components/XiphQT.component//Contents/Resources
    /Library/Components/XiphQT.component//Contents/Resources/English.lproj
    /Library/Components/XiphQT.component//Contents/Resources/English.lproj/InfoPlist .strings
    /Library/Components/XiphQT.component//Contents/Resources/MetaDataConfig.plist
    /Library/Components/XiphQT.component//Contents/Resources/OggExport.nib
    /Library/Components/XiphQT.component//Contents/Resources/OggExport.nib/classes.n ib
    /Library/Components/XiphQT.component//Contents/Resources/OggExport.nib/info.nib
    /Library/Components/XiphQT.component//Contents/Resources/OggExport.nib/objects.x ib
    /Library/Components/XiphQT.component//Contents/Resources/XiphQT.rsrc
    /Library/Components/XiphQT.component//Icon

  • Inserting html or doc file in database

    Can I send an HTML or DOC file to Oracle database? The file houses text data along with some images and I'd like to send whole this file to database. Could anyone help me do this?
    Thanks

    Thanks...you are right, the html file contains references to images and I've been able to distinguish all images of the JEditorPane and send those to database. Now I need to send the text contens of JEditorPane to database. Problem is the text data can't be taken differently. If you do have any idea of tracing only the text contents, please let me know.

  • Tell Windows that 6680 supports Ogg files

    Hi!
    This is a bit complicated, but I will try my best:
    When I install PC Suite my Phone(6680) get's detected as a Phone via "Nokia Phone Browser". When I now install Windows Media Player 11 it get's detected as a Camera and as a Mobile directly in "My Computer" too.
    Now, in Winamp it shows up in the Media Library and you could do rightclick --> send to --> Nokia 6680 Memory Card.
    In the Winamp Preferences you could set up Winamp to automatically encode files to a specified format befor transfering them to the device.
    I Installed http://symbianoggplay.sf.net on my phone, which contains a player and an ogg codec. So the ogg player, nokia's internal player (gallery) and the ringtone feature support ogg files (which are way better quality and lower size than AAC, MP3 and that stuff).
    But Winamp, Windows and the Windows Media Player - Mobile Phone Driver don't know that the phone now supports ogg.
    So when I tell wianmp to encode files in ogg format I get a Format not supported by device error.
    Additionally when I try to copy ogg filed to the mobile device in "My Computer" windows tells me that my phone doesn't support the format and i could only use it to transfer this file to another location.
    So, from my point of view I see a few possibilities:
    1. Tell SymbianOggPlay to tell the phone to report to the computer that it supports ogg.
    2. Tell the phone directly to report to the computer that it supports ogg.
    3. Tell Nokia PC suite that my phone supports ogg (i think the "Windows Media Player"-Driver internally uses the PC-Suite or it's drivers.
    4. Tell the "Windows Media Player"-Driver that the phone supports ogg (if the phone doesn't report anything about what formats it supports and the driver just has a list of which device supports which formats.
    5. Tell Winamp that my phone could handle ogg files.
    I tried 1. by asking the author of symbianoggplay but he told me i'm at a dead end here.
    I also tried 5. but unlike with an usb stick, winamp doesn't offer the ability to specify supported file formats...
    So, what do you suggest?
    thx in Advance
    Cheers,
    nomike aka Michael Postmann

    Hi,
    For your issue, please add the SharePoint 2010 site to the compatibility view in the Internet Explorer:
    1. Turn on the compatibility view, go to Tools > Compatibility View settings.
    2. Add your SharePoint website to the compatibility view. Or check the box "display all websites in compatibility view".
    The Windows 10 Technical Preview is here today, but it’s a long way from done. We’re going to make it faster,
    better. So I don’t suggest you using Windows 10 Technical Preview for business.
    Best Regards,
    Lisa Chen

  • HTML 5 Compatible File Browser Control

    Has anyone seen a a plugin or sample demonstrating a html 5 compliant file browser control for APEX 4.x?  I know of a pay to use plugin but my office is leery about buying a 3rd party plugin.  I know there are jquery plugins available, but was looking to see if anyone had already done the heavy lifting.
    Mainly we are looking to implement this to limit what types of files are uploaded by users, so instead of telling them AFTER they upload the file, we limit what type files they can upload BEFORE they have a chance to upload incorrect file types..
    Thank you,
    Tony Miller
    LuvMuffin Software
    Ruckersville, VA

    Found this old thread with what will suffice.. Adding a onchange event call to the documented javascript function will suffice to what they need: How to set "Files of type" when using a "File Browse" item.
    Thank you,
    Tony Miller
    LuvMuffin Software
    Ruckersville, VA

  • Save as PDF, HTML and CHM file formats

    Is FrameMaker capable of saving in all three of these formats: PDF, HTML and CHM file formats? Would InDesign be a better choice?

    The first two, yes. For Compiled Help, the third, I'm sure you know that the files have to be compiled, so no, and I don't think the source files for compilation are a direct export either, unless you can follow an XML path. Although the popularity of CHM is way down from a number of years ago because HTML is more portable, but that's a different issue.
    If I were you, I'd look at MIF2go, a Frame add on that does support export to all these formats, and a number of others.
    InDesign doesn't do this either...
    Just as a word of unasked for advice, choosing your authoring platform by what it can output is a back-asswords way to choose a tool. Find the tool that suits the way you create documents the best so you get more required features to create your stuff quicker and easier.
    Both the tools you mention and most other modern ones do pretty open-ended output, either directly or through filters or conversion utilities... there are always ways to massage output to a different format. So output is certainly a consideration, but it's a relatively minor one.
    As for input tools, you're comparing apples and oranges with FM and ID. FM excels at book style documents with multiple chapters or files that share common layout characteristics. InDesign excels at shorter documents that are usually design-driven, that require hands-on layout tweaking, and it can't do multiple file management.
    Cheers,
    Art

Maybe you are looking for

  • Find out vendor refunds in bank statement

    Hi, vendor refunds and customer receivables are both incoming payment and they both look like a receipt on the bank statement. Can SAP helf the accounting staff distinguish on the bank statement between a customer and vendor receipt? Many thanks for

  • Question on Alias Table

    Hi, I have three tables, Employer, Employee and Address. I created an Alias for Address table because the same table will be used in the same query for both Employer and Employee Addresses. Employer is joined to Address on AddressId, Employee is join

  • Localization problem

    I am running Oracle 8.0.5.1 on Linux Web-enabled by Perl DBI::DBD and Apache. The dadabase has been created in CL8MSWIN1251 charset and contains records in Russian. With appropiate enviroment variables (ORACLE_HOME, ORA_NLS33 and NLS_LANG) set to the

  • Photoshop elements 12 will not open since updated Mac os to 10.10.2

    why can't 12 open? I updated to mac os 10.10.2.  And all 12 does is look for a scanner. will not open. Can anyone help?

  • Is it possible to set an embedded movie to Autoplay?

    Is it possible to set an embedded movie to Autoplay? (Other than the intro movie) I don't see a setting for it.