Transferring TS files to a PC? One for the Experts.

Right, here we go.
1. I'm using iMovie4 to burn DVDs, using the PAL compression setting and the standard single layer burner in the Mac G4.
2. Coincidentally, I've just bought a Dual-Layer DVD burner for my PC.
3. The Dual-Layer burners that are available for Macs apparently have problems when connected to my type of Mac, (a G4). Also, they cost a bunch.
4. I thought it would be a good idea if I could copy the uncompressed video files that I make on my Mac, to my PC, where I can burn them to DVD with my Dual-Layer burner without any compression, thereby getting the best possible quality. I know there is a compression setting under the "Share" option which allows for no compression at all.
I believe you can't just connect a Mac and a PC together to transfer data from a Mac HDD to a PC HDD.
Question: Are the video files that are made on a Mac with iMovie, the same as and compatible with a PC? Also, would it be possible to copy those uncompressed video files on to an external hard drive using the Mac, and then import them to a PC to burn them with Nero to a dual-layer disk?
Thanks.

did you try to connect your new burner to your Mac...?
anyhow:
I believe you can't just connect a Mac and a PC together to transfer data
well, that is a everyday process in many companies, called a Local Area Network, LAN.. only problem is: a Mac does read/write PC stuff, a PC does NOT have direct access to a Mac's drive... but establishing a LAN, the Mac translates everything (PCs can be so dumb...;-) ) you just need a ethernet cable plus some settings on the PC...
the pros in the Networking Area of this forum will help you:
http://discussions.apple.com/forum.jspa?forumID=733
compression:
the "no compresion at all" is dv in iM, which is supported byPCs, ... BUT! iM puts any content into a socalled .mov container... you need to install Quicktime For Windows to make the PC accept such containers (they prefer .avi); or you need QTpro, to strip of the container and get a clean .dv file..
happy networking..

