Exporting HD Footage to SD DVD and WEB

I am working with HDV footage and DVCPROHD footage within FCP 7. I am having trouble with the quality of my movies when I export the movies to SD DVD and to the web.
Here's what I have tried. From FCP I export a quicktime movie then I take that into compressor. From compressor I have tried the DVD Best 90 min and the result is bad.
I am using an mp4 setting for Vimeo and YouTube, and the quality isn't too bad, but my files are still large and it takes forever to upload.
If someone has suggestions on the best way to encode in compressor for SD DVD and for Vimeo and Youtube, I would appreciate it.
Cody

You are still a bit vague. Different people have differing ideas as to what is good.
It may be that you are expecting too much and you may already be getting the best that's available.
Without seeing your results it is difficult to comment.
Regarding your DVDs, if your movie is under 65 minutes long you can probably tweak the quality by modifying the existing pre-set to give a CBR (Constant Bit Rate) of 7.5Mbps and change Multi-pass to Single-pass.
This will give you the highest possible quality in only half the encoding time. However, the improvement won't be startling but the time saving will be very welcome!
Message was edited by: Ian R. Brown

Similar Messages

  • Export data to excel with EPPlus and Web Api - HELP!

    I am trying to do a simple excel file export with EPPlus and Web Api. In the html client I have a button that calls the web api and opens a new window. No error is thrown, but the result is always "file could not be downloaded".  I get the
    save file dialog but the file name is Order/ instead of the expected Orders.xls or Orders.xlsx.  Can anyone help? I'm surprised this is so difficult.
    using System.Linq;
    using System.Net.Http;
    using System.Web.Http;
    using OfficeOpenXml;
    using System.Collections.Generic;
    using System.IO;
    using System.Net.Http.Headers;
    using System.Net;
    using System.ComponentModel.DataAnnotations;
    namespace LightSwitchApplication
    public class OrdersController : ApiController
    // GET: api/Orders
    [HttpGet]
    public HttpResponseMessage Get()
    HttpResponseMessage response;
    response = Request.CreateResponse(HttpStatusCode.OK);
    MediaTypeHeaderValue mediaType = new MediaTypeHeaderValue("application/octet-stream");
    response.Content = new StreamContent(GetExcelSheet());
    response.Content.Headers.ContentType = mediaType;
    response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment");
    response.Content.Headers.ContentDisposition.FileName = "Orders.xls";
    return response;
    public List<Order> GetOrders()
    List<Order> colOrders = new List<Order>();
    using (ServerApplicationContext ctx = ServerApplicationContext.Current ??
    ServerApplicationContext.CreateContext())
    colOrders = ctx.DataWorkspace.Data.Orders.GetQuery().Execute().ToList();
    return colOrders;
    public MemoryStream GetExcelSheet()
    using (var package = new ExcelPackage())
    var worksheet = package.Workbook.Worksheets.Add("Orders");
    worksheet.Cells["A1"].LoadFromCollection(GetOrders(), false);
    package.Save();
    var stream = new MemoryStream(package.GetAsByteArray());
    return stream;
    This has been driving me crazy for two days!

    Making some progress.  I got the spreadsheet into a byte[] and used code from Paul Van
    Bladel's blog to make the HttpResponseMessage.  If I comment out the LightSwitch data access code, this works to export a spreadsheet from a static list to the browser from Web Api.
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Http;
    using System.Net.Http.Headers;
    using System.Web.Http;
    using Microsoft.LightSwitch;
    using Microsoft.LightSwitch.Details;
    using OfficeOpenXml;
    using System.ComponentModel.DataAnnotations;
    namespace LightSwitchApplication
    public class Order
    [Key]
    public int Id { get; set; }
    public string OrderNumber { get; set; }
    public class OrdersController : ApiController
    // GET: api/Orders
    [HttpGet]
    public HttpResponseMessage Download()
    MediaTypeHeaderValue mediaType =
    MediaTypeHeaderValue.Parse("application/octet-stream");
    byte[] excelFile = ExcelSheet();
    string fileName = "Orders.xlsx";
    MemoryStream memoryStream = new MemoryStream(excelFile);
    HttpResponseMessage response =
    response = Request.CreateResponse(HttpStatusCode.OK);
    response.Content = new StreamContent(memoryStream);
    response.Content.Headers.ContentType = mediaType;
    response.Content.Headers.ContentDisposition =
    new ContentDispositionHeaderValue("fileName") { FileName = fileName };
    return response;
    public List<Order> Orders()
    List<Order> orders = new List<Order>();
    orders.Add(new Order { Id = 1, OrderNumber = "123456789" });
    orders.Add(new Order { Id = 2, OrderNumber = "987654321" });
    return orders;
    // this doesn't work
    //public List<Order> Orders()
    // List<Order> colOrders = new List<Order>();
    // using (ServerApplicationContext ctx = ServerApplicationContext.Current ??
    // ServerApplicationContext.CreateContext())
    // colOrders = ctx.DataWorkspace.Data.Orders.GetQuery().Execute().ToList();
    // return colOrders;
    public byte[] ExcelSheet()
    using (var package = new ExcelPackage())
    var worksheet = package.Workbook.Worksheets.Add("Orders");
    worksheet.Cells["A1"].LoadFromCollection(Orders(), false);
    byte[] bytes = package.GetAsByteArray();
    return bytes;
    The problem is that the LightSwitch query (commented out in the code above) is trying to load navigation properties for the orders.  Error: "It is not valid to access this object on the current thread."  How do I solve this? 

  • How do I set up AE for DVD and Web?

    Hi -
    I've got a project that must be outputted for 2 viewing environments - a Quicktime that will be uploaded to YouTube and  - a DVD.  If I'm understanding this PAR discussion, I will have to build this project twice!!
    I know I need 720x480 for DVD and 480x360 for the Quicktime mov going to Youtube.  If I just burn the 480x360 onto the DVD I get some distortion.
    I used square pixels for the Photoshop and AE files for both.
    Part of the content is scans of forms - and the text should be sharp enough to read.  On the dvd is was way too blurry.
    So let me start with this question - given these two destinations - what specs should I use when setting up my Photoshop and AE documents?
    Thanks in advance -
    jl

    To support what the others have said:
    "If you’ll be rendering and exporting a composition to more than one media format, always match the pixel dimensions for your composition to the largest pixel dimensions used for your output. Later, you can use output modules in the Render Queue panel to encode and export a separate version of the composition for each format."
    (from "Planning your work", a section that I recommend that everyone read before they spend a lot of time animating in After Effects)

  • Best way to Export HD footage for SD DVD

    Hi all,
    I have a Sony HDV-HC7 camera and record everything in HD. I've captured the footage into final cut pro as HDV - 1080i60, then did some editing on the time line. Then, I went to File + Export + QuickTime Movie... This is where I'm lost. What should my Setting drop down be if I want to import to DVD Studio Pro and burn to SD DVD.
    Thanks in advance.
    mdawg

    Or....
    #42 - Quick and dirty way to author a DVD
    Shane's Stock Answer #42 - David Roth Weiss' Secret Quick and Dirty Way to Author a DVD:
    The absolute simplest way to make a DVD using FCP and DVDSP is as follows:
    1. Export a QT movie, either a reference file or self contained using current settings.
    2. Open DVDSP, select the "graphical" tab and you will see two little monitors, one blue, one green.
    3. Select the left blue one and hit delete.
    4. Now, select the green one, right click on it amd select the top option "first play".
    5. Now drag your QT from the broswer and drop it on top of the green monitor.
    6. Now, for a DVD from an HD source, look to the right side and select the "general tab" in the track editor, and see the Display Mode, and select "16:9 pan-scan."
    7. Hit the little black and yellow burn icon at the top of the page and put a a DVD in when prompted. DVDSP will encode and burn your new DVD.
    THATS ALL!!!
    NOW...if you want a GOOD LOOKING DVD, instead of taking your REF movie into DVD SP, instead take it into Compressor and choose the BEST QUALITY ENCODE (2 pass VBR) that matches your show timing. Then take THAT result into DVD SP and follow the rest of the steps. Except you can choose "16:9 LETTERBOX" instead of PAN & SCAN if you want to see the entire image.
    Shane

  • When exporting, the footage in the Input and output monitor is not showing up.

    I use Premiere Pro CS4.
    When I export my project and I choose the formats and options, they all work fine and it will export fine, but my footage does not show up in the input or output source montior.
    Thanks for your time

    See:
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=547004 Bug 547004] – Implement <input type="color">
    ''(please do not comment in bug reports; you can vote instead)''
    * https://developer.mozilla.org/en/HTML/element/input

  • Dvd to web stream

    I need to take half an hour footage off a dvd and onto a 160 x 120 web stream. What is the quickest way i can do this??
    At the moment it is taking far to long as i have a load of these to do. I am using ripper software to get it off dvd, then into final cut, where i boost up the volume and save it as a 160 x 120 uncompressed movie. then convert it for web streaming... surely there is a quicker easier option as is taking hours

    What format are you streaming?
    I wouldn't bother creating an uncompressed 160X120 file. Its always best to compress from the highest possible quality video. Just get it into FCP in DV res like you seem to be doing and make any edits or adjustments you need to make. If you're just going to QT or MPEG, use Export as QT Conversion and do your resize/compression there. You can also export from your timeline to Real Media with their free plugin, or WMV using Flip4Mac or Sorenson Squeeze.
    I work for a group that does alot of streaming media. I know this is sacrilegious to say here, but if I'm going to RM or WMV as I often am, I often dump my edit to tape and encode in real time on a Windows box with RM or WMV encoders instead of processing frame by frame on the Mac.
    Doug

  • How to bring footage from my DVD into FCP

    Hi,
    I REALLY need some help! I edited my film in FCP and burned in DVDSP, the same goes for the raw footage. They are both now on a DVD. My problem is that I let my friend borrow the raw footage tapes (bad mistake I know!) and now he cannot find the tapes. So I want to know if it is possible to take the raw footage back off the DVD without loosing any quality, and to bring it back into FCP? Thanks SO much for the help!

    Without losing ANY quality? Sorry, quality was lost when you encoded for DVD. More quality will be lost when you rip the footage off the DVD, and more lost again when you encode again for DVD.
    Sorry bud. Gotta press your friend more.
    Shane

  • Problems mastering to dvd and missing codecs

    I am having problems mastering to dvd with the mpeg 2 dvd option and also missing codecs,anyone can help me? new to cs5 so probably something I am doing wrong when going to export then selecting option mpeg2 dvd and select drive for output,it burns and then wont play back even though its burned okay...using tons dvds and wasting them,and getting rather frustrated...no idea how to use encore yet as in menus and stuff as used the old version of elements and 1.5 before upgrading ...so help me please

    Assuming that you have the full-paid version, and not the trial, look to see if Transfer Activation is grayed out?
    Try Importing a simple MP3 Audio file.
    It sounds like you have experienced the "revert to trial" of the full-paid version, so that you now have zero MPEG-2 support.
    The steps to correct this are:
    1.) Deactivate (probably grayed out)
    2.) Uninstall
    3.) Run Adobe Clean Script CS5 several times, rebooting between each run.
    4.) Install CS5
    5.) Instantly update, before launching
    6.) Activate
    7.) Launch and test.
    Good luck,
    Hunt

  • Ripping dvd footage to Final Cut and re-exporting to DVD

    Greetings,
    I'm taking footage off of various dvd materials with the intention of bringing them into final cut and re-exporting an edited product onto dvd. My method has been, thus far: to rip whichever chapters I'm looking for using Mac the Ripper, bring the chapters (VOBs) into MPEG Streamclip for 100% quality conversion to the 'Apple DV - PAL' setting, and then bringing those files into final cut for editing. However, it seems no matter what my export setting is, I'm getting quality loss on the finished product - a bit of pixelation (most evident on high-def televisions), etc. Converting the .VOBs to an Uncompressed setting wouldn't work as I'm working with hours of accumulated footage and the space it would consume wouldn't be a possibility. What I don't understand is why, when I burn a cloned dvd using Mac the Ripper there's hardly any quality loss at all, but here I'm getting quite a bit. Is this due to a re-compression happening somewhere? And is there any way of getting rid of it? Your help is greatly appreciated. Thank You.

    There is about four or five generational losses in your workflow.
    There isn't a way around that.
    Use the original footage to preserve quality in the process.
    Plus, why is MacTheRipper necessary with non commercial DVDs?

  • How to export HD footage to play on a standard DVD player

    Hi
    Sorry, I am very new, but very excited about learning more about cs4. I am thinking to buy a HD video camera. Does CS4 easily convert HD footage at the dvd burning stage to then play on a regular dvd player. I understand it will mean downgrading to SD - but I am thinking about all the people I will give dvds to for them to watch. Or should I just get a camera that films in both HD and SD

    Let me give you an optimum example of my last HD to DVD timing.  The video was shot with two cameras under good lighting conditions and there was very little color correction required and only a few special effects.  The finished video was 39 minutes (1.35 GB).  The AME encoding time on my 8 core (2.33 GHz) with a really fast RAID 0 array was 36 minutes 48 seconds!  If you start adding in a lot of color correction and lots of other effects encoding time does increase significantly. I am convinced that the DVD was of much better quality that had we shot it in SD.  I have had problem shoots (lighting) that required vast amount of color correction etc. that required many hours of MPEG2 DVD encoding.
    Incidentlly I do not export from Premiere (which uses the new copy of the Project on your C:drive), I close Premiere and open AME and use the much faster true project file on my RAID 0 array.

  • Exporting HDV footage to web streaming

    I'm trying to Export HDV footage to web streaming format but it always ends up stretched to fit the streaming format. any suggestions

    i'm with andy. i've been shooting hdv1080i60 for the past few months for web distribution, but a bunch of the sites/video players that i use don't support 16:9, and if i uploaded the video like that, it would get all stretched. my workaround has been to export>QT movie after i'm done editing, and then make a new 4:3 sequence and drop the previously exported quicktime file in it, and then export>using QT conversion at 320x240 with my normal web settings. it makes the video "letterboxed" but it plays undistorted when uploaded to youtube, google video, etc.
    -gardy

  • Can I create a fillable pdf form and then export it for client use on my web site?

    Can I create a fillable pdf form and then export it for client use on my web site?  I need clients to be able to fill in the (registration) form on my site then submit it via email.

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • How to Export Team Site Site Pages to .aspx and for subsequent upload to other Team Site and Web Part Customisation included. (Powershell)

    Hi guys,
    Can i please technically know how to export an .aspx file (in Site Pages library of a team site) to local file?
    Basically, SharePoint Designer has this feature "Export File"
    i Need exactly the same feature that can be done in Powershell
    I tried the following
    $web = get-spweb "MY URL"
    $folder = $web.GetFolder("SitePages")
    $files = $folder.files
    #trying to download the first file
    [System.IO.File]::WriteAllBytes("C:\\LocalPath",$files[0].OpenRead(),$true)
    The file exported via this method is Clean HTML without the Web Part Customisation!
    I NEED the web part customisation in the exported files.
    Sample downloaded via above script
    <!-- Cropping -->
    <tr>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:LeftColumn" ID="LeftColumn" FrameType="TitleBarOnly"/> </td>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:MiddleColumn" ID="MiddleColumn" FrameType="TitleBarOnly"/> </td>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:RightColumn" ID="RightColumn" FrameType="TitleBarOnly"/> </td>
    </tr>
    <!-- Cropping -->
    I tried using WebRequest, it returns the  End HTML, which is not working too.
    Please if anyone has done this? Or is there any SharePoint Designer Developer here and is willing to share how to perform the export in SharePoint Designer via Powershell? API available?
    Much Appreciated!
    Cheng

    Hi,
    According to your post, my understanding is that you wanted to export Team Site Site Pages to .aspx and for subsequent uploaded to other Team Site and Web Part Customisation included using Powershell.
    You can export a specific file or object from the Export-SPWeb context.
    Export-SPWeb -identity "http://sharepoint" -ItemUrl "/default.aspx"  -Path "c:\default.aspx"
    Import-SPWeb -identity "http://sharepoint" -Path "C:\default.aspx"
    Here is a similar thread for you to take a look at:
    http://sharepoint.stackexchange.com/questions/56664/how-to-download-a-sharepoint-aspx-page-from-server-using-powershell
    More information:
    http://technet.microsoft.com/en-us/library/ee428301(v=office.14).aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • I have tried to reinstall CS3 extended student version to my new comuter from the dvd and also from the web download but it does not work - I get the information that the server does not work- why. How should I do?

    I have tried to reinstall CS3 extended student version to my new comuter from the dvd and also from the web download but it does not work - I get the information that the server does not work- why. How should I do?

    Well the error message is in Swedish but says: The installation program database is damaged. Please contact the Adobe support (which is a hard thing to do!!). I use Windows 7 Home Premium with service pack 1.
    Från: Mylenium 
    Skickat: den 29 december 2014 16:48
    Till: Tony Bohman
    Ämne:  I have tried to reinstall CS3 extended student version to my new comuter from the dvd and also from the web download but it does not work - I get the information that the server does not work- why. How should I do?
    I have tried to reinstall CS3 extended student version to my new comuter from the dvd and also from the web download but it does not work - I get the information that the server does not work- why. How should I do?
    created by Mylenium <https://forums.adobe.com/people/Mylenium>  in Downloading, Installing, Setting Up - View the full discussion <https://forums.adobe.com/message/7050595#7050595>

  • I exported a iphoto slideshow to desktop, converted it to mpg file by using BURN app, burned to DVD and exported to a USB flashdrive. The DVD looks great but flashdrive is extremely fuzzy. What is the difference and how can I make flashdrive sharper?

    I exported an iphoto slideshow to desktop, converted it to mpg file by using the BURN app, burned it to a DVD and exported it to a USB flash drive. The DVD looks great and very sharp but the slideshow on the USB flash drive is extremely fuzzy. What is the difference and how can I make the slideshow on the flash drive look as sharp as the DVD?

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  For iPhoto 9.4.3 and earlier select Size = Medium or Large. For iPhoto 9.5 and later selct 480p.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process.
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailer like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago.
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them.
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.

Maybe you are looking for

  • Ipod touch showing as a camera

    my ipod touch is showing as a camera in windows xp home edition when plugged inti usb

  • Incorrect text size in Adobe Photoshop CS5 for Mac?

    Hey all, I am posting this for an older gentleman who is a photographer and uses Photoshop on his Mac. His iMac runs OSX 10.9.3 and he uses version 12.0.4 X64 of Photoshop CS5. I noticed when I was to his place the other day giving him tutoring sessi

  • The static field should be accessed in a static way

    Hello, I am developing a java app in eclipse and I am getting the error message: The static field Calendar.DAY_OF_WEEK should be accessed in a static way I am trying to get the first day of the first week in the current month, here is my code: Gregor

  • AddMouseListener in fullscreen

    Hi, I'm using the following 2 classes for displaying images in fullscreen mode and they work fine. But I need to display the images and also make them disappear when the user clicks on them. I'm trying to do it detecting the position of the mouse cli

  • How to scroll the JTable to see all the cells in the row?

    Hi, I am using JTable and I want to scroll through the cells so that I can see all the cells in the JTable. Please help me. Sharma