Any straight-to-.mpeg method?

Hi, all -
I run a high school cable-TV channel and have just purchased new playback hardware which can take MPEG-2 files as broadcast files. The documentation, which is a bit flimsy at best, merely says one should export video using plain old DVD options, rather than an MPEG-2 stream. It clarifies, at one point, that the file must be .mpg or .mpeg style.
This is all well and good, but as far as Compressor is concerned, all "DVD" options (so far as I know) output .m2v files rather than .mpg or .mpeg files.
The one solution I've found so far - based on a post I read here on the board - is to export my video straight to DVD Studio Pro, create a simple DVD project with just the one video file, and let it build a Video TS folder. Inside that folder, I take the .vob file(s) for that video and run it/them through MPEG Streamclip to create a video + audio MPEG file.
This works well enough but also takes additional time. I'd love to just export to Compressor, set it to be a *.mpeg file, and walk away or leave it chug away overnight.
Has anyone out there had any experience with this kind of output direct from Compressor? Any useful input would be appreciated!
- Mike
Dual 2.5 GHz G5   Mac OS X (10.4.3)  

Mike,
I work for a broadcasting company that uses mpeg-2 playback for our on-air programming. I use compressor to make the mpeg files for our playback hardware. What we use requires a muxed mpeg2 (one file with both video and audio). When I export this through compressor it gives an m2t file (non muxed mpeg's would be an m2v file). I am able to change the m2t file to mpg and it plays back just fine. I created a setting in compressor so that the file is output with .mpg instead of .m2t to save me from renaming. It may or may not work for you but give it a try. Good Luck.

Similar Messages

  • I m trying to manage space in my iPhone but what I find is I m not able to delete document data alone of an application without deleting the entire application ... Any other suggestions or methods to accompanish this? Any pointers welcome... Is this a bug

    I m trying to manage space in my iPhone but what I find is I m not able to delete document data alone of an application without deleting the entire application ... Any other suggestions or methods to accompanish this? Any pointers welcome... Is this a bug

    You mean take the cover off of the iPhone, to look inside?  I'd recommend against it.  Even with warranty expired, you might qualify for an out-of-warranty service, which for 3GS is $149.
    Other than that, any repair/service options are going to cost money.  You might want to see if a wireless carrier will let you get a new contract & phone.
    Out of curiousity, you're just using at as, basically, an iPod Touch, if there's no cell provider?  Did I understand that correctly?

  • How the heck do I sync outlook tasks with reminders on iPhone 5c using USB?  Not at all interested in any over the air methods

    Trying to sync my new iPhone 5c with outlook tasks using the USB connection and can't find any method to do this.  Due to data security I am not interested in sync'ing using any over the air method such as exchange server or iCloud.  Updated from a Blackberry to iPhone due to many recommendations but this apparent non-functionality by Apple is a major disappointment and a significant lack of capability.  Any help appriciated.

    Windows still allows syncing over USB:
    http://support.apple.com/kb/HT1296

  • Startflightrecording: any way to get methods deeper stack traces?(dept 64)

    I'm using jrcmd PID start_flightrecording in order to get some useful samplings, but it seems the stack traces are limited to depth 64 (i.e. in the Hot Methods's Predecessors view of JRockit Mission Control 4.1.0 I see only the last 64 frames) hence I miss important info about calling dynamics. I'm using jrockit-jdk1.6.0_37-R28.2.5-4.1.0. I've seen the [R27 version|http://docs.oracle.com/cd/E13150_01/jrockit_jvm/jrockit/jrdocs/refman/optionXX.html] supported a -XX:Tracedepth argument, but I don't see it on [R28 documentation|http://docs.oracle.com/cd/E15289_01/doc.40/e15062/toc.htm].
    Any idea?
    Kind regards
    Davide
    Edited by: user970531 on Apr 15, 2013 8:39 AM

    I'm using jrcmd PID start_flightrecording in order to get some useful samplings, but it seems the stack traces are limited to depth 64 (i.e. in the Hot Methods's Predecessors view of JRockit Mission Control 4.1.0 I see only the last 64 frames) hence I miss important info about calling dynamics. I'm using jrockit-jdk1.6.0_37-R28.2.5-4.1.0. I've seen the [R27 version|http://docs.oracle.com/cd/E13150_01/jrockit_jvm/jrockit/jrdocs/refman/optionXX.html] supported a -XX:Tracedepth argument, but I don't see it on [R28 documentation|http://docs.oracle.com/cd/E15289_01/doc.40/e15062/toc.htm].
    Any idea?
    Kind regards
    Davide
    Edited by: user970531 on Apr 15, 2013 8:39 AM

  • Can I write to a BO attribute straight from BO method-skipping container ?

    hi,
    We have created a single character virtual attribute in BO, we have created a method that will set the attribute to X if its blank and blank if its X.
    I have tried working with  object-attribute name but it does not set the values. I am trying to remove the container binding between method->task and task-->BO out of question by writing straight to BO.
    Is it possible ?
    thanks,
    GV

    You can code for Virtual attribute.
    You can call method using
    SWC_CALL_METHOD
    SWC_GET_PROPERTY
    Thanks
    Arghadip

  • Is there a append flag in any of the PrintWriter methods--- urgent info pls

    hi,
    I have written a function writedata to output the result of a query to a file.I am calling this function from main.
    Its working fine if my output just single line.But the problem arises when i want output multiple line result.
    every time this method is called it overwrites the data written before.
    ie if the result of my query is two line
    My name is jack
    My name is Tom
    it is just displaying My name is Tom , overwriting the previously written data ie my name is jack.
    I dont know if i can set a boolean flag append here. I am not sure if using PrintWriter() i can do this.
    can anyone tell me if i can use any other class other than printwriter to output text to a file or is there a method using which i can append text to a file( ie in printwriter)
    thanks
    sagarika
    void writedata(String name,String loc,String len,String yr,String format,int price,String outfile) {
    try{  fileo = new File(outfile);
    fw = new FileWriter(fileo);
    pw = new PrintWriter(fw);
    pw.println("NAME " + name+" AT "+loc+" LENGTH "+len+" YEAR "+yr+" FORMAT "+format+" PRICE "+price);
    System.out.println("NAME " + name+" AT "+loc+" LENGTH "+len+" YEAR "+yr+" FORMAT "+format+" PRICE "+price);
    System.out.println(" inside writedata mtd");
    pw.close();
    } catch(IOException ex) {
    System.err.println("error is " + ex);
    } // void write data

    can anyone tell me if i can use any other class other
    than printwriter to output text to a file or is there
    a method using which i can append text to a file( ie
    in printwriter)
    This question would probably best be posted in one of the other forums such as the Java Programming forum.

  • Any idea why screen_run method is bypassed (SL)??

    Hi!
    I have some details screen which I want to override (run some different screen instead of default depending on my needs).. I did this before (VS2012) without problems.. but now..
    I've noticed that in some situations I cannot rely on screen_run / screen_canRun method(s).. default details screen is created and showed, but "run" / "can run" method is never triggered.. don't have idea why.. even when I set up to specific
    screen to run, it's not triggered also.. 
    Any idea(s)?? Tnx!
    Kivito
    Nobody expects the Spanish Inquisition! (M.P.F.C.)

    Hi Reigh!
    I was playing with
    this sample.. Not sure what changed, but  now I'm getting it to work when I set specific screen as default.. Maybe I don't see the obvious, or I'm mixed up with html client.. damn! :)
    Cheers!
    Kivito
    Nobody expects the Spanish Inquisition! (M.P.F.C.)

  • Is there any way to call methods of one view from another

    Hi experts,
    I am new to webdynpro.I am having some requirement in which I need to call methods of one view from some other view of same component .So is there any way to do this.

    Dear Pradeep,
    This will solve your problem......( plz 1st read everything ..)
    There are 2 views  :
    i) Mandatory Attributes ' view(V1)
    ii) Button' s  View..(V2)
    1. Create a method in Component Controller.( M1).
    2. Goto V2 . In the Action Handler method of Button , call method  M1 of component controller.
    3. Write your Code in M1 instead of  V2 method.
    4. Create an EVENT ( E1 ) in component controller.
    5. Fire this event  from M1 before executing Action Code.
    6. Now  Add the event handler method of  E1 in  V1 ( i.e. Mandatory attributes view. )   ..........clear????? .. set "METHOD TYPE" = Event Handler. instead of  Method.
    7. In this event handler method in V1 , write the "check_mandatory_attribute_view" method.
    8. use necessary flags..
    Regards ,
    Aditya.

  • Any listener for class method being invocated?

    hi there all,
    is there any class listener that can monitor any instantiation of class and invocation of methods?
    thanks
    ng

    AOP is indeed dangerous, when people abuse it. They miss out all the blurb about what an aspect is, and what cross-cutting concerns are, and just get seduced by the fact that you can nail on, at runtime, extra bits of control flow you hadn't previously considered. Ouch!

  • URGENT---ANY FREE HAND DRAWING METHOD

    on the CANVAS I wanna do freehand drawing...
    is there ANY method or technique for this......
    also if anyone knows then letme know in detail
    how to fill any given shape/polygon.....
    the coordinates of which is not known....
    rgds
    ASHWIN

    ashwin0007,
    This is at least your 3rd recent post on the same subject, marked "URGENT" and ALL-CAPITALS no less. Go back and read prior responses--the url ref provided in one of them does work, (I can attest to it being tested from at least 6 locations around the world).
    --A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Any alterative application upload methods?

    Hey all,
    My app is 1 gigabyte in size and I'm having problems with the upload. With my Internet connection the upload should take about 3 hours, but when I check back after about an hour the upload screen is gone and I see a page saying the connection is Reset.
    I know that 1+ GB app size is allowed because some of the navigation apps are greater than 1 GB.
    Are there any alternative upload methods?
    Thank you.

    Devs have two choices for uploading apps...
    One is via a web broswer and iTunes Connect.
    The other is 'Application Loader'....which is recommended for larger apps.
    Apple recommends the loader for binaries that are over 200MB. You can find the loader by following these steps from within iTunes Connect:
    • Choose Manage Your Applications
    • Scroll to the bottom of the page
    • Click the Get Application Loader link
    • Click the Download Developer Guide link as well if you don't have this document yet.
    To use app loader, during the process of adding a new application to the App Store, when prompted in iTunes Connect (on the Upload tab), click the checkbox that says Check here to upload your binary later....then run Application Loader and it will respond and ask which binary, etc.

  • Any advice on which method I should use?

    Essentially, I will be collecting a varaible number of longs. Te fixed length of arrays makes it seem inefficient and I am not sure what collection method/object I should be using otherwise. Please advise. Thank you.

    Essentially, I will be collecting a varaible number
    of longs. Te fixed length of arrays makes it seem
    inefficient and I am not sure what collection
    method/object I should be using otherwise. Please
    advise. Thank you.You can use an ArrayList of Long.
    An ArrayList basically is a dynamic array implementation so it will grow in size as you add the Longs.
    Not that I write Long instaed of long. Long is the wrapper class of the long primitive. ArrayLists can only store objects so if you add longs they will be converted to Long objects instead. This is a drawback but it may not be a problem for you?
    One possible strategy is to first collect the Longs in an ArrayList and then when you know the actual umber of longs create a static long array of that size.

  • Not getting any straight answers for this question!!!!!

    Hi All,
    This question i've posted before, but i didn't get correct answer. I'm posting it again!!!!!
    I'm very confused about the flow of process.
    right now i'm working on webmethods. I did worked on lots of message types like 850, 810,856,832,940,997 in X12 and also EDIFACT.......for that past 2 1/2 years.
    This question is completely related to SEEBURGER ADAPTER NOT ANY CONVERSION AGENT:
    1.
    when an EDI message comes into XI it will be converted into EDI-XML format bye seeburger adapter. where we get the prototype of EDI message? Do we have a package or namespace in repository from seeburger which gives all EDI prototypes? or we import as an XSD doc from our local system generated by 3rd party tools?
    2.
    Do we write a mapping program(EDI-XML 2 IDOC-XML)  with graphical tool or do we have a tool provided by seeburger to write mapping program? I heard that seeburger provides mapping programs(not those modules which converts standard EDI to XML EDI)  which will convert EDI XML 2 IDOC-XML. is this is true?
    3.
    how do we process EDI file sent by customer? is it ISA level or ST level? because there may be many situations where one ISA has multiple ST's.
    Please explain me if possible with one scenario......i read all the links provided about this question so i need a practical example.........
    Thanks in advance.

    Hi,
    Go thru this might help you
    http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/SEEBURGER_SAP_Adapter_engl.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.sap.com/france/company/events/2006/02-01-Automotive-Seeburger.pdf
    http://h41123.www4.hp.com/presentations/ISUG/XISeeBurger.ppt
    http://www.sap.com/asia/company/events/nwtechdays/presentation/australia-slides/Pre-Built_Integration.pdf
    Regards
    Agasthuri Doss

  • I recently put a dual layered DVD in my iBook G4, by mistake.  Now I can't eject it by any of the proven methods.  My iBook doesn't recognise its presence, so I can't eject it in the usual way.  Any solutions?  Is it easy to open up the CD drive?

    I put a dual layered DVD in my iBook by mistake and iBook can't read it.   now I can't eject it.  It isn't recognised by the computer, so I can't eject it in the normal way, using Disc Utility or Terminal or whatever.  Any suggestions?  Is it easy to open up the CD drive on an iBook G4?  Any help gratefully received.

    So if baltwo's suggestion doesn't work there is a similiar command in open firmware.
    "It's Cmd-Opt-O-F to get into Open Firmware. Type "eject cd" once you get in."
    That's from nermal here:
    http://forums.macrumors.com/archive/index.php/t-176460.html
    They also talk about the optical cable and that might be worth checking out.
    Exactly which iBook is this? Speed and size?
    The service manual for the 1.2 GHz 12" describes the procedure for removing a stuck drive. It involves removing the drive and opening it up (4 screws).
    To remove the drive the preliminary steps are:
    remove the following:
    • Battery
    • Keyboard and RAM shield
    • AirPort Extreme Card
    • Memory card
    • Bottom case
    • Bottom shield
    • DC-in board
    • Top case
    • Top shield"
    The reason I ask about the speed is that it's possible the earlier drives are different. In the PowerBooks there was a release on the right side of the slot. It was a small bar you pressed with the proper tool.
    Richard

  • Any Suggestions on Best Method To Export/ Convert .aco Files?

    Bill Hunt suggested this question that originally was posted under general discussion be reposted here. - Thanks Bill.
    I'm building palette's for another application that is not presently capable of reading the Adobe Color Swatch file .aco and would like to initially develop the palette in CS6 Photoshop, save the swatch file and then produce a file in similar fashion as is already used in Flash; namely the .clr file; e.g. the sample below where the last values given on each line are in RGB.
    Does anybody have any suggestions to wrangle the .aco into an RGB ASCII, either from within PS or from some other application ?
    Thank you for any reply,
    Kelly
    ColorMap 1 1
    -95700000.000000 34 15 51
    -10634881.000000 20 1 38
    -7656000.000000 72 54 88
    -5742000.000000 120 104 135
    -3828000.000000 169 155 183
    -1914000.000000 212 200 225
    -50000.000000 241 229 251
    -45000.000000 255 0 0
    0.000000 255 0 0
    45000.000000 255 0 0
    50000.000000 234 252 244
    1914000.000000 193 212 202
    3828000.000000 132 154 143
    5742000.000000 66 91 79
    7656000.000000 15 42 29
    8511802.000000 0 27 14

    I would post to the Photoshop SDK Forum: http://forums.adobe.com/community/photoshop/photoshop_sdk
    You will likely get more help there.
    Good luck,
    Hunt

