Does Dreamweaver CS6 Retail Boxed Support HTML5 video Tag?

Hello:
Does the retail boxed Dreamweaver 6 (Not CC) support the insertion of video into pages using the HTML5 <video> tag?  My client can't use Flash.   I found conflicting reports on the Web.
Thanks,
Rich Locus

The perpetual license version of CS6 doesn't have the <video> tag built into the insert menu and it can't be added via updates. CS6 Cloud is the first version where <video> appears in the menu. Either way, you can just add it to the Snippets folder of CS6 perpetual, if you plan to use a lot of video.
Here is the base code I use for html5 video in the older versions of DW (with Flash fallback)...
<video width="320" height="240">
  <source src="myvideo.mp4" type="video/mp4" />
  <source src="myvideo.ogv" type="video/ogg" />
  <source src="myvideo.webm" type="video/webm" />
  <object width="320" height="240">
    <param name="movie" value="myvideo.swf" />
    <embed src="myvideo.swf" width="320" height="240"></embed>
  </object>
</video>
Paste that code into your source view and highlight it, then click the + button on the bottom of your Snippets window and give it a name. From there on out, you just double click that snippet to add video. Make sure you have at least two video source extensions to cover all browsers and you're good to go.
HTML video Tag

Similar Messages

  • Dreamweaver CS6 retail box version & Windows 8?

    Hi
    want to know whether dreamweaver c6 retail box version (NOT CC!!!) works with Windows 8?
    I have recently bought a copy (awaiting delivery) to do some programming. I own a Samsung laptop
    running Windows 8. The PC was shop-bought & came with Windows 8 installed & is a fresh copy, not an upgrade for a previous
    Windows version.
    I'm hoping it does but would like to know because I've not been able to find an straight yes-no answer, then in time
    I'll be able to ask more in-depth dreameaver questions
    thanks

    CS6 Suite's Tech Specs
    http://prodesigntools.com/products/adobe-cs6-system-requirements.html
    Nancy O.

  • Making QtWebkit support HTML5 video and audio

    For those who don't know, HTML5 enables most current browsers to play videos and audios without the need of any plugin. QtWebkit supports this feature, so browsers using it such as Rekonq and Arora should support it too. However on Arch Linux this does not work outside of the box.
    I've tried to make this work and made a little progress, and I'm wondering if anyone has made similar attempts, have suggestions, or are willing to try this out. What I've done basically is to compile Qt with Phonon, and then remove the Phonon files when building the package, so that it uses the Phonon that comes with KDE. I included the PKGBUILD below, and you just need to copy the extra/qt directory from abs, and override the PKGBUILD or apply the patch.
    I also installed phonon-vlc-qt from AUR, which according to this post contains some fixes to support HTML5 video/audio. However neither this nor the default gstreamer backend works for me. With vlc the vidoe doesn't play, and with gstreamer the browser crashes. To try different backends for Phonon, open KDE's System Settings - Multimedia - Backends, and use the Prefer and Defer buttons.
    Some links for testing HTML5 video and audio:
    http://html5test.com Only uses JavaScript to ask the browser if it supports the feature. What I've done does make these tests pass.
    http://html5video.org
    http://youtube.com/html5 Join the beta, and then open some youtube videos, and look for HTML5 in the player's control bar
    The PKGBUILD:
    # $Id: PKGBUILD 98480 2010-11-09 22:17:20Z andrea $
    # Maintainer: Andrea Scarpino <[email protected]>
    # Contributor: Pierre Schmitz <[email protected]>
    pkgname=qt
    pkgver=4.7.1
    pkgrel=2
    pkgdesc='A cross-platform application and UI framework'
    arch=('i686' 'x86_64')
    url='http://qt.nokia.com/'
    license=('GPL3' 'LGPL')
    depends=('libtiff' 'libpng' 'libmng' 'sqlite3' 'ca-certificates' 'glib2' 'dbus'
    'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
    'xdg-utils' 'hicolor-icon-theme')
    optdepends=('postgresql-libs: PostgreSQL driver'
    'libmysqlclient: MySQL driver'
    'unixodbc: ODBC driver'
    'libxinerama: Xinerama support'
    'libxcursor: Xcursor support'
    'libxfixes: Xfixes support')
    makedepends=('mesa' 'postgresql-libs' 'mysql' 'unixodbc' 'cups' 'gtk2')
    install="${pkgname}.install"
    options=('!libtool')
    _pkgfqn="qt-everywhere-opensource-src-${pkgver}"
    source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz"
    'assistant.desktop' 'designer.desktop' 'linguist.desktop'
    'qtconfig.desktop')
    md5sums=('6f88d96507c84e9fea5bf3a71ebeb6d7'
    'fc211414130ab2764132e7370f8e5caa'
    '85179f5e0437514f8639957e1d8baf62'
    'f11852b97583610f3dbb669ebc3e21bc'
    '6b771c8a81dd90b45e8a79afa0e5bbfd')
    build() {
    unset QMAKESPEC
    export QT4DIR=$srcdir/$_pkgfqn
    export PATH=${QT4DIR}/bin:${PATH}
    export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
    cd $srcdir/$_pkgfqn
    sed -i "s|-O2|$CXXFLAGS|" mkspecs/common/g++.conf
    sed -i "/^QMAKE_RPATH/s| -Wl,-rpath,||g" mkspecs/common/g++.conf
    sed -i "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" mkspecs/common/g++.conf
    ./configure -confirm-license -opensource \
    -prefix /usr \
    -docdir /usr/share/doc/qt \
    -plugindir /usr/lib/qt/plugins \
    -importdir /usr/lib/qt/imports \
    -datadir /usr/share/qt \
    -translationdir /usr/share/qt/translations \
    -sysconfdir /etc \
    -examplesdir /usr/share/doc/qt/examples \
    -demosdir /usr/share/doc/qt/demos \
    -largefile \
    -plugin-sql-{psql,mysql,sqlite,odbc} \
    -system-sqlite \
    -xmlpatterns \
    -phonon \
    -phonon-backend \
    -svg \
    -webkit \
    -script \
    -scripttools \
    -system-zlib \
    -system-libtiff \
    -system-libpng \
    -system-libmng \
    -system-libjpeg \
    -nomake demos \
    -nomake examples \
    -nomake docs \
    -no-rpath \
    -openssl-linked \
    -silent \
    -optimized-qmake \
    -dbus \
    -reduce-relocations \
    -no-separate-debug-info \
    -gtkstyle \
    -opengl \
    -no-openvg \
    -glib
    make
    package() {
    cd $srcdir/$_pkgfqn
    make INSTALL_ROOT=$pkgdir install
    # install missing icons and desktop files
    for icon in tools/linguist/linguist/images/icons/linguist-*-32.png ; do
    size=$(echo $(basename ${icon}) | cut -d- -f2)
    install -p -D -m644 ${icon} ${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/linguist.png
    done
    install -p -D -m644 src/gui/dialogs/images/qtlogo-64.png ${pkgdir}/usr/share/icons/hicolor/64x64/apps/qtlogo.png
    install -p -D -m644 tools/assistant/tools/assistant/images/assistant.png ${pkgdir}/usr/share/icons/hicolor/32x32/apps/assistant.png
    install -p -D -m644 tools/designer/src/designer/images/designer.png ${pkgdir}/usr/share/icons/hicolor/128x128/apps/designer.png
    install -d ${pkgdir}/usr/share/applications
    install -m644 ${srcdir}/{linguist,designer,assistant,qtconfig}.desktop ${pkgdir}/usr/share/applications/
    # install license addition
    install -D -m644 LGPL_EXCEPTION.txt ${pkgdir}/usr/share/licenses/qt/LGPL_EXCEPTION.txt
    # Fix wrong path in pkgconfig files
    find ${pkgdir}/usr/lib/pkgconfig -type f -name '*.pc' \
    -exec perl -pi -e "s, -L${srcdir}/?\S+,,g" {} \;
    # Fix wrong path in prl files
    find ${pkgdir}/usr/lib -type f -name '*.prl' \
    -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
    # Remove phonon files which are installed by KDE
    rm -r ${pkgdir}/usr/{include/phonon/,lib/libphonon*,lib/pkgconfig/phonon.pc}
    Diff from qt's PKGBUILD in ABS:
    --- PKGBUILD.orig 2010-12-15 13:18:19.000000000 -0500
    +++ PKGBUILD 2010-12-15 13:19:15.000000000 -0500
    @@ -57,8 +57,8 @@
    -plugin-sql-{psql,mysql,sqlite,odbc} \
    -system-sqlite \
    -xmlpatterns \
    - -no-phonon \
    - -no-phonon-backend \
    + -phonon \
    + -phonon-backend \
    -svg \
    -webkit \
    -script \
    @@ -109,4 +109,6 @@
    # Fix wrong path in prl files
    find ${pkgdir}/usr/lib -type f -name '*.prl' \
    -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
    + # Remove phonon files which are installed by KDE
    + rm -r ${pkgdir}/usr/{include/phonon/,lib/libphonon*,lib/pkgconfig/phonon.pc}
    Last edited by hagabaka (2010-12-15 22:11:46)

    Use a minidisplay/HDMI cable for video:
    http://www.cnaweb.com/6-mini-displayport-male-to-hdmi-male-cable.aspx?gclid=CMbn pNem57wCFRQS7AodzDQACg
    A 2009 MBP does not support audio via HDMI so you will have to tap the Audio Output port.  Use a 3.5 mmRCA plugs and tap the RCA audio inputs on the TV with a cable such as this:
    http://www.monoprice.com/Product?c_id=102&cp_id=10218&cs_id=1021817&p_id=9768&se q=1&format=2&utm_expid=58369800-11.R-enhtUGRrSdHz5vzpVS2g.0&utm_referrer=http%3A %2F%2Fwww.monoprice.com%2FCategory%3Fc_id%3D102%26cp_id%3D10256%26gclid%3DCM2Vro yn57wCFZLm7AodHjkAlQ
    Ciao.

  • Dreamweaver CS6 not previewing embedded YouTube Videos

    I've created a simple page with a number of YouTube videos embedded on it but Dreamweaver CS6 will not preview the videos unless the page is uploaded to a web server first.
    I've gotten the embed code from YouTube and pasted it into the code window (in split view).  A grey box indicating the player shows up in the design window, but after saving the page and attempting to view it in Live View or previewing in Safari, the YouTube players won't load. 
    I did manage to get the the players to show only after uploading to a temporary website (http://www.omnimediaservices.com/orionvideos.html) but there should be a way to preview this in a browser at least before having to upload.

    I have the same problem as beerstine . I added the prefix as you suggested but for not.
    This is the code I pasted and fixed:
    <iframe width="640" height="360" src="http://www.youtube.com/embed/P5C3sNTxsxU?rel=0" allowfullscreen></iframe>
    There is another thread about the same thing:
    http://forums.adobe.com/thread/1245181

  • Does Dreamweaver CS6 have Adobe Device Central?

    Does Dreamweaver CS6 have Adobe Device Central as a seperate extension or has it been intergrated into the preview menu?

    Device Central was discontinued April 23, 2012.
    If you have a Cloud subscription, look at  Edge Inspect.
    http://html.adobe.com/edge/inspect/
    Nancy O.

  • FMS 4 HTTP dynamic streaming in HTML5 video Tag

    We recently purchased FMS4 and I'm in the midst of setting it up.  However, not that it's a HUGE deal, but....
    I see conflicting answers in the forums about whether or not it is possible to stream media in the HTML5 <video> tag (going back to early 2010). 
    Ideally, I'd like to stream (most of the time using flash), but for the specific browsers that support it, (chrome, ff, IE9, and select iOS devices) HTML5 video tags.
    So, can FMS 4 do that?
    <video id="something" controls="controls">
    <source src="http://video.mydomain.com/vod/myMovie.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
    <!--[if IE]>
    <object>blah, blah, blah
    <embed>blah blah blah</embed>
    </object>
    <![endif]-->
    </video>
    If so, how?  I gave it a shot using the above code (minus the "blah, blah, blah" ), and the video doesn't play - if all it is, is a syntax error, then please be so kind as to provide the correct syntax.
    However, if it isn't possible unless you download something else, like the File Packager for HTTP Streaming or the Origin module for HTTP Dynamic Streaming... please direct me accordingly.
    Any assistance would be greatly appreciated.
    Thank you kindly, in advance.

    To the best of my knowlege, no.
    The browser would need to support the flash media manifest file format to be able to play and HTTP stream from FMS, and I don't think any of the browser vendors have implemented it. It would be more likely that Apple's spec is adopted (HLS uses a similar structure using mpeg-ts), but that's not implemented in anything other than safari at this point.
    you -could- use the bundled apache http server to serve progressive downloads to the <video> object in the browser, but it wouldn't be a stream coming from FMS.
    More info on flash media manifest file format here:
    http://opensource.adobe.com/wiki/pages/viewpage.action?pageId=43581634

  • HTML5 video tag is not working in IE9

    Hi 
    the bellow is the code
    <video width="320" height="240" controls>
      <source src="NewFolder/Wildlife.mp4.mp4" type="video/mp4">
      <source src="NewFolder/movie.ogg" type="video/ogg">
      Your browser does not support the video tag.
    </video>

    This is the TechNet Forum for questions regarding Internet Explorer 8, 9, 10 for the IT Pro Audience. Topics covered are: Installation, Deployment, Configuration, Security, Group Policy, Management questions.
    For better assistance please ask for help in the MSDN IE Development Forums.
    Thanks & Regards,
    Vincenzo Di Russo
    Microsoft® MVP Windows Internet Explorer, Windows & Security Expert - since 2003.
    Moderator in the Microsoft Community and TechNet Forums
    My MVP Profile

  • Final Cut export for HTML5 Video tag

    I need to export a video into OGG, WebM, and MP4 for use in HTML5 video tag. Is this possible in FCP or are there any good plugins/software that can export to those various formats?

    FCP can export MPEG4 and its variants such as H.264.
    Googling .mov to .ogg and webM brings up several options for other software, none of which are familiar to me.
    Here's the top hit: http://www.mirovideoconverter.com/

  • Error msg says browser does not support HTML5 video. My FF and Flash up to date. Now what?

    Accessing bird nest cam on Cornell website. Plays well on PC. For my Samsung phone error says "==browser does not support html5" Updated FF for Android and Flash for Android, restarted phone and got same error message. Settings set for tap to play. Help

    Hi midlovines
    We need more troubleshooting details to help you:
    # What Android phone or tablet are you using? What version of Android OS (4.0 Ice Cream Sandwich, 4.1-3 jelly bean, 4.4 kitkat or 5.0 lollipop etc)
    # Please provide the URL of the "bird nest cam on Cornell website"
    Cheers!
    ...Roland

  • Dreamweaver-Hilfe | Einfügen von HTML5-Videos

    Diese Frage wurde zu folgendem Artikel gestellt: http://helpx.adobe.com/de/dreamweaver/using/insert-html5-video.html

    It looks like the video is not ready when the browser has finished loading. Try adding the higlighted code in an effort to allow the video to load
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Unbenanntes Dokument</title>
    </head>
    <body>
    <video id="video" width="480" height="340" poster="Bilder/Videostart.jpg" controls autobuffer>
      <source src="HTML5/videoalt.mp4">
      <source src="HTML5/Puky.webm" type="video/webm">
      <embed src="HTML5/Puky.flv" type="application/x-shockwave-flash" />
    </video>
    <script>
    var video = document.getElementById('video');
    video.addEventListener('click',function(){
      video.play();
    },false);
    </script>
    </body>
    </html>

  • What version of firefox will support mp4 video tags without plug ins or extensions?

    I have a web site that my users upload mp4 videos to my website. I use html 5 and use the video tags type movie/mp4.
    The only browser that has worked without any add ins, plug ins or extensions is safari 4.x and safari 5.x with quicktime. What version of firefox will support playing mp4 videos without any add ins or extensions?

    That will probably not happen if there are codecs used that require a license.
    See:
    * https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
    * http://en.wikipedia.org/wiki/Use_of_Ogg_formats_in_HTML5
    Your above posted system details show an outdated Flash plugin(s) that you should update.
    *Shockwave Flash 10.0 r22
    *http://www.adobe.com/software/flash/about/

  • Does Final Cut Pro X support all video files as did its prior version Final Cut Pro Studio?

    Hi,
    Use to have a Mac Pro and had Fina Cut Pro Studio. Now I have just got a new Macbook Pro (Lion), and have just purchased the new Final Cut Pro X from the App store. I am having problems importing 3gps files into FCP X. I never had a problem with the $1000 version of studio. Does the new FCP X have limitations on what video files are compatible with it? do I need to purchase additional plug-ins etc???
    Ta
    Zeb

    Really depends on the specific file type you want to work with. FCP X does not support every single flavor of video FCP 7 did, so it's not a huge surprise if the file you're using is not supported. That said, there's plenty of free third party tools you could use to convert it to a regular QuickTime ProRes file that FCP X would accept. For example- http://www.squared5.com/ would most likely be able to load it. Try and let us know. And if that doesn't work please provide more details about the 3gps file you're using.

  • Does Dreamweaver CS6 have an iPad viewer

    I wanted to know if the latest version of Dreamweaver in CS6 will have he ability to see what your website will look like on an iPad.  Many clients want to see what their site will look like on an iPad moreso than any other device.
    I found this website to have a ot of articles about iPad apps useful too but no mention of the latest version of Dreamweaver displaying a site as seen on an iPad. Please keep me posted!
    Peter Marino
    Chief Web Designer
    reelWebDesign.com

    Why dont you download the XCode? It's available for free from https://developer.apple.com/xcode/
    You have an iOS Simulator that comes bundled with XCode with which you can simulate apps and webpages across iOS Devices.
    That said, CS6 is supposed to have revamped PhoneGap support with a new emulator that can test layouts of the apps/ HTML you build in DW. More on that here: http://www.adobe.com/in/products/dreamweaver/features.html#categorylens_aa0_featureset_27c b
    You could also get the latest version of PhoneGap directly here: http://phonegap.com/start#ios-x4

  • Using Dreamweaver CS6 Physical Boxed Version

    Last year I had the full Adobe Cloud membership, but this year, I only need Photoshop/Bridge so I got the special 9.99/mo version..  I already have a new boxed copy of Dreamweaver 6, so I didn't need to buy it through the cloud, but I want to make sure how I set it up since my computer has the downloaded cloud version on it still.  Do I need to UNINSTALL that version and then reinstall my boxed version??  or will Dreamweaver on the computer currently still work, and I just have to put in my serial number?  Thanks..  Please let me know how to proceed because when I open up DW it still opens.. so I don't know why it opens since I only have Photoshop and light room currently through the cloud.
    Thanks.. Just want to make sure I get this set up correctly and I don't want to get billed for DW  .. 
    Rick

    Your subscription probably hasn't completely run out yet or the program hasn't phoned home to find out the subscription is expired.
    If you want to delete DWCC, go for it. Though, you can have both versions installed at the same time on the same machine, they're separate programs.
    Before you delete DWCC, I would suggest going to Site > Manage Sites > Export to export a .ste of any site's you've created with it. That way, when you install DWCS6, you can just import those .ste files and not have to re-enter all of your site settings manually.

  • Does Dreamweaver CS6 run under Yosemite Mac OS10.10?

    I am having trouble launching Dreamweaver since upgrading to Yosemite.  It has a Java update message but my Java is up to date.  It directs to a website which does not open.
    Any ideas or solutions?

    Fiddled about a bit.  Found it. Installed it. Now Dreamweaver working fine.  Thanks
    David Alexander
    Mr Alexander's Travelling Show
    www.mralexander.co.uk<http://www.mralexander.co.uk>
    07747 615335
    Read Mr Alexander's Travelling Blog at www.mralexan.blogspot.co.uk<http://www.mralexan.blogspot.co.uk>
    Help fund original music for Mr Alexander's Travelling Show - https://www.kickstarter.com/projects/990902434/mr-alexanders-travelling-show

Maybe you are looking for