How to encode MP4 with "H264" Format, instead of "AVC1" or "AVC Coding"

Hi, the application for which I am encoding requires MP4 files but it does note support "AVC1" type.  Where can I set this encoding format in Media Encoder?
When I load some MP4 files into Quicktime Player to check their properties, they show as Format: H.264, while MP$ files encoded from AME show up with Format: AVC Coding.  I believe I am looking for a way to get AME to create MP4 files that have H.264 format.
thanks!

Okay, I'm sorry I wasn't exact there.
I meant I would like to have my files encoded in H.264. The TS stands for transport stream, which is a way of packaging the file. I am trying to encode files for use on a set-top box that only supports H.264 files in a transport stream.
The AVC files I get out of Final Cut are not accepted by the set-top box. Apparently there are differences between H.264 and AVC?
Hope someone can shed some light on this...

Similar Messages

  • How to get report in excel format instead of pdf from oracle forms.

    Hi,
    How to get report in excel format instead of pdf from oracle forms.
    Form & Report developer 10g
    report format .rdf

    create a report using report builder.
    call the report from form using the following procedure
    DECLARE
         RO_Report_ID REPORT_OBJECT;
         Str_Report_Server_Job VARCHAR2(100);
         Str_Job_ID VARCHAR2(100);
         Str_URL VARCHAR2(100);
         PL_ID PARAMLIST ;
    BEGIN
    PL_ID := GET_PARAMETER_LIST('TEMPDATA');
         IF NOT ID_NULL(PL_ID) THEN
    DESTROY_PARAMETER_LIST(PL_ID);
         END IF;
         PL_ID := CREATE_PARAMETER_LIST('TEMPDATA');
         RO_Report_ID := FIND_REPORT_OBJECT('RP2RRO');
         Add_Parameter(pl_id,'P_SUPCODE',TEXT_PARAMETER,:CONTROL.S_CODE);
    Add_Parameter(pl_id,'P_INVOICE_NO',TEXT_PARAMETER,:CONTROL.IN_NO);
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_FILENAME, 'INVOICE_REG_DETAILS.rep');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESTYPE, FILE);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESFORMAT, 'SPREADSHEET');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_SERVER, 'rep_dbserver_frhome1');
         Str_Report_Server_Job := RUN_REPORT_OBJECT(RO_Report_ID, PL_ID);
         Str_Job_ID := SUBSTR(Str_Report_Server_Job, LENGTH('rep_dbserver_frhome1') + 2, LENGTH(Str_Report_Server_Job));
         Str_URL      := '/reports/rwservlet/getjobid' || Str_Job_ID || '?server=rep_dbserver_frhome1';
         WEB.SHOW_DOCUMENT(Str_URL, '_SELF');
         DESTROY_PARAMETER_LIST(PL_ID);
    END;

  • How to play videos with mkv format on imac

    i have purchased a new imac(intel) just four days back. i want to know what is the method for playing videow with mkv format.

    It could be a 'difficult' form of Matroska file. FYI Matroska is just a container like MOV or AVI, and some mkv have the video encoded with Real Video Codec (RV9 RV10). Perian+QT can't decode this, but VLC will play .mkv files just fine on OS X, as long as they don't use H.264!
    It's a bit of a lottery until Matroska decide to support the Apple platform. I have found this:
    http://mkv4mac.free.fr/index.php?lang=en&p=lec
    which may help.
    But there may be another workaround: 1. Get Info the mkv file
    2. Change to extension to wmv. Save as wmv and that could work better.
    Or this link may be helpful:
    http://www.squidoo.com/mkv-converter-mac
    Recently, a poster (ZachP14) suggested this:
    "There's a program called Plex that runs .mkv files awesome on my 2.0 ghz macbook."
    http://www.plexapp.com/
    Maybe worth a try?
    More information here:
    ttp://en.wikipedia.org/wiki/Matroska

  • Adobe Media Encoder Error with MPEG2 Formats [../../src/Command.cpp-2519]

    I am trying to use some of my presets using MPEG2 format and it is giving me this error: [/Volumes/BuildDisk/builds/ame602_mac/main/app/frontend/prj/mac/../../src/Command.cpp-251 9]. I try the system presets that use MPEG2 and I get the same error. I notice if I try to make a new preset, I do not even have the option to choose MPEG2. I only get MPEG4 or MPEG4 (Legacy). I am using AME 7.0.2; if anyone has an idea on why I can't use MPEG2 please let me know.
    Thanks,
    Mike

    Hi mboory,
    Please mention the exact version of Media Encoder CS6 that you are using and also the version of operating system. Please check the below link as well.
    http://forums.adobe.com/message/4402558
    Regards,
    Vinay

  • JTextField: How to fill it with a "number" instead of with "text"

    Hi everybody,
    I want to fill a JTextField variable with "something" that is actually a number (an int variable). How could I do it? I can not cast from int into string...
    Thanks a lot!
    Fran.

    Hi,
    I've implemented number fields based on JFormattedTextField. Maybe you find them usefull (the library is Open Source):
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JRealNumberField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JDoubleField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JFloatField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLocalizedRealNumberField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLocalizedDoubleField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLocalizedFloatField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JWholeNumberField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JByteField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JIntegerField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JLongField.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JShortField.html
    Tutorial:
    http://softsmithy.sourceforge.net/lib/docs/tutorial/swing/number/index.html
    Homepage:
    http://www.softsmithy.org
    Download:
    http://sourceforge.net/project/showfiles.php?group_id=64833
    Source:
    http://sourceforge.net/svn/?group_id=64833
    http://softsmithy.svn.sourceforge.net/viewvc/softsmithy/trunk/lib/src/org/softsmithy/lib/
    API:
    http://softsmithy.sourceforge.net/lib/docs/api/index.html
    If you want to use the fileds in a table have a look at the source code of JXTable:
    http://softsmithy.svn.sourceforge.net/viewvc/softsmithy/trunk/lib/src/org/softsmithy/lib/swing/JXTable.java?view=markup
    If you want you can use it or one of its subclasses (JCellTable, JPropertyTable) and set the default editors.
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/JXTable.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/DoubleCellEditor.html
    http://softsmithy.sourceforge.net/lib/docs/api/org/softsmithy/lib/swing/FloatCellEditor.html
    -Puce

  • How to watch mp4 with 16:9 ratio on iTunes?

    Hi
    I am converting avi file to mp4 so I could watch them on iTunes.
    I use handbreak.
    The problem is that the movie output is 4:3 (having tow black sides on my wide screen tv)
    How can I change it to view 16:9 ratio on iTunes?
    Thanks.

    Why don't you try using VCL to view your avi files directly.  It is a great media player that will handle just about anything that you throw at it.  No need to convert files.
    http://www.videolan.org/vlc/download-macosx.html
    Dan

  • How to get report with following format

    Hi
    For tax reporting purpose, our company has to get a report in the following format so that they can export it to excel file.
    Customer    -       Name   -    address  -   sales/purchases
    The last column is the one we get from fd10n by entering customer number.
    Please let me know the easiest way to obtain it.
    Thanks
    PrinceofLight

    HI,
    Please consult your technical team they can easily  prepare zreport for that particular fields.
    K.satish

  • How can i records with date format using web services?

    Hello
    I can't record date records using web services. I get no message errors.
    I can import string values but no dates (YYYY-MM-DD). Do you have any clue about that?
    Regards
    Arturo

    hello,
    That's the code I'm using to update an opportunity. In the date fields (e.g. dFecha_de_entrega_al_cliente) I've tried to put an specific date in the correct format (If i put it in another format i've got an error message due the wrong format). The CRM accepted the code but it didn't update the values that are different of string.
    I don´t know if there is something missing in teh program or if the developer environment is not the adequate.
    Regards for your comments
    Arturo
    Private Sub ActualizarOportunidad(ByVal fila As Data.DataRow, ByVal TipoPersona As String)
    Dim oLog As New Log()
    Dim IdLog As Integer
    Dim NumSerie As String = ""
    Try
    oLog.Insert_Log("Activación Garantía - Crear Oportunidad", oLog.GetLastIdProceso())
    IdLog = oLog.GetLastId()
    Dim sr_input As Opportunity.OpportunityUpdate_Input
    Dim sr_output As Opportunity.OpportunityUpdate_Output
    sr_input = New Opportunity.OpportunityUpdate_Input
    Dim sr(1) As Opportunity.OpportunityData
    sr(0) = New Opportunity.OpportunityData
    NumSerie = fila("NumeroSerie").ToString().Trim()
    sr(0).ExternalSystemId = NumSerie
    sr(0).OpportunityName = fila("NumeroSerie").ToString().Trim()
    sr(0).SalesStage = "Deseo" '"Cerrada/Ganada"
    sr(0).dFecha_de_entrega_al_cliente = fila("FechaEmision").ToString().Trim()
    sr(0).dFecha_de_facturacin_al_cliente = fila("FechaCompra").ToString().Trim()
    sr(0).stNro_Factura = fila("NumeroFactura").ToString().Trim()
    sr(0).plActividad_Economica = fila("IdActividad").ToString().Trim()
    sr(0).plTipo_de_Venta = fila("TipoCompra").ToString().Trim()
    sr(0).CustomObject8ExternalSystemId = fila("ApellidoVendedor").ToString.Trim()
    'sr(0).CustomObject8ExternalSystemId = IIf(TipoPersona = "J", fila("DocumentoE").ToString().Trim(), fila("Documento").ToString.Trim())
    'sr(0).CustomObject7ExternalSystemId = fila("")
    Dim lofsr As Opportunity.ListOfOpportunityData
    lofsr = New Opportunity.ListOfOpportunityData
    lofsr.Opportunity = sr
    sr_input.ListOfOpportunity = lofsr
    sr_output = oOpportunity.OpportunityUpdate(sr_input)
    oLog.Update_Log(IdLog, "Si", NumSerie, "")
    Catch ex As SoapException
    Me.txtError.Text = ex.Detail.InnerText.ToString()
    oLog.Update_Log(IdLog, "No", NumSerie, ex.Detail.InnerText.ToString())
    End Try
    End Sub
    ************************************************************************

  • How to export project with dual monaural instead of stereo?

    I have a very large project with many audio tracks and they are all adjusted right now so they sound right on a balanced stereo system, but I want to make sure the final sound isn't corrupted by someone having their channels adjusted unevenly, so I've decided to sacrifice any stereo effect and output dual identical monaural channels...but I'm not sure the easiest way to do it. Is using Quicktime Conversion and checking "monaural" a way? Or is there someway to do it inside the program...but not irreversibly?
    I appreciate any help anybody can give me.

    I was over at a friends yesterday I had given him a copy of my dvd and he had said the sound was horrible..that in many places the bkgd music totally overpowered the dialogue and in other places in the program it was just the opposite. Sure enough, he was right. It wa horrible. And I easily discovered the reason. He has a large screen HD TV and his teenagers have the audio from the dvd player hooked to a stereo and had the levels and the equalization set totally different for each of the two tracks.
    And I think some other people at one time or another do indeed disturb the balance of their stereo without even realizing it.
    Stereo is 2 channels, Left & Right. What could any
    user do to 'corrupt the sound' other than change the
    Left-Right balance control on their amp, which most
    people never touch.

  • H264 encoding issue with FlashPlayer 11

    Hi,
    When encoding live in h264 with the FP 11  then playing it live on another client (through FMS r) the video sometimes (1/3 of times) has major skips or jerks. It's almost as if the video goes back to some older keyframes and then returns to live. Same experience with non-h264 produces smooth video.
    If the server (FMS ) records the video, the replay looks smooth, which is strange because I would have assumed the FP was not encoding well with H264.
    Has anyone had this issue? please reply
    Thank you.

    Hi,
    When encoding live in H264 with the FP 11  then playing it live on another client (through FMS r) the video sometimes (1/3 of times) has major skips or jerks. It's almost as if the video goes back to some older keyframes and then returns to live. Same experience with non-h264 produces smooth video.
    If the server (FMS ) records the video, the replay looks smooth, which is strange because I would have assumed the FP was not encoding well with H264.
    Has anyone had this issue? please reply
    Thank you.

  • Time Data loading with missing format

    Hi expert,
    after we load time data, find the following missing information:
    0CALDAY:
    20.080.112 (Error)
    2008.01.12 (correct one)
    0CALMONTH:
    200.801(Error)
    2008.01(correct one)
    0CALQUARTE
    20.081(Error)
    20081(correct one)
    Could anyone let us know how to correct data with missing format to correct one and how to do this step by step? Many thank!

    What is the source for this data ?
    Have it corrected in the source
    Or
    Correct in PSA and load it from there.
    Does it happen only for a few records ?

  • Encode 4K dpx files with H264 codec or AVCHD to MP4 wrapper with Compressor?

    I have 4K dpx files that I want to encode with H264 codec or AVCHD to MP4 wrapper.  Can either Compressor 4 or 5 support this?  If so, what specific encoder settings are needed?  Currently, I receive Quicktime error -108

    Don't use mp4, use Qucktime h.264. I'm sure mp4 doesn't support 4k.

  • How to change render resolution of After Effects project in Adobe Media Encoder for an H264 preview?

    I'd like to render a 1080i comp at half resolution or third resolution in AME to speed up render times for low-res previews. I just had a low-res H264 preview take 5 minutes to encode in AE, and 28 minutes in AME.
    This is easily accomplished in the After Effects render settings. However, the "video" option in AME seems to imply the project is encoded at that resolution, not rendered at it.
    I went into AE and changed the setting in the composition viewport to "half", but when I queue it up in AME, the "Match Source" button still indicates 1080.
    What is the correct method to get the results I want?
    I'm currently using AE CC and AME CC on Windows.

    Thanks for taking the time to answer this question. Knowing this isn't possible at least narrows my options down. It would be helpful to provide some kind of list of what comp settings carry over into AME from After Effects. Is it essentially everything that is enabled in the Timeline? (I know that motion blur settings do.)
    I'll put this in a feature request, but yes, we need the other half of After Effects Render Queue in AME in order for AME to be a good replacement for rendering from AE. I'll give you my thoughts on why Render Settings are essential before you would actually want to render with AME instead of doing so because you have to (either because you want to render in the background, or need a codec that has been removed from AE.)
    1. Speed: Simply applying a Render Settings preset is much faster than manually setting motion blur, frame blending, work area, etc.
    2. Reliability: Not being able to apply a Render Settings preset at the time of render is a recipe for missing a crucial setting buried in a comp, then having to redo a render and wasting time.
    3. Features: As noted above, there is no way to approximate Render Queue's ability to change resolutions at render, which results in a lot of wasted time when that feature is needed.
    Render Settings I think are crucial to making AME rendering worthwhile for AE users:
    1. Rendering resolution
    2. Work Area/Entire Composition toggle
    3. Field Rendering (wait, does this mean AME can't currently render to fields?)
    4. And PRESET ability these settings, so I'm not doing them manually every time.
    I realize that your team clearly doesn't spend the same amount of time I do making low res H264 previews and sending final files out in H264 format, so you don't appreciate the impact of the changes you made. Moving to AME for that stuff is a real inconvenience, but implementing the settings above could help soften the blow.
    Thanks,
    Jerry

  • How can i get todays date as an yyyy-MM-dd format instead of Time stamp

    how can i get todays date as an yyyy-MM-dd format instead of Time stamp,i try to do it in the fallowing way
    <code>
    java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy-MM-dd");
         java.util.Date d = new java.util.Date();
              String s = d+"";
    Calendar cal1 = Calendar.getInstance();
         try{
         cal1.setTime(sdf.parse(s));
    }catch(Exception e){}
    </code>
    but i could not able to get,it throws error as an java.text.ParseException: Unparseable date: "Thu Jan 24 11:43:32 EST 2002" ,pl suggest me any solution.any help would be appreciated.
    Regards.

    Does string s have to end with ""?
    Try doing sdf.format(d) instead.

  • I use premier cc output h264 encoded mp4 files can not play!

    First, very pleased to see that the company produced the Chinese version of adobe's premier cc!
    I use premier cc output h264 encoded mp4 files can not play!
    Break when rendering the second half MP4 file playback problems, I ask, where is the problem?
    There is how to make the timeline audio display file names? How to set up! ?
    I am a video editing enthusiasts, I come from distant China!
    I hope you can get help!
    My English level is not high, I was using Google Translate
    Thank you first!
    potplayer    Software displays :
    A:\2.mp4
    文件内容。
    00 00 00 1C 66 74 79 70 4D 34 56 20 00 00 00 01  ....ft.pM4V ....
    4D 34 56 20 6D 70 34 32 69 73 6F 6D 00 05 12 43  M4V mp42isom...C
    75 75 69 64 BE 7A CF CB 97 A9 42 E8 9C 71 99 94  uuid......B..q..
    91 E3 AF AC 3C 3F 78 70 61 63 6B 65 74 20 62 65  ....<?xpacket be
    67 69 6E 3D 22 EF BB BF 22 20 69 64 3D 22 57 35  gin="..." id="W5
    4D 30 4D 70 43 65 68 69 48 7A 72 65 53 7A 4E 54  M0MpCehiH.reS.NT
    63 7A 6B 63 39 64 22 3F 3E 0A 3C 78 3A 78 6D 70  c.kc9d"?>.<x:xmp
    6D 65 74 61 20 78 6D 6C 6E 73 3A 78 3D 22 61 64  meta xmlns:x="ad
    6F 62 65 3A 6E 73 3A 6D 65 74 61 2F 22 20 78 3A  obe:ns:meta/" x:
    78 6D 70 74 6B 3D 22 41 64 6F 62 65 20 58 4D 50  xmptk="Adobe XMP
    20 43 6F 72 65 20 35 2E 35 2D 63 30 31 34 20 37   Core 5.5-c014 7
    39 2E 31 35 31 38 30 35 2C 20 32 30 31 33 2F 30  9.151805, 2013/0
    34 2F 30 39 2D 31 32 3A 30 38 3A 32 31 20 20 20  4/09-12:08:21  
    20 20 20 20 20 22 3E 0A 20 3C 72 64 66 3A 52 44       ">. <rdf:RD
    46 20 78 6D 6C 6E 73 3A 72 64 66 3D 22 68 74 74  F xmlns:rdf="htt
    70 3A 2F 2F 77 77 77 2E 77 33 2E 6F 72 67 2F 31  p://www.w3.org/1
    39 39 39 2F 30 32 2F 32 32 2D 72 64 66 2D 73 79  999/02/22-rdf-s.
    6E 74 61 78 2D 6E 73 23 22 3E 0A 20 20 3C 72 64  ntax-ns#">.  <rd
    66 3A 44 65 73 63 72 69 70 74 69 6F 6E 20 72 64  f:Description rd
    66 3A 61 62 6F 75 74 3D 22 22 0A 20 20 20 20 78  f:about="".    x
    6D 6C 6E 73 3A 78 6D 70 3D 22 68 74 74 70 3A 2F  mlns:xmp="http:/
    2F 6E 73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 78 61  /ns.adobe.com/xa
    70 2F 31 2E 30 2F 22 0A 20 20 20 20 78 6D 6C 6E  p/1.0/".    xmln
    73 3A 78 6D 70 44 4D 3D 22 68 74 74 70 3A 2F 2F  s:xmpDM="http://
    6E 73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 78 6D 70  ns.adobe.com/xmp
    2F 31 2E 30 2F 44 79 6E 61 6D 69 63 4D 65 64 69  /1.0/D.namicMedi
    61 2F 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 73 74  a/".    xmlns:st
    44 69 6D 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61  Dim="http://ns.a
    64 6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30  dobe.com/xap/1.0
    2F 73 54 79 70 65 2F 44 69 6D 65 6E 73 69 6F 6E  /sT.pe/Dimension
    73 23 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 63 72  s#".    xmlns:cr
    65 61 74 6F 72 41 74 6F 6D 3D 22 68 74 74 70 3A  eatorAtom="http:
    2F 2F 6E 73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 63  //ns.adobe.com/c
    72 65 61 74 6F 72 41 74 6F 6D 2F 31 2E 30 2F 22  reatorAtom/1.0/"
    0A 20 20 20 20 78 6D 6C 6E 73 3A 78 6D 70 4D 4D  .    xmlns:xmpMM
    3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61 64 6F 62  ="http://ns.adob
    65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30 2F 6D 6D  e.com/xap/1.0/mm
    2F 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 73 74 52  /".    xmlns:stR
    65 66 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61 64  ef="http://ns.ad
    6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30 2F  obe.com/xap/1.0/
    73 54 79 70 65 2F 52 65 73 6F 75 72 63 65 52 65  sT.pe/ResourceRe
    66 23 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 73 74  f#".    xmlns:st
    45 76 74 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61  Evt="http://ns.a
    64 6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30  dobe.com/xap/1.0
    2F 73 54 79 70 65 2F 52 65 73 6F 75 72 63 65 45  /sT.pe/ResourceE
    76 65 6E 74 23 22 0A 20 20 20 20 78 6D 6C 6E 73  vent#".    xmlns
    3A 64 63 3D 22 68 74 74 70 3A 2F 2F 70 75 72 6C  :dc="http://purl
    2E 6F 72 67 2F 64 63 2F 65 6C 65 6D 65 6E 74 73  .org/dc/elements
    2F 31 2E 31 2F 22 0A 20 20 20 20 78 6D 6C 6E 73  /1.1/".    xmlns
    3A 61 75 78 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E  :aux="http://ns.
    61 64 6F 62 65 2E 63 6F 6D 2F 65 78 69 66 2F 31  adobe.com/exif/1
    2E 30 2F 61 75 78 2F 22 0A 20 20 20 20 78 6D 6C  .0/aux/".    xml
    6E 73 3A 70 68 6F 74 6F 73 68 6F 70 3D 22 68 74  ns:photoshop="ht
    74 70 3A 2F 2F 6E 73 2E 61 64 6F 62 65 2E 63 6F  tp://ns.adobe.co
    6D 2F 70 68 6F 74 6F 73 68 6F 70 2F 31 2E 30 2F  m/photoshop/1.0/
    22 0A 20 20 20 20 78 6D 6C 6E 73 3A 78 6D 70 52  ".    xmlns:xmpR
    69 67 68 74 73 3D 22 68 74 74 70 3A 2F 2F 6E 73  ights="http://ns
    2E 61 64 6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31  .adobe.com/xap/1
    2E 30 2F 72 69 67 68 74 73 2F 22 0A 20 20 20 20  .0/rights/".   
    78 6D 6C 6E 73 3A 65 78 69 66 45 58 3D 22 68 74  xmlns:exifEX="ht
    74 70 3A 2F 2F 63 69 70 61 2E 6A 70 2F 65 78 69  tp://cipa.jp/exi
    66 2F 31 2E 30 2F 22 0A 20 20 20 20 78 6D 6C 6E  f/1.0/".    xmln
    73 3A 74 69 66 66 3D 22 68 74 74 70 3A 2F 2F 6E  s:tiff="http://n
    73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 74 69 66 66  s.adobe.com/tiff

    First, very pleased to see that the company produced the Chinese version of adobe's premier cc!
    I use premier cc output h264 encoded mp4 files can not play!
    Break when rendering the second half MP4 file playback problems, I ask, where is the problem?
    There is how to make the timeline audio display file names? How to set up! ?
    I am a video editing enthusiasts, I come from distant China!
    I hope you can get help!
    My English level is not high, I was using Google Translate
    Thank you first!
    potplayer    Software displays :
    A:\2.mp4
    文件内容。
    00 00 00 1C 66 74 79 70 4D 34 56 20 00 00 00 01  ....ft.pM4V ....
    4D 34 56 20 6D 70 34 32 69 73 6F 6D 00 05 12 43  M4V mp42isom...C
    75 75 69 64 BE 7A CF CB 97 A9 42 E8 9C 71 99 94  uuid......B..q..
    91 E3 AF AC 3C 3F 78 70 61 63 6B 65 74 20 62 65  ....<?xpacket be
    67 69 6E 3D 22 EF BB BF 22 20 69 64 3D 22 57 35  gin="..." id="W5
    4D 30 4D 70 43 65 68 69 48 7A 72 65 53 7A 4E 54  M0MpCehiH.reS.NT
    63 7A 6B 63 39 64 22 3F 3E 0A 3C 78 3A 78 6D 70  c.kc9d"?>.<x:xmp
    6D 65 74 61 20 78 6D 6C 6E 73 3A 78 3D 22 61 64  meta xmlns:x="ad
    6F 62 65 3A 6E 73 3A 6D 65 74 61 2F 22 20 78 3A  obe:ns:meta/" x:
    78 6D 70 74 6B 3D 22 41 64 6F 62 65 20 58 4D 50  xmptk="Adobe XMP
    20 43 6F 72 65 20 35 2E 35 2D 63 30 31 34 20 37   Core 5.5-c014 7
    39 2E 31 35 31 38 30 35 2C 20 32 30 31 33 2F 30  9.151805, 2013/0
    34 2F 30 39 2D 31 32 3A 30 38 3A 32 31 20 20 20  4/09-12:08:21  
    20 20 20 20 20 22 3E 0A 20 3C 72 64 66 3A 52 44       ">. <rdf:RD
    46 20 78 6D 6C 6E 73 3A 72 64 66 3D 22 68 74 74  F xmlns:rdf="htt
    70 3A 2F 2F 77 77 77 2E 77 33 2E 6F 72 67 2F 31  p://www.w3.org/1
    39 39 39 2F 30 32 2F 32 32 2D 72 64 66 2D 73 79  999/02/22-rdf-s.
    6E 74 61 78 2D 6E 73 23 22 3E 0A 20 20 3C 72 64  ntax-ns#">.  <rd
    66 3A 44 65 73 63 72 69 70 74 69 6F 6E 20 72 64  f:Description rd
    66 3A 61 62 6F 75 74 3D 22 22 0A 20 20 20 20 78  f:about="".    x
    6D 6C 6E 73 3A 78 6D 70 3D 22 68 74 74 70 3A 2F  mlns:xmp="http:/
    2F 6E 73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 78 61  /ns.adobe.com/xa
    70 2F 31 2E 30 2F 22 0A 20 20 20 20 78 6D 6C 6E  p/1.0/".    xmln
    73 3A 78 6D 70 44 4D 3D 22 68 74 74 70 3A 2F 2F  s:xmpDM="http://
    6E 73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 78 6D 70  ns.adobe.com/xmp
    2F 31 2E 30 2F 44 79 6E 61 6D 69 63 4D 65 64 69  /1.0/D.namicMedi
    61 2F 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 73 74  a/".    xmlns:st
    44 69 6D 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61  Dim="http://ns.a
    64 6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30  dobe.com/xap/1.0
    2F 73 54 79 70 65 2F 44 69 6D 65 6E 73 69 6F 6E  /sT.pe/Dimension
    73 23 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 63 72  s#".    xmlns:cr
    65 61 74 6F 72 41 74 6F 6D 3D 22 68 74 74 70 3A  eatorAtom="http:
    2F 2F 6E 73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 63  //ns.adobe.com/c
    72 65 61 74 6F 72 41 74 6F 6D 2F 31 2E 30 2F 22  reatorAtom/1.0/"
    0A 20 20 20 20 78 6D 6C 6E 73 3A 78 6D 70 4D 4D  .    xmlns:xmpMM
    3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61 64 6F 62  ="http://ns.adob
    65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30 2F 6D 6D  e.com/xap/1.0/mm
    2F 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 73 74 52  /".    xmlns:stR
    65 66 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61 64  ef="http://ns.ad
    6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30 2F  obe.com/xap/1.0/
    73 54 79 70 65 2F 52 65 73 6F 75 72 63 65 52 65  sT.pe/ResourceRe
    66 23 22 0A 20 20 20 20 78 6D 6C 6E 73 3A 73 74  f#".    xmlns:st
    45 76 74 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E 61  Evt="http://ns.a
    64 6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31 2E 30  dobe.com/xap/1.0
    2F 73 54 79 70 65 2F 52 65 73 6F 75 72 63 65 45  /sT.pe/ResourceE
    76 65 6E 74 23 22 0A 20 20 20 20 78 6D 6C 6E 73  vent#".    xmlns
    3A 64 63 3D 22 68 74 74 70 3A 2F 2F 70 75 72 6C  :dc="http://purl
    2E 6F 72 67 2F 64 63 2F 65 6C 65 6D 65 6E 74 73  .org/dc/elements
    2F 31 2E 31 2F 22 0A 20 20 20 20 78 6D 6C 6E 73  /1.1/".    xmlns
    3A 61 75 78 3D 22 68 74 74 70 3A 2F 2F 6E 73 2E  :aux="http://ns.
    61 64 6F 62 65 2E 63 6F 6D 2F 65 78 69 66 2F 31  adobe.com/exif/1
    2E 30 2F 61 75 78 2F 22 0A 20 20 20 20 78 6D 6C  .0/aux/".    xml
    6E 73 3A 70 68 6F 74 6F 73 68 6F 70 3D 22 68 74  ns:photoshop="ht
    74 70 3A 2F 2F 6E 73 2E 61 64 6F 62 65 2E 63 6F  tp://ns.adobe.co
    6D 2F 70 68 6F 74 6F 73 68 6F 70 2F 31 2E 30 2F  m/photoshop/1.0/
    22 0A 20 20 20 20 78 6D 6C 6E 73 3A 78 6D 70 52  ".    xmlns:xmpR
    69 67 68 74 73 3D 22 68 74 74 70 3A 2F 2F 6E 73  ights="http://ns
    2E 61 64 6F 62 65 2E 63 6F 6D 2F 78 61 70 2F 31  .adobe.com/xap/1
    2E 30 2F 72 69 67 68 74 73 2F 22 0A 20 20 20 20  .0/rights/".   
    78 6D 6C 6E 73 3A 65 78 69 66 45 58 3D 22 68 74  xmlns:exifEX="ht
    74 70 3A 2F 2F 63 69 70 61 2E 6A 70 2F 65 78 69  tp://cipa.jp/exi
    66 2F 31 2E 30 2F 22 0A 20 20 20 20 78 6D 6C 6E  f/1.0/".    xmln
    73 3A 74 69 66 66 3D 22 68 74 74 70 3A 2F 2F 6E  s:tiff="http://n
    73 2E 61 64 6F 62 65 2E 63 6F 6D 2F 74 69 66 66  s.adobe.com/tiff

Maybe you are looking for

  • Why my apps can't be disable on USE CELLULAR DATA FOR under Cellular settings

    I came across an issue that my apps tend to stay on ( enable ) even when I disabled it manually, it will turn back on soon after, this can cause certain people data overage and extra data cost they did not expect. I always check my settings daily bec

  • Controlling the printer

    Hi, I have an iPad 1 which is up to date with the latest O/S and a new Canon 6250 printer connected to a wireless router.  I can print directly from the Apple Pages app and others like Goodreader but they all cause the printer to print from the rear

  • JSP with Microsoft sql Server 2005 Studio Express

    I have a database named CS352 in MSSQL 2005 Express version, I am using Tomcat 5.5, I am trying to connect to this database with jdbc driver jtds-1.2, but I can't connect, here is the code for the connection Class.forName("net.sourceforge.jtds.jdbc.D

  • Flash Player seems to suck

    I'm just coming to realize how badly the Flash Player (seemingly all versions) use up cpu. I'm seriously considering disabling this player. I guess I wonder why you guys don't seem to care about it. It's one very piggy app. I'm just glad I don't use

  • Export to MPEG2 with 4:2:2 chroma...  is it possible

    I don't see how you can specify colour sampling in compressor... can you export to MPEG2 format with 4:2:2 from an uncompressed 10bit 4:2:2 file??? I need to create an MPEG2 file with 4:2:2 (broadcast quality).,. any ideas for encoders or even HARDWA