Maybe you are looking for

  • Real-time NI 9239

    Hi All, I have a DAQ 9172  with two NI 9239 module. I would like to measure 3 stator current and 3 stator voltage and also the rotor speed (an analoge input) of an AC machine to estimate the electromagnetique torque in real time. The estimatior is an

  • Generated PDF file - damaged

    Hi there, We experience some problems when generating reports in PDF formats. The generated file cannot be opened, and it looks damaged. The XML Publisher enterprise runs on a Unix Platform, and the clients run with Windows XP SP2. On metalink, we fo

  • NAV - Depreciation problem

    Hi All, I have a problem which requires immediate assistance. Problem Description: After running the depreciation run asset value remains with same book value from past three months. Pls advice what could be possible reason.. Asset May NBV June NBV J

  • Probléme affichage certaines images

    Bonjour, Quand je vais sur des sites, certaines images ne s'affichent pas, alors que si je prend mon autre ordinateur, elles s'affichent. Pareil quand je met une page avec une banniére sur mon site, moi je ne la vois plus dés que je la poste sur mon

  • Can't make OD master - LDAP issue?

    So, I upgraded my 10.6 to 10.7 and also downloaded server with it.  I'm trying to turn my computer into an OD master.  I made my computer a DNS server - I can dig my IP and my FQDN.  No problems. When I go to make a OD master it tells me it failed an