File works in Encore 1.0.1 but gives problems in Encore 2.0

Try downloading this file
http://www.ecs.homechoice.co.uk/Adobe_test.mpg
It's a recording of a trailer off BBC1 and is typical of the problems I am experiencing with Adobe Enmcore 2.0
If you play back teh above file on Windows Media player it looks fine. If you impotr the file into Encore 1.0 it looks fine. But if you impotr it into Encore 2.0 it exhibits problems at the following timecodes (the problems are visible just viewing the time line, you don't have to burn the disk).
0:0:04:04 - pixellation
0:0:11:20 - repeated frame
0:0:15:04 - pixellation
0:0:15:05 - pixellation
0:0:15:19 - pixellation
Do other people have the same problem at the same timecodes?
Would be interested to hear. The first response from Adobe "level 2" Support was not encouraging on this.
I just want to know why the file works fine in 1.0 but not in 2.0!
best
ed

> I find it hard to accept the notion that the Topfield recordings are to blame when Encore 1.0 creates DVDs from these files with no problems whatsoever.
For whatever reason, the new recordings and Encore 2.0 don't play nice together. I doubt that you can get the BBC or Topfield to change the way that they broadcast or record the video data. Any modifications to Encore that might eliminate the problems you are seeing will have to wait for an update or an upgrade to the program, if they ever appear at all.
I doubt that Adobe is going to do much research or troubleshooting to discover why Encore doesn't like PVR files from your (or anyone else's) Topfield or [insert your brand here] recorder. It wasn't designed to work in that arena. There are much cheaper, much more forgiving MPEG and DVD creation programs out there that will let you edit out commercials or archive your favorite shows.
Your solution is simple: Use Encore 1.0 for your Topfield recordings.

