Encore Flash Output: What about HTML5?

I absolutely love the DVD (and Blu-Ray?) output to the Web feature of Encore. I've used it many times for my wedding videography clients to have an on-line version of their wedding they can share with friends and family.
However, the biggest drawback has long been that Apple Iphones/Ipods will not play them. And therefore Brides or Grooms cannot show their friends or family their wedding while visiting them, unless they're at their computer, and if they have the latest version of flash, and so on and so on.
And lately HTML 5 has entered the web video discussion. Many know about Apple's resistance to Adobe with the Flash issue. And now, did I just read that Google Android will stop supporting Flash?!
As much as I love this feature I am greatly concerned it will fall by the wayside. And more importantly, all the previous wedding video Flash versions of my DVDs I have already made. I am worried all my hard work will have to be re-captured from a video DVD disc in order to view on the web in the future.
My question is, what is Adobe doing to address this? It would be incredible to see some kind of side conversion program to convert Encore Flash DVD files to HTML5 or something compatible with smartphones and portable devices. 

>what is Adobe doing
Nobody who knows (employee or Beta tester) is allowed to comment on Adobe's development efforts in advance of a product announcement by the CEO
Tell Adobe what you want here https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • CS6 Encore Flash output is blank

    I'm at a loss here. I'm exporting a large project (lots of menus, clips, etc) via 1280x720 Flash. When I load the index.html, nothing comes up (just dark grey space). There are no error messages. I have tried it on multiple machines with multiple browsers. When I create a dvd from the same project, it works just fine.
    Some notes (that may or may not help):
    - The source files are 1080p.
    - I've just completed a similar project, that was actually MUCH larger, and had no issues. The only variable is that THAT project was started in CS5 and finished in CS6. If I go back to CS5, I would imagine that I'd have to start from scratch? As I said, this is a large project with LOTS of menus and clips, so I'd rather not do that.
    - Mac OSX 10.7.4
    - I am exporting to a local network drive (SAN) (this will not go online, the end product will be on a thumb drive).
    - Premiere Pro is NOT a part of the workflow.
    I've looked all over the web and only found one similar issue, but said issue was related to PremPro settings (not relevant here).
    Any ideas?
    Thanks!

    Bug report https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Adding a download progress bar to a flash output

    I have the CS4 production premium package. I made a flash based web page to function like my DVD project by "building" the project in Encore which creates the page along with the referenced flash video files without having to know action script. I was wondering if there is an easy way to include a download progress bar in the flash output? If it is not possible to add a download progress bar directly by changing some option before I "build"/export the project from Encore, is there a snippet of code I could insert in one of the files after it has been created so a progress bar is added to the video? Here is a link to the page I created. If you click the "TQ4" button you will notice that there is no download progress bar that is visible when the controls are showing.
    www.philadelphiaphilms.com/TQ4_web_DVD/index.html

    There's no easy way, no.
    It may be possible to do this in Flash if you built your own custom player, but you'd essentially have to reverse engineer your Encore Flash output (no small task).
    If you have access to a Flash Media Server, you might want to consider the streaming output option, which avoids downloading issues entirely.

  • Hi, i'm a new member of this community. I've recently learn about flashback malware and other threats to Mac devices. I've installed the new Mac OS X update for Lion 10.7, and the flashback removal tool. what about the update for Flash Player?

    Hi,
    i'm a new member of this community. I've recently learn about flashback malware and other threats to Mac devices. I've installed the new Mac OS X update for Lion 10.7, and the flashback removal tool. What about the update for Flash Player? Should i install it? Otherwise, should i permanently remove this app?
    I realy need some advice.
    Thank's to all.

    Be sure to install the latest version of Safari (version 5.1.7) which is available via Software Update (in the Apple menu) if you have not already installed it. This update will automatically disable older versions of Flash when new versions are available, and will instruct you on how to install the latest version on your system. This should help keep your system safe from any vulnerabilities in Flash.
    Note that this is only useful if you use Safari, though other browsers have their own update mechanisms you should research and enable or configure to your liking.

  • A simple question regarding flash output from Encore

    My primary question is how exactly is the html file that is playhed by the browser created in Encore?  I have tired this and I am simply unable to located the html file as seen in the tutorials on this subject.  I see that these tutorials have templates which I don't see when I select the flash output.  Do I need these to crreate a simple flash file that is playable on a website?  Where to the templates come from?  This is not explained in the tutorials.
    Is the index.html file created automatically when Flash output is selected as the format?  Maybe I am doing something wrong but I have never found them?
    Please help as I am having to go through a two step process to create the requied index.html and embeded player from which the SWF is played.on a site.  I am only interested in creating progressively encoded web site playable files from Encore.  Please help!.
    Thanks for any assistance. 

    Encore creates the HTML file when you export to Flash - it's in the folder named on export, along with all the other files you'll need.

  • UrlParam problem with Captivate 7 Flash output

    Has anyone else had trouble with urlParam in Flash output for Captivate 7?  I can't grab the first variable.  It works fine with HTML5 output.  Here is the script:
    var objCP
    if (typeof window.cp==='undefined') {
    var objCp=document.getElementById('Captivate');
    if(objCp && objCp.cpEIGetValue){
      isHTML5 = false;
    else {
    if(cp.vm && cp.vm.getVariableValue){
      isHTML5 = true;
    var oURL = window.location.href.toString();
    var URLparams = new Array();
    if (oURL.indexOf("?") > 0){
    //var split up by
    var sValues = oURL.split("?");
    var aValues = sValues[1].split("&");
    for (i=0;i<aValues.length;i++){
      //split by = sign
    var sEquals = aValues[i].split("=");
    URLparams[sEquals[0]]=sEquals[1];
    setValue('checksum', URLparams);
    setValue('csid', URLparams);
    setValue('id', URLparams);
    function setValue(id, URLParams){
    if(isHTML5){
      if(typeof window[id] === 'undefined'){
       cp.vm.setVariableValue(id, URLparams[id]);
      } else {
       window[id] =URLparams[id];
      } else {
      objCP.cpEISetValue(id, URLparams[id]);
    function getURLvalue(id, myarray){
    for(var i=0; i<myarray.length;i++){
      if(myarray[i][0] == id) return myarray[i][1];
    return false;

    The script is on the entry of the first slide to set the variables as the slide show begins.  I did publish to both swf and html5.  I'm using the index.html page for the html5 and the other htm page that contains the flash object. I have a php script that detects mobile devices to determine which content is displayed using iframes.  I'm not sure what the multiscreen.html page is... ok I just read about the multiscreen and it looks like that page doesn't detect all devices correctly so I'm better off with the php script that I'm using.  I'm adding the variable string to each url on the index page and also the htm page for embedded flash content.

  • Linking to Flash output from SharePoint

    Still pushing our Upper mgmt to purchase RH6 and RH6 server,
    we are getting what seem to be 'blocker' suggestions. Now they are
    talking about the outpot living in SharePoint1
    i can see that this would be a real no-no, but it is possible
    they may agree to simply having a link to a proper Web page on
    which the flash output would reside.
    Are there any horror stories about using SharePoint as a
    repository to back up my resistence? :) Or is it too ridiculous to
    ask?
    thanks.

    This is how Encore's slideshow works when you export to SWF, due to each slide being a separate FLV file.
    The only way around it is to create your slideshow in Premiere, and then export it as AVI and import that into Encore.
    Not sure why your HTML doesn't work. It's standard boilerplate SWF object and embed tags.

  • How to read .xml file from embedded .swf(flash output) in captivate

    I have been trying to read .xml file from the .swf (Flash output) that is embedded within the captivate file but no luck yet . Please if anyone got any clue on how get this thing done using Action script 3.0 then let me know. I am using Adobe Captivate 5.5 at present and Flash CS 5.5.
    I am well aware about how to read .xml file through action script 3.0 in flash but when insert the same flash in captivate and publish nothing comes in captivate output. I would higly appreciate if anyone could help me out with that.
    Here is is graphical demonstration of my query :
    Message was edited by: captainmkv

    Hi Captainmkv,
    Does the information in this post cover what you're trying to do: http://forums.adobe.com/message/5081928#5081928
    Tristan,

  • Problems with Flash output using Safari

    Hi All,
    does anyone know the solution to getting the flash output to work with safari?  The project plays properly on Firefox and Chrome.  On safari, my custom menus come up just the same as on the DVD version of the project, but the flash videos do not play - just a grey screen.  Interestingly, the duration of the clips is set correctly in the player, it just doesn't start the video. The flash files play correctly when loaded directly into Adobe flash player, so I am assuming there is a compatibility issue with the generated XML files or index.html.  The code inside the index.html seems very old and refereences macromedia.com and a windows .CAB file.  I have shortened the file names and eliminated any offending characters (all are in the form "Chapter_1").
    Anyway, this is stopping me delivering a project on USB stick for a client - seems to be a common issue when searching the web, but no solutions.  Any assistance or ideas would be greatly appreciated.
    I have the full CC (2014), but still have Encore CS6 installed for DVD production.
    Regards,
    Mark

    I read the thread you mentioned and all others relating to this issue - seems to be a number of people having the same issue over the last 3 years, but none have posted a successful conclusion.  I did see the post about strange characters in file names causing issues in the XML - I did also look at this and change all my content file names to innocuous "Chapter_X" & etc.  The paths to the "Sources" directory are all relative and the project works correctly on Chrome and Firefox.  Just safari is not working.  Agree, it could be permissions, but I have checked all security settings and the Abobe Flash player (with is called up by the script to display the videos in the browser) is specifically permitted to "Allow Always" in the security settings.  I can't help thinking there is a problem with the generated XML that safari is not behaving correctly - it wouldnt be the first time that Apple doest things using their interpretation of a standard. 
    However, after all that, the generated code from Encore doesn't result in a working local project that I can send to a client and expect to work.

  • Goodbye Flash: YouTube mobile goes HTML5 on iPhone and Android

    Greetings, Im looking for a better understanding to what this Flash war is about. and I would likreto hear from the Adobe side of designer.
    Goodbye Flash: YouTube mobile goes HTML5 on iPhone and Android
    How true is this, and what will become of designing Flash websites?
    I finaly was able to upgrade to an entire Suite of Adobe products including Flash with the intention of doing some Flash work, but now the client is not wanting ANY flash work because it wont work on a phone!
    What about all the Flash website alredy up and running? Will new sites have to be created just for the F*ing iphone?
    Watching  Avatar on the back of a airline seats to cracker sized phone screens. seriously, what is the point.
    .. I know, it's a bit of a rant.

    Marek,
    Welcome to the forum.
    Do you happen to have the usable specs. for these devices? I would assume that the manual, or maybe a product Web site would have such. That will help us determine the best settings to use.
    Good luck,
    Hunt

  • Encore flash playback problem

    Hi folks,
    As I'm a complete noob when it comes to Flash, I would really appreciate your help with this one.
    For one of my clients, I have made a flash video using Adobe Encore CS5.5 (I'm now using CS6). I just made a dvd with menus as I normally would, but this time, I exported it as a flash site, as they preferred this over a hardcopy on dvd/blu-ray.
    The goal is to play this flash video in about 150 paydesk terminals, some running on Win XP and some on Win 7.
    Flash Player 10.3.181.34 is installed on all the terminals, with no active x plug-in.
    The video codecs are standard from Windows, with Flash 9 included.
    The video will be streamed from a server of the network administrator.
    The terminals are not connected to the internet, only to an internal network.
    As I understand, to be able to play this Flash file, at least flash player 11 is needed.
    So at the moment, my client can't play this file on any of these terminals.
    They asked me to make the flash video compatible with their systems, but as I already told you and them, I'm a complete noob when in comes down to Flash.
    So my question is:
    Is there any way to achieve a downgrade of this file to Flash 9?
    Or do you suggest some other workaround?
    If needed, I can provide additional info on my clients system.
    Thank you all in advance!
    Tamas

    If the vid file is a .f4v, then you need at least Flash Player 10, not 9.
    If you want to stick with Flash player 9 (as your code says), then encode as a .flv.
    If you see part of the .swf but not all, then it it not a local security issue... it's more likely an incorrect path to one or more of the associated Flash assets. The .swf is not finding the file (.flv for example).... hence, that part of the Flash does not display.
    Not sure what your folder structure is ... but for your review:
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best wishes,
    Adninjastrator

  • Can anyone tell me how to embed a flash video stream in html5

    Can anyone tell me how to embed a flash video stream in html5. I have a video stream but would love to be bale to get it to run on ipads so would like to know how to embed the flash video stream in html5 http://www.ravedance.net

    Gary, thank you for responding:
    1) I know my "profile" indicates I'm on Mountain Lion.  I have not figured out how to update that.  I am using Yosemite and Keynote Version 6.5.2 on a 15" Macbook-Pro  (tell me how to update my profile, please - nothing I click on opens any kind of "edit" options)
    2) My 20 sec video does play in Quicktime.  I find nothing in the Quicktime Inspector about deselecting "start movie on click."
    3) in my slide presentation I can insert the video on a slide okay and if I click on it can get it to play, But I cannot seem to get it to play after a transition automatically.  Maybe it cannot be done.  Obviously I would like the entire presentation to play automatically without clicking on or between slides.
    Again, thank you for you kind help!

  • Error on export from Flash CC to Javascript/HTML5

    I am trying to convert a Flash CC project to HTML5. I continually get this error:
    An unexpected error occurred during export. [NOSYMB (innerWheel)]
    innerWheel is a movieClip that contains 784 frames of frame by frame animation. The elements that animate are the small letters (text saved as movieClips) and background to the small letters. See below - capital letters stay fixed in place.
    I can't find any information on what NOSYMB means. Has anyone else had the same problem?
    When I query the instance:
    console.log(this.innerWheel.visible);
    I get this message in the console (Safari):
    [Error] TypeError: undefined is not an object (evaluating 'this.innerWheel.visible')
    Any help is much appreciated. I'm tearing my hair out.

    I isolated the problem to a particular range of frames, removed those and rebuilt the animation. I can now publish with no errors.
    Still no idea what exactly was causing the error. When I inspected each instance on the stage they looked fine. But at least I'm not getting an error so all good.
    Would still be great to know what NOSYMB refers to though.

  • What about translate of a pdf from spanish to engish???

    Hi: Some one know about translate....what about translate of a pdf from spanish to engish???

    I had thought about using PDF/X. I certainly wouldn't use PDF/X-1a if there is any RGB; PDF/X-3 may be OK, but you do need to know what the output intent is, or you can end up with unexpected colour shifts, especially if (not recommended) the file used device colour spaces. If an ICC blend space was used for transparency, that can safely be used as the output intent.
    Flattening layers is a trivial operation; the layers aren't separate as in Photoshop. Rather, each thing in a PDF might have a marker putting it in a layer. Stripping out all these markers leaves you without layers, and with everything visible.
    Flattening transparency is more problematic. However, it has to happen every time you print, one way or another, so it is well tried.
    Flattening will change some of the elements in the file, turning some things into curves, some things into rasters - anything that looks the same. Here is where the quality comes in. These NEW bitmaps have to have a suitable resolution. Images are not the main quality problem - text is far more of an issue. It is not a thing to do with a PDF for interactive use, as the text can degrade on screen and become unsearchable. But the transparency flattener has quality settings (you have the same settings in the print dialog).

  • What about support JavaScript?

    Wow!
    Many thanks for this great App!
    I'm waiting for years!
    So, my question is: what about java support?? sure, its dangerous! any doubts?
    thanks
    Michael
    p.s. hope its the first step for flash on ipad/iphone!

    I had gone through most of that tech note, but hadn't renamed
    the configuration folder - sort of stopped after I couldn't
    uninstall my extensions. So now I did unstall the extensions
    (thanks for that tip!!), which didn't help; then renamed the the
    configuration folder - and voila! it worked. I've done this before
    for a similar problem, guess I should clean out all the old config
    folders out there. Thanks for that. Shows me I must complete the
    tasks given - just didn't quite believe that this was the problem
    being addressed by the tech note.
    Thanks for the help!
    Averill

Maybe you are looking for

  • Mac partition becomes laggy after dual boot windows 7

    Hi all, Last week I dual boot my Windows 7 again to make larger memory space for Windows partition. However after the dual boot, everytime when I first log in my Mac partition, it hangs and I need to restart to get it back to normal, Even though is b

  • Cannot use Toolbar in message mapping function

    In my SAP XI, tool bar is disable even in edit mode. See example in <a href="http://tubeimage.com/viewer.php?file=le1mkpxecuxuwlzxjzol-SAP-XI-.png">http://tubeimage.com/viewer.php?file=le1mkpxecuxuwlzxjzol-SAP-XI-.png</a>  ( in red box ) How to make

  • Can we join two totals tables in ABAP Query

    Hey Gurus! Can we join two totals tables in ABAP query. I am tyring to join FAGFLEXT with internal orders totals table. Thanks S

  • Why no preferences?

    I'm setting up a new Mac Pro for video editing and find I am unable to access preferences in Garage Band 3.0.0 (72). I've tried the keyboard shortcut and menu. I've tried with two user accounts; one admin, one not. No response from GB. Also I have tw

  • Compiling an old linux code on a new mac

    Hello, I am trying to compile an old Linux program on my new macbook pro (Intel + 10.6). The program uses a mix of fortran and c source codes. On the Linux environment where it works I have gcc(f77) 3.2.3 installed. The only external library called f