Video File Read Error

Dear DVDSP Brains,
I am using DVDSP3 and have created a DVD with several menus. Whenever I try and build it the log gives me the following error message:
Compiling VTS#2 (MM to Film Menu Trans)...
Writing VTS020.VOB
Generating Transition: MM to Film Menu Trans, Clip 1...
Generating Transition: MM to Film Menu Trans, Clip 3...
Muxing VTS021.VOB
Done.
Compiling VTS#3 (MM to TV Movies Trans)...
Writing VTS030.VOB
Generating Transition: MM to TV Movies Trans, Clip 1...
Generating Transition: MM to TV Movies Trans, Clip 3...
Muxing VTS031.VOB
Done.
Compiling VTS#4 (Film Menu to MM Trans)...
Writing VTS040.VOB
Generating Transition: Film Menu to MM Trans, Clip 1...
Generating Transition: Film Menu to MM Trans, Clip 3...
Muxing VTS041.VOB
Video File Read Error
Build cancelled
Formatting finished.
Building was not successful. See log.
The clip it seems to have a problem with "Film Menu to MM Trans, Clip 3..." is - I think - a still that has been added to the end of a transition movie between menus. I added the still to allow a dissolve to occur into the next menu and its buttons. I'm not sure if my diagnosis is correct.
I have seached the forum and attempted to implement some of the advice given that might be relevant.
I have tried to re-encode the Film Menu to MM Trans.
I trashed preferences.
I deleted the PAR files (which oddly has now caused he disc to have 5.7GB where it only had 3.2 GB before !!!)
I am at a loss and trying not to panic.
Your help would be much appreciated!
Detsky