Similar Messages

  • New company requirements - a really good one for the experts

    What is the quickest and easiest way to stop trading as one company and start trading as a new company, under the same company code. We want to retain all the history of the customers, vendors, etc.. but not their balances. We want to start with zero balances in the new company. This has to be done very quickly so not enough time to create a new company code?
    Any suggestios or if you require additional information please let me know.

    Hello,
    You can transfer all customers, vendors and G/L account balance amount to dummy G/L account. After transfering operation, you can see all customers, vendors and G/L account balance is zero. Then you should clear all customers and vendors open line items. After this, please check all accounts balance with using F.08 report.
    Then you should post new opening balance for all G/L accounts, vendors and customers.
    I think, this is the one way without using new company code.
    Regards,
    Burak

  • One for the experts!

    I have been working on a procedure to send pdf email attachments and have come across a problem that is testing my patience.
    I am trying to send two types of pdf, one created in oracle reports and one created in microsoft access.
    The pdf i send from oracle reports opens ok and the pdf can be viewed, however the pdf from access opens ok, regonises the number of pages but it is just blank pages.
    I am using oracle 9i db and the files are stored on the server in the same place. We transfer the pdf from ms access over by ftp in binary mode.
    I have attached my code below
    create or replace
    PROCEDURE send_email_attach_SS( sender IN VARCHAR2,
    recipient IN VARCHAR2,
    SUBJECT IN VARCHAR2,
    MESSAGE IN VARCHAR2,
    FILENAME1 IN VARCHAR2 DEFAULT NULL,
    FILENAME2 IN VARCHAR2 DEFAULT NULL,
    FILENAME3 IN VARCHAR2 DEFAULT NULL,
    Cc IN VARCHAR2 DEFAULT NULL) IS
    L_SMTP_SERVER VARCHAR2(20); /** TO STORE THE IP ADDRESS OF THE SMTP SERVER **/
    L_FILE_NAME VARCHAR2(100); /** TO STORE THE FILENAME **/
    CRLF VARCHAR2(2):= CHR(13) || CHR(10);
    L_MESG VARCHAR2(32767); /** TO STORE THE MESSAGE **/
    CONN UTL_SMTP.CONNECTION; /** SMTP CONNECTION VARIABLE **/
    TYPE VARCHAR2_TABLE IS TABLE OF VARCHAR2(200) INDEX BY BINARY_INTEGER;
    FILE_ARRAY VARCHAR2_TABLE; /** AN ARRAY TO STORE THE FILE NAMES **/
    I BINARY_INTEGER; /** ARRAY INDEX **/
    L_SLASH_POS NUMBER; /** TO STORE THE POSITION OF \ IN THE FILE NAME **/
    ABORT_PROGRAM EXCEPTION; /** USER DEFINED EXCEPTION **/
    RETURN_DESC1 VARCHAR2(2000); /** VARIABLE TO STORE THE ERROR MESSAGE. TO BE RETURNED TO THE CALLING PROGRAM **/
    RETURN_ERROR VARCHAR2(50); /** VARIABLE TO STORE THE ERROR PROCEDURE. TO BE RETURNED TO THE CALLING PROGRAM **/
    VLOOP NUMBER := 0;
    V_BFILE BFILE ;
    V_LGH_FILE BINARY_INTEGER;
    VBUFFER RAW (32767);
    L_AMOUNT BINARY_INTEGER := 1024;
    L_POS PLS_INTEGER := 1;
    /**** MAIN PROGRAM STARTS HERE ****/
    BEGIN
    Begin
    Select sch_email_ip_addr
    Into L_SMTP_SERVER
    From com_schemes;
    End;
    /*** ASSIGNING FILE NAMES TO ARRAY ***/
    FILE_ARRAY(1) := FILENAME1;
    FILE_ARRAY(2) := FILENAME2;
    FILE_ARRAY(3) := FILENAME3;
    RETURN_DESC1 := 'THERE WAS AN ERROR IN OPENING CONNECTION.';
    CONN:= UTL_SMTP.OPEN_CONNECTION( L_SMTP_SERVER);
    UTL_SMTP.HELO( CONN, L_SMTP_SERVER );
    UTL_SMTP.MAIL( CONN, sender );
    UTL_SMTP.RCPT( CONN, recipient );
    IF (Cc IS NOT NULL) THEN
    UTL_SMTP.RCPT( CONN, cc );
    END IF;
    UTL_SMTP.OPEN_DATA ( CONN );
    /*** GENERATE THE MIME HEADER ***/
    RETURN_DESC1 := 'THERE WAS AN ERROR IN GENERATING MIME HEADER.';
    IF (CC IS NOT NULL) THEN
    L_MESG:= 'Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || CRLF ||
    'From: ' || sender || CRLF || 'Subject: ' || SUBJECT || CRLF ||
    'To: ' || recipient || CRLF || 'Cc: ' || cc || CRLF ||
    'Mime-Version: 1.0' || CRLF ||
    'Content-Type: multipart/mixed; boundary="DMW.Boundary.605592468"' || CRLF ||
    '' || CRLF ||
    'This is a Mime message, which your current mail reader may not' || CRLF ||
    'understand. Parts of the message will appear as text. If the remainder' || CRLF ||
    'appears as random characters in the message body, instead of as' || CRLF ||
    'attachments, then you''ll have to extract these parts and decode them' || CRLF ||
    'manually.' || CRLF || '' || CRLF ||
    '--DMW.Boundary.605592468' || CRLF ||
    'Content-Type: text/plain; name="message.txt"; charset=US-ASCII' || CRLF ||
    'Content-Disposition: inline; filename="message.txt"' || CRLF ||
    'Content-Transfer-Encoding: 7bit' || CRLF ||
    '' || CRLF || MESSAGE || CRLF || CRLF || CRLF ;
    ELSE
    L_MESG:= 'Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || CRLF ||
    'From: ' || sender || CRLF || 'Subject: ' || SUBJECT || CRLF ||
    'To: ' || recipient || CRLF || 'Mime-Version: 1.0' || CRLF ||
    'Content-Type: multipart/mixed; boundary="DMW.Boundary.605592468"' || CRLF ||
    '' || CRLF ||
    'This is a Mime message, which your current mail reader may not' || CRLF ||
    'understand. Parts of the message will appear as text. If the remainder' || CRLF ||
    'appears as random characters in the message body, instead of as' || CRLF ||
    'attachments, then you''ll have to extract these parts and decode them' || CRLF ||
    'manually.' || CRLF || '' || CRLF ||
    '--DMW.Boundary.605592468' || CRLF ||
    'Content-Type: text/plain; name="message.txt"; charset=US-ASCII' || CRLF ||
    'Content-Disposition: inline; filename="message.txt"' || CRLF ||
    'Content-Transfer-Encoding: 7bit' || CRLF ||
    '' || CRLF || MESSAGE || CRLF || CRLF || CRLF ;
    END IF;
    RETURN_DESC1 := 'THERE WAS AN ERROR IN WRITING MESSAGE TO CONNECTION.';
    UTL_SMTP.WRITE_DATA ( CONN, L_MESG );
    /*** START ATTACHING THE FILES ***/
    FOR I IN 1..3 LOOP
    IF FILE_ARRAY(I) IS NOT NULL THEN
    BEGIN
    -- L_FILE_NAME := FILE_ARRAY(I);
    RETURN_DESC1 := 'THERE WAS AN ERROR IN OPENING FILE.';
    V_BFILE := BFILENAME('EMAIL_ATTACH', FILE_ARRAY(I));
    dbms_lob.fileopen(V_BFILE, dbms_lob.file_readonly);
    V_LGH_FILE := dbms_lob.getlength(V_BFILE);
    L_MESG := CRLF || '--DMW.Boundary.605592468' || CRLF ||
    'Content-Type: application/pdf; name="' || FILE_ARRAY(I) || '"' || CRLF ||
    'Content-Disposition: attachment; filename="' || FILE_ARRAY(I) || '"' || CRLF ||
    'Content-Transfer-Encoding: 8bit ' || CRLF || CRLF ;
    UTL_SMTP.WRITE_DATA ( CONN, L_MESG );
    L_POS := 1;
    WHILE L_POS < V_LGH_FILE
    LOOP
    VLOOP := VLOOP + 1;
    RETURN_DESC1 := VLOOP || '-THERE WAS AN ERROR IN READING FILE.';
    dbms_lob.read(V_BFILE, L_AMOUNT, L_POS, VBUFFER);
    IF VBUFFER IS NOT NULL THEN
    UTL_SMTP.WRITE_DATA ( CONN,utl_raw.cast_to_varchar2(VBUFFER));
    VBUFFER := '';
    END IF;
    L_POS := L_POS + L_AMOUNT;
    END LOOP;
    END;
    L_MESG := CRLF;
    UTL_SMTP.WRITE_DATA ( CONN, L_MESG );
    dbms_lob.fileclose(V_BFILE);
    END IF;
    END LOOP;
    RETURN_DESC1 := '70 - E: THERE WAS AN ERROR IN CLOSING MIME BOUNDARY. ';
    L_MESG := CRLF || '--DMW.Boundary.605592468--' || CRLF;
    UTL_SMTP.WRITE_DATA ( CONN, L_MESG );
    UTL_SMTP.CLOSE_DATA( CONN );
    UTL_SMTP.QUIT( CONN );
    EXCEPTION
    WHEN ABORT_PROGRAM THEN
    utl_smtp.quit(CONN);
    raise_application_error(-20000,
    'Failed to send mail due to the following error:'|| RETURN_ERROR ||'/'|| RETURN_DESC1||'/'||FILE_ARRAY(I),true);
    WHEN OTHERS THEN
    utl_smtp.quit(CONN);
    raise_application_error(-20000,
    'Failed to send mail due to the following error:' || RETURN_ERROR ||'/'|| RETURN_DESC1||'/'||FILE_ARRAY(I),true);
    END;

    Just a question,
    What was so disastrous with the base64 encoding?
    If you are leaving the encoding of your file as 8bit you may run into issues with maximum line lengths imposed by SMTP standard of 1000 bytes (including the trailing two byte CRLF). I may be grasping at straws here, but if your Access generated PDF has data that exceeds the 1000 byte limit (998 bytes excluding the CRLF) you may be running into data corruption issues when the SMTP standard either truncates or breaks your long line to insert the the required CRLF characters.
    You may also be interested in some of my notes on base64 encoding:
      * Oracles RAW data types can hold 2G of data but PL/SQL is limited to a
      * MAX LONG RAW SIZE 32760 (~32k)      BASE64 ENCODING HAS A CODE
      * MAX LINE LENGTH 76                  BLOAT FACTOR OF 4:3 SUCH THAT
      * MAX LINES / BLOCK 431               IT TAKES 4 BYTES TO REPRESENT
      * MAX LONG RAW BLOCK SIZE 32756       EVERY 3 BYTES OF ACTUAL DATA
      * Oracle's BASE64_ENCODE outputs 64 character lines instead of 76.
      * MAX LINE LENGTH 64             USING A 76 CHARACTER LINE LENGTH DOES WORK BUT
      * MAX LINES / BLOCK 511          RESULTS IN SOME LINES LENGTHS OF 64AND SOME 0F 76
      * MAX LONG RAW BLOCK SIZE 32704  WHERE TWO ENCODING BLOCKS ARE APPENDED TOGETHER
      MAX_BASE64_BLOCK_SIZE CONSTANT PLS_INTEGER := 32704 / (4 / 3);
      MAX_BASE64_LINE_WIDTH CONSTANT PLS_INTEGER   := 64 / (4 / 3)

  • I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I am not aware of a way except for photos that allows you to select multiple files in an email. I even checked settings in the Adobe Reader app, and it does not show that ability.

  • The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I'm very computer literate and am pretty sure the problem is on your end.

    The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I've tried it multiple times and continue to get the same message: "NOT FOUND The requested item could not be found". I also tried through the Market application on the phone but ended-up with the same result.
    I'm very computer literate and am pretty sure the problem is on your end. If this is the case then no one can download the app. I considered that perhaps because it's still in Beta that it was removed due to some other type of software issue. I would really like to use Firefox on my new Droid (2.0); when with this be available?

    Firefox will not appear in the Market for most phones with incompatible hardware. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    Even on some supported devices, a bug in the Market software prevents Firefox from showing up. This may be related to the fairly recent Android Market app update. If you go to Settings/Applications/Market and choose "Uninstall" you can uninstall the update, and then search for and install Firefox from the marketplace.
    Or, if you have a supported phone, you can download the app directly by typing this address into your phone's browser: http://bit.ly/fxbeta3
    (Note: To download the app directly for an AT&T phone, you will have to search for instructions on "sideloading" the APK file, since AT&T disables the option to install from non-Market sources.)

  • MAC OS Yosemite - CS6 - A while back, i did something to where when i open a file in photoshop, it no longer is one window, now it's two separete ones. one for the program itself, and another for the actual file how do it get it back to where it's all one

    - A while back, i did something to where when i open a file in photoshop, it no longer is one window, now it's two separete ones. one for the program itself, and another for the actual file how do it get it back to where it's all one window without having to be in full screen mode? I've managed to go some time like this, but right now it's just really annoying me. HELP!!!

    Just drag the small window to the top right below the toolbar, you'll see the area highlighted and when you drop it the file should dock.

  • How can I manage several ID on my computer, one for my iPhone and another one for the iPad of the family?

    Hi everybody
    Just have bought an ipad2 and i would like to manage several IDs on my computer (i.e keep my iPhone ID and create another one for the ipad to manage apps for my iPhone (4) and the apps for the iPad).
    How can I resetup the iPad to create that new ID on itunes?
    Thanks for your help
    Jp

    If you have separate iTunes accounts for the two devices then you'll need to buy 2 copies of any app that you want on both device - you can't copy or move apps from one account to another (they are tied to the account that bought/downloaded them). If you want to reset the iPad then logout of the account on it (Settings > Store and tap the id on the right-hand side) and then Settings > General > Reset > Erase All Content And Settings will reset it back to factory defaults.
    You may want to consider one of three options mentioned on this page http://support.apple.com/kb/HT1495

  • How can I use two single-dimensional arrays-one for the titles and array

    I want to Use two single-dimensional arrays-one for the titles and one for the ID
    Could everyone help me how can i write the code for it?
    Flower
    public class Video
    public static void main(String[] args) throws Exception
    int[][] ID =
    { {145,147,148},
    {146,149, 150} };
    String[][] Titles=
    { {"Barney","True Grit","The night before Christmas"},
    {"Lalla", "Jacke Chan", "Metal"} };
    int x, y;
    int r, c;
    System.out.println("List before Sort");
    for(c =0; c< 3; ++c)
    for(r=0; r< 3; ++ r)
    System.out.println("ID:" + ID[c][r]+ "\tTitle: " + Titles[c][r]);
    System.out.println("\nAfter Sort:");
    for(c =0; c< 3; ++c)
    for(r=0; r< 3; ++ r)
    System.out.println("ID:" + ID[c][r]+ "\tTitle: " + Titles[c][r]);

    This is one of the most bizarre questions I have seen here:
    public class Video
    public static void main(String[] args) throws Exception
    int[] ID = {145,147,148, 146,149, 150};
    String[] Titles= {"Barney","True Grit","The night before Christmas", "Lalla", "Jacke Chan", "Metal"};
    System.out.println("List before Sort");
    for(int i = 0; i < Titles.length; i++)
       System.out.println("ID:" + ID[i]+ "\tTitle: " + Titles);
    System.out.println("\nAfter Sort:");
    for(int i = 0; c < Titles.length; i++)
    System.out.println("ID:" + ID[i]+ "\tTitle: " + Titles[i]);
    Generally you don't use prefix (++c) operators in you for loop. Use postfix (c++).
    Prefix means that it will increment the variable before the loop body is executed. Postfix will cause it to increment after.

  • I have an apple ID for the South African iTunes store how do I get one for the US store?, I have an apple ID for the South African iTunes store how do I get one for the US store?

    I have an apple ID for the South african i Tunes store.  How do I get one for the US one?  I want to use Mind Snacks.

    You will need a valid billing address in the US and be in the US when you want to buy anything from it. You can try requesting that it be added to the South African, but ultimately it's the app's developer that will have to grant Apple a licence to sell it there : http://www.apple.com/feedback/itunes.html

  • HT4623 I have an ipad3, iPhone3gs and iPhone5, my problem is my apple ID works all 3 devices but I need a second ID for the iPhone 5. How do I delete my ID and set up a new one for the iPhone5 but keeping my own apple ID for the iPad and iPhone 3GS

    I have an ipad3, iPhone3gs and iPhone5, my problem is my apple ID works all 3 devices but I need a second ID for the iPhone 5. How do I delete my ID and set up a new one for the iPhone5 but keeping my own apple ID for the iPad and iPhone 3GS.

    http://support.apple.com/kb/he37

  • I rented the movie "One for the Money" but it isn't on my computer, what should I do?

    I rented the movie "One for the Money" but it's not in my iTunes. iTunes said that I downloaded the movie but it's not on my computer. what should I do? i also rented the movie "The Vow" but it keeps telling me there was an error in the download, but it won't specify what's wrong so that I can fix it.

    What is the code?
    Did you edit the code several times while working on the form?

  • Are not the right ones for the icloud account. How can I find out what these are?

    I have downloaded icloud onto my PC. When I try to access my account I am told that although my Apple ID and password are correct they are not the right ones for the icloud account.How can I find out what these are?

    Christine Helen wrote:
    I can't find any way of creating an icloud ID. I only have a PC. no Mac product except an iPod classic.
    Oh, then you can't unless you know someone with a Mac you could use for a moment or 2. (Like at the Apple Store)

  • I lost my iphone in the water I bought a new one 4S now I have 2 back ups in Icloud, the one for the new Iphne and the old Iphone where I have the most info I need. How I can download my old backup?

    I lost my iphone in the water I bought a new one 4S now I have 2 back ups in Icloud, the one for the new Iphne and the old Iphone where I have the most info I need. How I can download my old backup?

    Welcome to the Apple community.
    You cannot download a backup from iCloud, the only way to access it is to restore to the backup with your new phone, which you should have done when you first connected it. If you restore now, you will lose all the new information you have added to your new phone.

  • I am debating between the 13in 2.9ghz mac book pro or the 13in 2.5 ghz mac book pro with all the same specs bbut for me i am trying to see which one for the money is better becuase the 2.5 will run me 100-200 dollars less than the other

    I am debating between the 13in 2.9ghz mac book pro or the 13in 2.5 ghz mac book pro with all the same specs bbut for me i am trying to see which one for the money is better becuase the 2.5 will run me 100-200 dollars less than the other

    Only you can make that determination. All things being equal the 2.5 GHz model is slower.

  • I had to replace the hard drive on my computer.  I am now trying to download Adobe Photoshop CS6, previously purchased.  I get an error that files are missing after waiting for the whole download.  I have Windows7

    I had to replace the hard drive on my computer.  I am now trying to download Adobe Photoshop CS6, previously purchased.  I get an error that files are missing after waiting for the whole download.  I have Windows7

    The error msg said that the file archive part of Adobe photoshop CS6 is missing and that I need all parts in the same folder.

Maybe you are looking for

  • Get All group from LCES using Livecycle java API

    Hello , Can anyone told me how i can retrieve all the groups that exist in my livecyle using JAVA API. Some method who return all groups ?? Thanks!

  • Adobe acrobat 9.3.2 crashes when accessing Suntrust Mortgage statement

    I am using the latest Acrobat reader. I have reinstalled it numerous times, and tried opening these documents on another computer using Adobe acrobat 9 Pro. I am using Windows 7 Ultimate 64 bits. In the end I had to download Foxit, which reads the do

  • AR Invoice

    We currently have 2 different operating units, 1 which is live and the other that will go live in about 6-7 weeks. In OU1 (the one that is live) we have already created an invoice via XML Publisher and it's working well :) We need to do the same for

  • Raw Values in all_tab_columns (8i)

    I want to retreive Low_value and High_value from all_tab_columns. These fields use the raw datatype. How do I convert them to a decimal number. I am using Oracle 8i. Thanks, Les Smith

  • Save servlet html output as jpeg.

    Hello everybody, I have a servlet that creates an html page. The html consits of information from a database and displays a data sheet with images and text. I have been asked if the outputed data sheet can be saved as an image (jpeg). Is this possibl