Similar Messages

  • Why I can't open google maps on Safari? Everything have been working normally with my computer. But this problem with google maps I can't fix

    Why I can't open google maps on Safari? Everything have been working normally with my computer. But this problem with google maps I can't fix

    Do you have an example? I develop Google maps for Web pages and haven't had problem with Safari and its extensions, only FF which I took out all the addons and plug-ins, but it wouldn't surprise if the Google map code doesn't display the map or information for the map or doesn't work with newer versions of Safari.

  • OpenXML Excel file, works in Excel 2007, OpenOffice, etc but not in Excel 2010

    Hi everyone,
    I have a problem.  I host a free website, sharing source code and ideas with other developers.  One of my projects is a very simple C# class, which generates an Excel 2007 .xlsx file.  All source code is provided, along with a demo showing
    how to use it, free of charge.  No registration required.
    http://www.mikesknowledgebase.com/pages/CSharp/ExportToExcel.htm
    The .xlsx files that this class generates are fine, they open in Excel 2007 & OpenOffice, I've run the OpenXmlValidator
    on the files, and there are no reported problems.
    However, If I open the file in Excel 2010 (with SP1), it opens, but if I go to the Print or Print Preview screen, Excel 2010 crashes.  
    Googling around, I've found that many many users have experienced problems with HP print drivers, I followed some suggestions, such as turning off multi-threading in Excel, but it makes no difference.  I tried setting the default printer as
    the "Microsoft XPS Document Writer", but it made no difference.
    Here is a copy of the Excel file that my demo produces (and which crashes Excel 2010).   Can someone tell me why it opens okay, but then crashes Excel 2010 ?  
    http://www.MikesKnowledgeBase.com/SampleCode/Sample.xlsx
    I can get around the problem by loading this file in Excel 2010, saving it as an ".xls" file (!!) and re-loading that... but it kinda defeats the purpose.
    And, more generally, why does Excel 2007, OpenOffice and the OpenXmlValidator consider it to be in the correct format, but it crashes Excel 2010 ?  I'm surprised that Excel 2010 doesn't at least attempt to report some kind of problem with the Excel
    file, rather than bombing out.
    Mike

    It seems Workbook.XML doesn't have all the information needed by Excel for pagination while prepare for print.
    Using your sample code, here is the XML generated for Workbook.XML part within Open XML package :
    <?xml version="1.0" encoding="utf-8"?>
    <x:workbook xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
      <x:sheets>
        <x:sheet name="Drivers" sheetId="1" r:id="rId1" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" />
        <x:sheet name="Vehicles" sheetId="2" r:id="rId2" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" />
        <x:sheet name="Vehicle owners" sheetId="3" r:id="rId3" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" />
      </x:sheets>
    </x:workbook>
    Replace above content with below XML and print should work fine:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
      <fileVersion appName="xl" lastEdited="5" lowestEdited="5" rupBuild="9303"/>
      <workbookPr defaultThemeVersion="124226"/>
      <bookViews>
        <workbookView xWindow="510" yWindow="510" windowWidth="4455" windowHeight="2520"/>
      </bookViews>
      <sheets>
        <sheet name="Drivers" sheetId="1" r:id="rId1"/>
        <sheet name="Vehicles" sheetId="2" r:id="rId2"/>
        <sheet name="Vehicle owners" sheetId="3" r:id="rId3"/>
      </sheets>
      <calcPr calcId="0"/>
    </workbook>
    The change is not with data but few elements which define the view for Excel. The required code change can be found using Open XML SDK tool code-reflect.
    Shiv Khare

  • Report works fine in local environment but gives problem on server

    Hi,
    I have following condition which works fine when executed in local environment.
    But simply does not work when executed on server.
    <?for-each-group:XYZIC[ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate >= EffStartDate][ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate <= EffEndDate];./Code?>
    EffStartDate and EffEndDate are from XYZIC.
    What could be the reason?
    Thanks.

    Hi,
    try this
    <?for-each-group:XYZIC[ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate >= EffStartDate] and [ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate <= EffEndDate];./Code?>
    or this one
    before using declare namespace specifier
    <?for-each-group:XYZIC[psfn:totext(InvoiceDate,"dd-MMM-yyyy","MM/dd/yyyy" >= psfn:totext(EffStartDate,"dd-MMM-yyyy","MM/dd/yyyy" and psfn:totext(InvoiceDate,"dd-MMM-yyyy","MM/dd/yyyy" <=  psfn:totext(EffEndDate,"dd-MMM-yyyy","MM/dd/yyyy"];./Code?>

  • Pdf file won't convert to word.doc but gives me no error code to fix it

    I'm using ExportPDF and when I try to access a file to convert from pdf to word document, it won't allow but doesn't give me an error code so I can find out why it won't open.

    Hi Harri,
    Would you mind providing more information?
    What was the original document type before becoming a PDF? Is it a scanned copy?
    How large is the file?
    Looking forward to hearing back from you.
    Kind regards, Stacy

  • Edge Animate file working on main blog page but not on the individual blog post in BC

    I recently uploaded an edge animate file to my blog which is host on Business Catalyst (BC). The edge file works on the main blog page but not on the individual blog post. How can I solve this problem?
    I did the following steps:
    I added the required Adobe Edge scripts on my main blog template.
    Create folder on the server called "edge_includes" and uploaded the 'edge.5.0.0.min' file.
    Create folder on the server called "js" and uploaded the 'jquery-1.7.1.min' file.
    Copy and pasted the div to the part of the blog post I wanted the file to appear (<div id="Stage" class="EDGE-13973370"></div>).
    Uploaded the name of the js file to the root called 'World of Code_edge.'
    Uploaded the images to the existing folder called 'images.'

    I'm still unable to figure out the problem.
    Here is the link to the blog: http://goo.gl/sPW62j (the post titled "Basic Computer Science is a Fundamental Skill in the 21st Century Society").
    Here is the link to the individual post: http://goo.gl/jTSgZH
    Also, I get mixed results on the main blog page. Sometimes the image (Edge Animate file) on the main page shows and other times it does not. However, the image never shows on the individual blog post.

  • Is there a way to separate raw files from jpegs that are in one folder after downloading from camera when you shoot both together. I tried arrange or sort  by kind but that does not work. It arranges all folders but not the files in the folder., Is there

    Is there a way to separate raw files from jpegs that are in one folder after downloading from camera when you shoot both together. I tried arrange or sort  by kind but that does not work. It arranges all folders but not the files in the folder., Is there a way to separate raw files from jpegs that are in one folder after downloading from camera when you shoot both together. I tried arrange or sort  by kind but that does not work. It arranges all folders but not the files in the folder.

    Bridge will do the job. View > Sort > ByType. Then you can choose a group of one type and put the files in a separate folder.

  • Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click w

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

  • External media files work on one computer but not on another

    I have several MOV and MP4 video files that are stored in a specific folder, and some of my presentations display those videos in their slides. Because there are too many video files, they’re not embedded on the presentation, they are (I believe) only linked, or else the presentation file would just get too large.
    I usually create the presentations on my home iMac and copy them to my MacBook to take to work. The folders structure is exactly the same on both computers, including the user name.
    I upgraded to Keynote 6 (and now to 6.0.1) on both computers (both running on OS Mavericks). When I open on my MacBook a presentation that I created on my iMac, the app says the video files couldn’t be located, and it only displays a still of the video. But the video files are there! The folders are mirrored! This procedure worked fine with version 5.3, but doesn’t work with 6.0.1.
    Any suggestions?

    I would suggest you revert to using Keynote version 5 and things will work as they did.
    Make sure you use version 5 presentation files as files used with 6 will have been converted to version 6 files.
    Once Keynote has been updated and is more mature and reliable, you could start using 6 again.

  • Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an er

    Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an error appears on the pages with video content?

    its in german:
    der Vorgang könnte nicht abgeschlossen werden.
    something like the process coundnt be completed

  • Hyperlink to files work ok on my mac but on windows vista open but you cant

    Hyperlink to files work ok on my mac but not on windows vista, they open but you can't read them properly. These are both files that have been saved as Word docs. I tried firstly to save as 'pages' but that didn't work so I tried the word docs. Sorry if this has been covered somewhere else, I couldn't find it!
    Thanks for help!

    Upload your files as PDFs....
    http://www.iwebformusicians.com/WebMusic/PDFs.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • "Use Preview Files" works in CS5.5 but is "Useless" in CS6

    I'm a heavy user of the "Use Previews Files" option when exporting files. This has worked great with Premiere CS5.5 but using the same method in CS6 no longer works and reverts back to rerendering the original files in the timeline and rerendering all the effects on them which is very time consuming since the original files are HD and are being downscaled in a DV widescreen timeline.
    Anyone figure out how to get Premiere CS6 to correctly find the preview files when exporting using the "Use Preview Files" option?
    In the meantime, I had to load all the preview files I had rendered back into a new timeline and reassemble them in the correct order. Once I did that, I exported this 1 hour 38 minute timeline to an MPEG-2 file which only took 19 minutes instead of the 7 hours it would have taken even with the "Use Preview Files" on and with a fully rendered timeline.
    Again, it works great in CS5.5 so something changed in CS6 to make the "Use Preview Files" useless now.
    Randy

    OK, decided to do a simple project and test the preview files. One HD AVCHD video clip, 24 minutes long. Dropped into a DV widescreen project and the video clip downscaled to match the project. Added a color correction filter, Shadow/Highlight filter and Sharpen filter. Cut the clip into 4 pieces and adjusted the color correction on each. This will generate 4 preview files. This is basically what my larger project involve but with many more video clips.
    Did not render timeline or make any preview files then exported an MPEG-2 file. Took 35 minutes.
    Rendered timeline which produced 4 preview files in the DV AVI format. Took 1 hour.
    Exported an MPEG-2 file again but this time selected "Use Preview Files". Took 35 minutes.
    Exported a DV AVI file (same format as the Preview files) but this time selected "Use Preview Files". Took 35 minutes.
    Imported the 4 DV AVI preview files and put into a new sequence. Exported an MPEG-2 file using no preview files. Took 3 minutes.
    Imported the 4 DV AVI preview files and put into a new sequence. Exported a DV AVI file using no preview files. Took 1 minute 30 seconds.
    Randy

  • The video files from Colin Smith's Adobe Speedgrade tutorial are solid green but other video files work.

    Howdy,
    I downloaded the project files for Colin Smith's Speedgrade tutorial but all the video files show as solid green and have a frame rate of 0.01 to 0.00 from within premiere Pro CC14 but they play fine on VLC player.  I tried to download and unzipped the files multiple times with the same result.  Other MP4 content works fine on the Premiere Pro timeline.
    Thanks,
    phil

    Hi,
    I suggest you to post this issue on the Premiere Forum, I am afraid we can't really help on this one.
    Thanks,
    Fran

  • Please help my flv video file works perfectly localy...but its not visible in remote ftp why??

    hi All,
    Please help me. my flv video file works perfectly localy in
    my computer...but its not visible when i uploaded the flv html and
    flash files to ftp?
    thanks in advance

    This suggestion worked to see the hidden folder(s). Thanks very much, but I feel like I am miles away from moving my ipod music to my new computer and getting it all to work. Here is why...
    1. First when I plug the ipod in, in disk mode, to the USB slot it shows up as a K drive for a minute or so and then disappears. itunes keeps opening, asking me to sync (which will erase all my music on the ipod!) and the K drive (ipod) vanishes.
    2. I pod help says to drag the itunes file out to the desktop and then drag the itunes file on the ipod into the "my music" file within documents and settings. However, there is an "ipod control" file (was hidden) and within this there is the following: artwork, itunes (with 13 subfolders of its own), device, and music. So do I just drag the itunes file inside ipod control into My music? Or do I drag the whole ipod control file? or other?
    3. Additionally there are K drive (ipod) files for calendar, photos, contacts, notes, and ipod control (was hidden). I don't care about any content in the first four, but are they needed to operate? Do I drag these over also to the My music file?
    Whew, very frustrating. Thanks, Ric

  • Video files work on computer but not on published site

    I am definitely missing something here.
    I redesigned my website with iWeb and I am very pleased with the results. (The original site was done with Dreamweaver but then I migrated to Mac.)
    I published it to my computer to check everything and then put it up on my server with a ftp program (filezilla. works for me). The page shows great on internet.
    I now want to add a page with a newly created video. I drag the video clip on to the movie page I created. It is an avi file. On my computer it all works fine but when I publish it (to my computer to be sure it is OK), the video clip does not show up on the new page. I have tried with Safari, Firefox and Chrome. Same story on all.
    I am afraid to upload it to the internet before I sort this out.
    So my two questions would be:
    1. What am I doing wrong?
    2. What file formats does iWeb support?
    thanks for any help.

    The Miro Video Convertor is useful for format conversion if you want to provide as many as possible to encourage html5 playback in most browsers.
    If you don't want to be bothered with all this, fallback players will use an MP4 (or MOV) in most situations and fallback to flash for browsers like IE. Examples are JW Longtail, FlowPlayer and VideoJS.
    This method uses the QuickTime plugin. The problem is that, in a lot of cases, browsers will ask permission to run the plugin and visitors shouldn't be made to jump through hoops to get the movie to play.
    Its worth the extra effort to make sure that as many of your website visitors as possible can just click and play.
    A lot of people resort to Vimeo and YouTube but the problem with them is that visitors are tempted to leave your site at the end of the movie. Vimeo is better than YouTube in this respect and also has more customizing options.
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

Maybe you are looking for