I deleted the PAR directories in both the directory where the DVDSP document exists, and in my user directory (~mr88cet/Movies/Gary's Live DVD2 Build). I also tried deleting that whole directory. None of those deletions helped.
I exported the first video fragment in that track. That also didn't help.
Not surprisingly, doing a "build" only didn't help.
Could you tell me more about how this could clarify a problem with importing one of my clips?

Similar Messages

  • When i try to install iPlanet App Server on NT, I do not get screen to enter license key valid for evaluation. --- " cache File Read error"

    When i try to install iPlanet App Server on NT, I do not get screen to enter license key valid for evaluation.
    Also during installation screens an error window is displayed saying "cache File Read error -- Could not read ProductKey entry from the cache file "

    Hi,
    I also get the following message:
    "Could not read ProductKey entry from the cache file"
    I have no idea how to provide the installation software with the key. I also tried "keycheck.exe"
    Do you have a solution for this problem? Did you finish the installation?
    Christian

  • UTL_FILE - file read error

    Hi,
    I am using UTL_FILE to read one file and write it into other file.
    When i am executing procedure that uses UTL_FILE, i get error "ORA-29284: file read error".
    I have checked that file exists with all permissions (r,w,e). Is there any limitaion of size to be read by utl_file. my file size is 62 kb.
    I have set max_linesize to 32767/
    Can anybody tell me the reason why it is happening?

    can you post the script being used...
    What's the database version
    A database object called Directory is also needed in database that is created using the create directory command which directs to the folder in the file system. Is that already created?
    Regards

  • ORA-29284: File read error

    Good morning,
    Need to do two flat file on a 2000 lien.
    1 - Read a file. csv
    2 - Keep it plain, unformatted information from a table
    These are the steps I performed to achieve the first goal ...
    1 - READING TEST FILE
    CREATE OR REPLACE DIRECTORY PUBLIC_ACCESS AS 'C:\REPORTES_REY';
    GRANT READ, WRITE ON DIRECTORY PUBLIC_ACCESS TO PUBLIC;
    -- THIS PL / SQL works ok..
    DECLARE
    v1 utl_file.file_type;
    v2 varchar2(600);
    begin
    v1:= utl_file.fopen('PUBLIC_ACCESS','prueba20110218.csv','R'); -- WORKS WELL ...
    --v1:= utl_file.fopen('PUBLIC_ACCESS','sui_facturacion_alcantarillado_15085_2011_01_76845_001.csv','R');
    loop
         begin
              utl_file.get_line(v1,v2);
              dbms_output.put_line('el contenido del archivo es: '||v2);
              exception
              when no_data_found then
              exit;
         end;
              dbms_output.put_line(' - ');  JUMP LINE
    end loop;
         utl_file.fclose(v1);
    exception
         when others then
         dbms_output.put_line(sqlerrm);
    end;
    but when you change the file name by map prueba20110218.csv de-> sui_facturacion_alcantarillado_15085_2011_01_76845_001.csv displays the following error
    ORA-29284: File read error+
    - this error to be?
    I am grateful for the attention and cooperation extended ...
    good day ...
    REYNEL SALAZAR MARTÍNEZ
    Cali-Colombia

    Thank you very much for your cooperation extended
    The file if it exists, the operating system is Windows, I'm running for the line of command and the file is in the same direction as the file prueba20110218.csv
    Segi therefore his advice and remove:
    exception
    when others then
    dbms_output.put_line(sqlerrm);
    then run the following code:
    DECLARE
    v1 utl_file.file_type;
    v2 varchar2(800);
    begin
    v1:= utl_file.fopen('PUBLIC_ACCESS','prueba20110218.csv','R'); FUNCIONA BIEN...+
    v1:= utl_file.fopen('PUBLIC_ACCESS','sui_facturacion_alcantarillado_15085_2011_01_76845_001.csv','R',32767);
    loop
    begin
    utl_file.get_line(v1,v2);
    dbms_output.put_line('el contenido del archivo es: '||v2);
    exception
    when no_data_found then
    exit;
    end;
    dbms_output.put_line(' - ');  SALTO DE LINEA+
    end loop;
    utl_file.fclose(v1);
    exception
    when others then
    dbms_output.put_line(sqlerrm);
    end;
    +/+
    ORA-06502: PL / SQL: error: character string buffer too small numeric or value
    I do not understand the error -> ORA-06502
    thanks...
    good day
    Reynel Salazar Martínez
    Cali-Colombia

  • Source file read error for sqldeveloper

    While downloading SQLDeveloper, after almost 70%complete, i got an source file read error.
    i've tried again to download but the page hangs on the license agreement page after clicking I ACCEPT.
    Please resolve this issue.
    Thanks in Advance
    Using:
    MS Win XP Home
    Firefox 1.5.3
    Tony Garabedian

    sybrand_b wrote:
    Why are you assuming utl_file works with binary files? It doesn't!It does in 10g, where file open mode B was introduced. But even with R mode you should be able to open DOC file. You might (or might not) have problem reading it:
    SQL> declare
      2      fh UTL_FILE.FILE_TYPE;
      3      input_buffer varchar2(4000);
      4  begin
      5      fh := UTL_FILE.FOPEN('TEMP','Stats.doc','r');
      6      UTL_FILE.GET_LINE(fh,input_buffer,4000);
      7      DBMS_OUTPUT.PUT_LINE(input_buffer);
      8      UTL_FILE.FCLOSE(fh);
      9    exception
    10      when others then UTL_FILE.FCLOSE(fh);
    11  end;
    12  /
    ÐÏࡱᠠ              >  þÿ                 2          4      þÿÿÿ    1
    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
    ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿì¥Á €    ð¿             ¸
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Adobe Lens Profile Creator - ERROR (Detect corners failed because file reading errors ocurred)

    1) I have successfully created a lens profile for a Nikon AF Micro Nikkor 40mm 2.8 lens used in a Nikon D5200 Camera. For this I converted the raw .nef files to .DNG first using Adobe's DNG Converter.
    2) When trying to create another lens profile using the EXACT SAME .DNG files as posted in 1), I am no longer able to create a lens profile because of the message "Detect corners failed because file reading errors ocurred". I am also unable to create any other lens profile using different photos.
    3) I have also tried using a fresh install of Adobe Lens Profile Creator in another mac and I get the exact same error.
    4) I AM ABLE to create a lens profile if I use .jpg files (generated from the same raw .nef files as mentioned) but this doesn't help because then the profiles don't show up when trying to open a raw file in Adobe Camera Raw.
    Please help as this is exasperating.
    Thank you.

    Thanks! I had the same error message in Adobe Lens Profile Creator 1.0.4 for OSX and I found the problem to be the letter ö in the folder name for the DNGs. The lens is an old ISCO-Göttingen and the progress stopped at 2% with the mentioned error message. Changed the folder name and now it works!

  • Lightroom 4 and 4.1beta video file import error/failure

    Findin that Lightroom 4 and 4.1 are not importing video/movie files.  Without exception every attempt made has resulted in an error.
    In many cases just the first frame gets imported and converted to a low grade jpg image.
    The same files import cleanly in to Aperture 3.x without difficulty.
    Software glitch?  Or my brain cramp?

    i too have a mpg file hat will not import in 4.1 RC.
    i think it should import fine?!
    Format                           : MPEG-PS
    File size                        : 605 MiB
    Duration                         : 4min 25s
    Overall bit rate                 : 19,1 Mbps
    Video
    ID                               : 224 (0xE0)
    Format                           : MPEG Video
    Format version                   : Version 2
    Format profile                   : Main@High 1440
    Format settings, BVOP            : Ja
    Format settings, Matrix          : üblich
    Format settings, GOP             : M=3, N=12
    Duration                         : 4min 25s
    Bit rate mode                    : variabel
    Bit rate                         : 18,5 Mbps
    Width                            : 1 280 Pixel
    Height                           : 720 Pixel
    Display aspect ratio             : 16:9
    Frame rate                       : 24,000 FPS
    Color space                      : YUV
    Chroma subsampling               : 4:2:0
    Bit depth                        : 8 bits
    Scan type                        : progressiv
    Bits/(Pixel*Frame)               : 0.836
    Stream size                      : 581 MiB (96%)
    Audio
    ID                               : 192 (0xC0)
    Format                           : MPEG Audio
    Format version                   : Version 1
    Format profile                   : Layer 2
    Duration                         : 4min 25s
    Bit rate mode                    : konstant
    Bit rate                         : 384 Kbps
    Channel(s)                       : 2 Kanäle
    Sampling rate                    : 48,0 KHz
    Video delay                      : -83ms
    Stream size                      : 12,1 MiB (2%)

  • How do I repair a file read error

    I have a file that refused to be backed up in my nightly backup (I'm using Carbon Copy Cloner).  I suspect that the disk may be corrupted somewhere in that file's allocated space, but running Disk Utility from Option+Reboot does not show any errors for either Verify Disk or Repair Disk
    The file itself (/private/var/log/system.log.1) is not terribly important, but if I delete it I'm worried that I will get an error next time that space on the HDD is used.
    Previously I had noticed that my Mac was hanging for 5-10 minutes at a time - I realise now that it would have been while it was updating the system log (before it became system.log.1) .  I don't want that to happen again
    My question is, how do I delete that file and make sure that the errored sector never gets used again?

    Did you run a repair permissions in Disk Utility to see if that fixed anything? 
    The only way I know to map out bad sectors is to back everything up and do a secure erase writing zero's to the hard drive. This resets the bad sector table for the hard drive. Then restore your system.

  • How can I eliminate (watch) in videos that read "ERROR: DECODE ERROR"?

    Usually when in a web site (like Fox News) & there's a video to watch I can't watch it due to the message "ERROR: DECODE ERROR". How can I eliminate this & watch the video? Thanks for your input.

    Have you tried to reinstall Flash on your system, uninstall from the control panel, then install from get.adobe.com/flashplayer/‎ and try the video again.
    Also see [[Flash 11.3 doesn't load video in Firefox]]

  • Can't open .pdf file - read error

    Hi,
    I recieved a .pdf file but upon opening i receive the following error message:
    "Error encountered while processing node xfa[0].form[0].form1[0].#subform[5].ApplicationEligibility[0]. Unable to find suitable font for Japanese encoding."
    Is there any way to fix this? I have searched the forum but cannot find a solution.
    Thanks,
    Neil

    I just installed the font pack and it solved the problem.
    Thanks

  • What changed from AME v4.0 to v4.2 that would cause file read errors?

    is anyone aware of a change in how AME read files in order to encoder when it moved to v4.2 and still exists in v5.0.
    was this the point where quicktime was no longer used and AME used its own codecs etc?

    it looks like they added ImporterFastMPEG.prm file to the system, if you remove it ev
    erything works swimmingly

  • File read errors when installing the oe schema.

    Hi,
    I'm new to Oracle and I've been playing around with the sample hr schema that came included with Oracle 11g XE (installed on a machine running Windows 7). I downloaded the oe schema off the otn website and I'm trying to install the sample database. I've pasted the errors I get in SQL Plus below.
    I'm assuming the 'unable to open *.sql' errors are because oracle is looking for them in a different directory. Those files are present in the same directory as oe_main.sql whose location I specify at the start. Should'nt this be enough?
    Thanks,
    Aditya
    SQL*Plus: Release 11.2.0.2.0 Beta on Mon Jun 27 13:45:03 2011
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    SQL> connect sys as sysdba
    Enter password:
    Connected.
    SQL> @?/demo/schema/oe/oe_main.sql
    Enter value for sys_password: oe
    User dropped.
    old 1: CREATE USER OE IDENTIFIED BY &pass
    new 1: CREATE USER OE IDENTIFIED BY OE
    User created.
    old 1: ALTER USER OE DEFAULT TABLESPACE &tbs
    new 1: ALTER USER OE DEFAULT TABLESPACE users
    old 2: QUOTA UNLIMITED ON &tbs
    new 2: QUOTA UNLIMITED ON users
    User altered.
    old 1: ALTER USER OE TEMPORARY TABLESPACE &ttbs
    new 1: ALTER USER OE TEMPORARY TABLESPACE temp
    User altered.
    Grant succeeded.
    Grant succeeded.
    Connected.
    Grant succeeded.
    Connected.
    Session altered.
    Session altered.
    SP2-0310: unable to open file "oe_cre.sql"
    SP2-0310: unable to open file "oe_p_cat.sql"
    SP2-0310: unable to open file "oe_p_pi.sql"
    SP2-0310: unable to open file "oe_p_cus.sql"
    SP2-0310: unable to open file "oe_p_ord.sql"
    SP2-0310: unable to open file "oe_p_itm.sql"
    SQL>
    Edited by: 868550 on 27-Jun-2011 01:26

    Hi Aditya,
    I'm assuming the 'unable to open *.sql' errors are because oracle is looking for them in a different directory. Those files are present in the same directory as oe_main.sql whose location I specify at the start. Should'nt this be enough?No. The main-script calls the subscripts relative to the directory you started your sqlplus from. You should change to */demo/schema/oe*, start +@oe_main.sql+ there and the installation should finish without further issues.
    -Udo

  • File reading error

    Hi friends, pleasehelp me on this issue, i had a file consisting mutiple input records. in reciever side it has to write each record into each file please help me urgently

    HI
    You need to use multi maps
    at sender side add the sender interface and receiver side add the number of message type you want. then it will be mapped
    Use this blog
    Illustration of Multi-Mapping and Message Split using BPM in SAP Exchange Infrastructure
    This blog involved BPM. Your requirement can be met without using BPM just use the message mapping provided here and create RA, ID, RD for any number of receivers you want.
    Thanks
    Gaurav

  • Error message when opening video files on z10

    when opening video files, showing error-the file can't be played due to an unexpected error(-3). request a solution to resolve this

    Hi and Welcome to the Community!
    Anytime random strange behavior or sluggishness shows up, the first thing to try is a proper reboot:
    Pre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. If this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Otherwise, please provide additional details...for example:
    What, exactly is the true file format? Not simply the file extension, but the true format?
    Does the file extension match the true file format?
    Where was the file created?
    Does the file work on other devices?
    Do other format video files work OK on your device?
    What is your exact OS level, and what exact app are you using to try and play the file?
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Relatively large video file problems

    Videos larger than about 4GB don't seem to get converted properly by the desktop app when syncing to the playBook.
    I have done a fair bit of testing and the file size seems to be the common denominator of the problem. In other words, its not a problem of what file types or codecs are supported, just when the file gets to a certain size when converting, it gets corrupted.

    Hey Proton2,
    When you attempt to synchronize the video file what error message displays? 
    What file formats have you tested?
    How much free space do you have In the PlayBook?
    Can you manually transfer the file to the PlayBook from the PC? (http://www.blackberry.com/btsc/KB26068)
    Thank you.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for

  • Error "Turn on Home Sharing in iTunes".  But it's on.  I do have a new router though...

    When I try to use my Computer section on my Apple TV so that I can view movies or music in my iTunes library it gives me the error "Turn on Home Sharing in iTunes".  Of course I have done that already in iTunes on my computer.  I went into my iTunes

  • How to open Zip Files in N900 ?

    Hi Guys, I wanted to know how to open Zip files in N900 ? is there a App available for it or what ? Thanks

  • Best elevated laptop stand for 15" MBP ??

    I need an elevated stand for my MBP. Which one are you using and what are the pros and cons?

  • SRM Sourcing Cockpit

    Hi Experts, I was trying to create PO from Sourcing Cockpit. PO was referencing to a PC, an error message was hit "Category '&1' deviates from category '&2' in corresponding contract item". However, we already switch off this message for PO under the

  • Windows 2012 System State Backup Fails

    We have a Windows 2012 Domain Controller VM that we would like to backup the System State using DPM. Agent has been installed and the Windows Backup has been added. When the backup runs in DPM, the job fails. Here is the error code: DPM cannot create