Mpeg-4 simple profile input ?

Hi,
I have 2 questions :

is it possible to input a Mpeg-4 simple profile encoded video
in Flash Media Encoder (which would output it in H.264 for a RTMP
stream) ?

I get this Mpeg-4 simple profile video from a sofware, not a
camera…
So how can I manage to input it in Flash Media Encoder ?
Thanks
Paul

Hi,
I am not using any browser to play my video.
I am using QT Player version 7.7.4 (Windows 7)
Can someone clarify,Is there any restriction to use video to play in Quick Time Player with below details ?
Format                              
: MPEG-4 Visual
File size                           
: 701 MiB
Video
Format                              
: MPEG-4 Visual
Format profile                      
: Simple Studio@L2
Format settings, BVOP               
: Yes
Format settings, QPel               
: No
Format settings, GMC                
: No warppoints
Format settings, Matrix             
: Default (H.263)
Width                               
: 1 920 pixels
Height                              
: 1 088 pixels
Display aspect ratio                
: 16:9
Color space                         
: YUV
Bit depth                           
: 8 bits
Scan type                           
: Progressive
Compression mode                    
: Lossy
-Dave

Similar Messages

  • Need to create mpeg4 simple profile 720X480

    Hi,
    I recently got a Sony head unit for my car. I see it has the capability of playing .mp4 video off of USB thumbdrives, but the settings for the videos are hard to achieve. I have tried After Effects, Adobe Media Encoder, Quicktime, and Handbrake, and couldn't get it. For After Effects, everytime I set it to an mp4 simple profile, it would down rez the aspect ratio. (the aspect ratio wouldn't get altered if it was the H264 mp4, but it needs to be simple profile). For Handbrake, I set the right settings, but upon playback in the car, the audio would trail off within the first minute.
    The exact specs I need are:
    • Profile: MPEG-4 Simple profile*
    • Bit rate: Max. 7 Mbps on USB FS, 10 Mbps on
    DVD, 7 Mbps on CD
    • Frame rate: Max. 30 fps
    • Image size: Max. 720 × 480 pixels
    • Audio: Max. 320 kbps (AAC-LC)
    • File extension: .mp4
    Can someone please help me out with this? I'm comfortable with the render que with After Effects, but I've never used Compressor before. My main goal is to be able to have the video at a decent bit rate to where it's completly clear and not pixelated / be able to skim through to half way through the movie and the audio is still entact and not off timing. Oh, and if a movie could be roughly around 1GB that would be an extra plus.
    Please help, thanks.

    Toast allows MPEG-1 export. It is the format of VCD's (CD's that play in DVD players).
    I have an export to Toast option in my QuickTime Pro dialogs that will export any of my QT file formats to .mpg
    You can also use it to create a VCD (no need to burn the disc) and drag the blah.DAT file out to the Desktop. Renaming the file to blah.mpg is all you need to do.

  • Simple Profiles Component Download

    Hello everyone,
    I'm interested in Simple Profiles Component ( http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/admin_simple_profiles/wwhelp/wwhimpl/js/html/wwhelp.htm ), but I really can't find, where it is possible to download it. Does anybody know, where it can be downloaded?
    Thanks in advance!

    Hey Belak,
    It is available in the "Common Utilities Bundle", this bundle comes with the URM or URM Adapter.
    Regards,

  • Mpeg4 simple profile L0, L1 or L2 how to create

    Hey all I am using compressor and need to convert a file to mpeg4 with a simple profile.
    I do not see the option in compressors menu anyideas.
    Thanks

    unless the iPad is jailbroken, you can only install apps via the app store.
    for more information about developing apps, you should try here:
    https://discussions.apple.com/community/developer_forums

  • Simple Keyboard input?

    I am a new programmer trying to create a simple keyboard input for a Jframe, if that is possible. Here is a simple jframe creation:
        public static void main(String[] args) {
            JFrame frame = new JFrame("Keyboard input");
            frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            // make window visible
            frame.pack();
            frame.setVisible(true);
        If I wanted to make a class that would put a ball in the frame and have the ball move up, down, left, or right according to which arrow keys were pressed and held- how would I do that?
    Thanks for your help,
    Sam

    See classes KeyListener and KeyAdapter
    And reed the Manual

  • Simple User-Input AKA a DOS application.

    I've been doing some programming using the simple DOS commands, and reading keyboard input to read strings into variables.
    I've got an Applet at the moment with a text area (several rows high), and a text field (single line), and I've got the text area reading a string variable into it, and the text field appending it's value to the variable on the event that you hit enter..
    But the issue I'm having is that, unlike the DOS commands, I can't get the processing to stop and wait for an input, then continue...
    If anyone could help out, it would be great, Thanks!

    Here's my code at the moment... the commented out lines in the input class are wherre im playing around at the moment...
    Any help or references appreciated.
    Thanks :)
    // File: Console.java
    package MyConsoleIO;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Console extends JApplet
                        implements ActionListener{
        private JTextField      inputBox;
        private JTextArea      textBox;
        private String           gotString = "";
        private Game           game;
        public void trace(String msg){System.out.println(msg);}
        public void println(String msg){
             textBox.append("\n"+msg);
             trace("Tried to print: "+msg);
        public void init() {
             game = new Game();
            try {
                SwingUtilities.invokeAndWait(new Runnable() {
                    public void run() {
                        createGUI();
            } catch (Exception e) {
                System.err.println("createGUI didn't successfully complete");
        private void createGUI() {
            JPanel contentPane = new JPanel(new GridBagLayout());
            contentPane.setBorder(BorderFactory.createCompoundBorder(
                                        BorderFactory.createLineBorder(Color.BLACK),
                                        BorderFactory.createEmptyBorder(10,10,5,5)));
            setContentPane(contentPane);
            GridBagConstraints c = new GridBagConstraints();
            c.insets = new Insets(0,0,5,5);
    //        // Label
    //        JLabel receiverLabel = new JLabel(">",
    //                                          JLabel.TRAILING);
    //        add(receiverLabel, c);
            // Text Field
            inputBox = new JTextField("Type Something", 10);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.weightx = 1.0;
            add(inputBox, c);
            inputBox.addActionListener(this);
            // Button
            JButton button = new JButton(">");
            c.gridwidth = GridBagConstraints.REMAINDER; //end row
            c.anchor = GridBagConstraints.LINE_START; //stick to the
                                                      //text field
            c.fill = GridBagConstraints.NONE; //keep the button
                                              //small
            c.weightx = 0.0;
            add(button, c);
            button.addActionListener(this);
            // Text Box
            textBox = new JTextArea(30, 80);
            textBox.setEditable(false);
            c.anchor = GridBagConstraints.CENTER; //reset to the default
            c.fill = GridBagConstraints.BOTH; //make this big
            c.weighty = 1.0;
            add(new JScrollPane(textBox), c);
        public void actionPerformed(ActionEvent event) {
             textBox.append("\n"+inputBox.getText());
             gotString = inputBox.getText();
             inputBox.setText("");
             Input.inString = gotString;
        public void start(){
             textBox.append(Output.messagelist);
    // File: Game.java
    package MyConsoleIO;
    public class Game{
         public Game(){
              Output.println("Game Started!");
              String name = Input.getString("Please enter your name: ");
              Output.println(name + ", ay... how odd.");
              Output.println("GAME OVER");
    // File: Input.java
    package MyConsoleIO;
    public class Input{
         static public String inString = "";
         public static String getString(String message){
              Output.println(message);
    //          while(inString.length() == 0){
    //               // wait for some input...
              return inString;
    // File: Output.java
    package MyConsoleIO;
    public class Output {
         public static String messagelist = "";
         public static void println(String line){
              messagelist += "\n" + line;
    }

  • Urgent How to map relationship to simple profile metdata

    HI,
    I have created a simple porile metadata from URN -> Records -> configuration -> under metadata section, I have created metadata and able to add view for metadata.
    but I have to create dependency choice list to one of the metadata filed. can we create dependent choice list here and let me know the steps how to create these.
    Thanks,
    Kishore

    You are correct. Did you attempt to make the dependency?
    It is well defined in the docs:
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c04_metadata.htm#sthref141
    I would suggest attempting to go with your assumption and then see if it works or not. If you run into a problem, supply the details of what you did and the problem you're seeing in the forums. As stated, your question should be covered by reviewing the above documentation.
    -ryan

  • Simple Profile Q

    I just finished reading
    "Real World Adobe Camera Raw With Photoshop CS3" and even though I work in Raw about 8+ hours a day, and I had read the last book (with CS2) about a hundred times, I did come away with some new things learned which will certainly help me get even more out of RAW!
    Question: according to the book you should check under the Camera Calibration tile to see if your camera has a newer profile. I checked a file shot by my Canon 1DS Mark II and there were two options. 2.4 and 4.4. Mine was by default 2.4. So I changed it to 4.4. So, if I am understanding the book right, this is an improved profile for this camera?

    Yes. All profiles for any camera will successively and cumulative show up there.
    If you work on a raw file that you had never opened before, the latest profile version will show up as default.
    If an older one shows up, it means you had made adjustments to that file earlier using that older profile.

  • Best simple stereo input?

    Hi all, new to Mac and GB, and digital recording as whole. Did a lot of analog recording back in the day and now getting back into it. My Macbook Pro is two weeks out, so I'm trying to get an idea of what hardware I'm going to need for my various recording applications. After reading through the forum, one application is solved, I'll be recording a church band for mixdown in GB so I'm thinking I like that 8-channel Firepod everyone raves about. That will stay at the church, though, most likely put that in the rack with all the other audio gear. What I'd like to get some recommendations on would be what I could use at home to simply record my guitar. More specifically, the left and right channel line-outs from my Line6 PodXT. Now, I know I can just come out of one channel (mono) 1/4" to the 1/8" line-in on the Macbook Pro, but I like the stereo sounds that I've made in the Pod. I haven't seen a cable that I could take two 1/4" (left and right outputs) into a single 1/8", I'm sure there's got to be one out there but I'm not sure that's the best solution anyway.
    I've been looking at some of the interfaces and mixers you've talked about in the forum posts, like the M-Audio USB (~$100 and only mono) and USB-Pro (~$200, does stereo?), any other interfaces that might fit the bill to take the stereo out from the Pod and get it into the MacBook Pro? Thanks in advance, and I can't wait for my first Mac.
    Andy

    Well, the church band is pretty big. Recording live during a service, we could be recording anywhere up to 4 singers, 3 guitar players, 1 bass player, 1 acoustic piano, 1 electric keyboard, and an electronic drum kit. If I really was going to do it right, I'd be using 8 tracks for the drums alone so I could mix the drums. If we were going to "studio" record things, then we could get away with 8 simultaneous tracks and just go back and record additional takes. Not a big deal, obviously, but I'd love to be able to mix each instrument individually, and generally if we're recording live then we wouldn't be able to do that, have to group some of the parts into submixes and try to control it from there.
    Basically, just really looking forward to playing around with GB and seeing what I can do.
    Oh, and I ordered that cable for my home use Figure I'll get that before my Macbook Pro comes, I'll be jamming right out of the box.
    Andy

  • Java applet simple keyboard input

    I am new to writing java applets and I am trying to write one that calls for a number from the user, this number becomes the amount of random numbers that are generated and displayed. So what is the best way to get a number from the user with an applet?

    Thanx for the help, but in searching around more and more I decided to use the JOptionPane.

  • Strange brief green tint changes in MPEG-4 bitstreams

    I'm running into a strange issue that seems specific to QuickTime. When I try to play certain MP4 files containing MPEG-4 Advanced Simple Profile bitstreams, they play back generally okay, except that, when there's motion, everything will suddenly have a greenish tint, and then change back to normal colors. The bitstream seems to play okay with VLC, Elecard, Windows Media Player, and DivX, so it seems specific to QuickTime.
    Interestingly, if MPEG-4 Simple Profile is used instead, everything is fine. This makes me wonder if this is an issue with how B-frames are processed.
    Has anyone seen anything like this before?
    Thanks for whatever help you might be able to provide.
    -Robert
      Windows XP  

    Thank you for your response!
    We tried both the "Safe mode (GDI only)" and
    "DirectDraw" in the "Advanced" tab under
    "Edit - Preferences - QuickTime Preferences."
    The intermittent green tint when there is motion
    still appears in both cases. You mention a video card
    issue. Do you know which card(s) showed this problem in
    the past?

  • Unwatchtable results when converting to H.264 (MPEG Streamclip 1.8)

    I converted several movies to H.264 a year ago using an older version of MPEG Streamclip, using the exact same settings (H.264, 720x576, 25 fps, 2400 kbps). These movies play fine on the atv. Movies that I recently converted, using MPEG Streamclip 1.8 and newer versions of QT (whatever the current version is) no longer play correctly on the atv. These newer conversions flicker green and really have no dicernable picture. The atv attempts to play the content (no error message), but the displayed picture is just a torn up mess. These newer conversions play fine on the Mac
    (in iTunes or QT Player). Does anyone know what's wrong or how to work around this problem?
    Thanks.
    Jens Petersohn
    PowerMac G4 1.25 DP, AlBk 15 1 GHz, Mac Mini 1.25 GHz   Mac OS X (10.4.4)  

    Codec: H.264
    Size: 720x576
    Bitrate: 300 KBps
    Quality: 100%
    I stored this settings about 2 years ago as a preset.These settings do lot look right. If saved 2 years ago with a data rate of 300 Kbps, this should have been an iPod preset (likely for a 320 x 240) or possibly quarter PAL display dimensions "Baseline" profile. (I.e., roughly half the recommended iPod setting but a setting likely good for web use.) Baseline, files, despited their low data rate, would have been iPod compatible then and TV compatible now.
    As I said before, the resulting movies all work fine on the atv except the very latest.Actually, in your original post, the settings you gave look more like they are for a PAL "Main" profile if you are using 720 x 576 dimensions and a data rate of 2400 Kbps. The problem is if your are using the "Baseline Low Complexity" profile, then this file will likely be trapped by iTunes as not be within acceptable "LC" profile specifications and I would assume not sync with either iPod or TV devices. On the other hand, if you are using the "Main" profile, then the file should be TV compatible but not iPod compatible.
    I believe, unlike Handbrake, MPEG Streamclip uses Apple's H.264 Codec.The MPEG Streamclip default is H.264, but MPEG-4 is also available if you select it. However, even the MPEG-4 codec was originally limited to 900 macro-16 blocks back then -- usually assigned as a 480 x 480 display encode matrix. This was increased to 1200 macro-16 blocks when the "Low Complexity" H.264 format was introduced for MPEG-4 640 x 480 compatibility. However, even now, according to Apple, the MPEG-4 "Simple" profile is limited to 1215 macro-16 blocks or a 720 x 432 display encode matrix -- not 720 x 576.
    I'm going to attempt to compress something with the Quicktime Pro tool as a comparision.Suggest you run your tests using H.264 "Main" profile at originally posted settings, switch to "LC" compatible H.264 dimensions/data rates, or use MPEG-4 at stated data rate but using compatible dimensions (e.g., 16:9 aspect ratio 720 x 400 display which is equivalent to a compatible 1125 macro-16 blocks).

  • Flash is going MPEG 4!

    This was linked to from the FFMPEG developers mailing list.
    http://www.kaourantin.net/2007/08/what- … eb_20.html
    It means that Flash is now becoming (more or less) ISO MPEG 4 (quite a few layers) compliant. This will leave WMP as being the only major player that doesn't support MPEG 4 Simple Profile out of the box.
    Last edited by skottish (2007-08-22 02:39:40)

    Noneus wrote:They are going h264...
    Which is the MPEG 4 layer 10 specification.

  • How do you get the best quality on Apple Tv using Imovie08?

    I have done some searching and still have some questions. I have been creating movies from my home movie DV (digital8) tapes. when I am done I export using the highest setting. I am thinking that most D8 cameras are 480i or P. When exported higher does the computer upscale this? Should I export in 640x480 and let the tv do the upscaling or does the DV have enough lines to do the higher setting. There is a lot of discussion about 06 but since I started with 08 I find it difficult to navigate and after several posts it seems that the quality is no different. I do have quicktime pro so if it is better to export from Imovie to quicktime then to apple tv into Itunes please advise.
    Thanks
    GE

    My Question is on QTP what should the data rate be for DV.
    It depends on which variant you are using. The DV Stream options for DV and DVCPRO (also known as DV25 and DVCPRO25) are typically between 28.5 and 29.0 Mbps for the video track and the same for the audio track while DVCPRO50 has twice that data rate for both audio and video tracks. The QT DV and DVCPRO video codecs used by the "Movie to QT Movie" option are typically about 23 Mbps with DVCPRO50 coming in at about 46.0 Mbps. As to the audio data rate component, it all depends on which audio codec you use. Most people probably opt for the Linear PCM 16-bit 48 KHz combination which is usually on the order of about 800 Kbps.
    Original Data rates for some full QT conversions are over 20k This is as you know not supported by ATV.
    Correct. And, since iMovie '08 converts from whatever compression format that was originally imported to the application, doesn't it make more sense to export DIRECTLY to the final compression format you plan to use with your TV device? You can export directly/indirectly to iTunes (i.e., via the "Movies > Sharing" folder) using the sharing option or you can export via the "Using QT" option to either the contextual (CAVLC) Progressive Main Profile preset or using your own custom settings.
    If one of you would be so kind as to list the largest file that can be played in ATV using quicktime in the form of input that would be great.
    The maximum H.264 display dimensions at 24/25 fps is 720p (1280x720) and at 30 fps 540p (960x540) and a max video data rate of 5 Mbps with AAC-LC audio limited to 160 Kbps and a 48.0 KHz sampling rate in M4v, MP4, or MOV file containers. The maximum MPEG-4 Simple Profile dimensions of 720x432 at 30 fps at a max data rate of 3 Mbps with AAC-LC audio limited to 160 Kbps and a 48.0 KHz sampling rate.
    Since I am still uneducated about the relations to all these numbers and see different sizes that play ok in ATV I need some advice. I have even exported from quicktime and let Itunes compress to ATV. The file was bigger than what was sent from Imovie, the data rate was more, but per second was the same.
    Pre-sets and user settings "target" a data rate but content variables such as lighting, contrast, color saturated, amount of action and its motion vectors, frequency of scene changes/key framing, etc. all affect an end product. Further, when dealing with multi-pass encoding, the data rate excursion (i.e., variation above and below the targeted video data rate) may also come into play. For instance, an iPod file target with a video data rate of 1500 Kbps in extreme cases may have an instantaneous data rate between 600 Kbps and 3750 Kbps using the "Download" setting and can prevent iTunes synchronization. Haven't looked that deeply into TV since I use a custom iPod setting for day-to-day use of a a single file for iPhone, iPod, TV, as well as, web site, server, peer-to-peer, QTL, and reference file sharing of media. (I.e., I use my original DVDs when I want "full" audio and video quality.)

  • How can I get high quality video that will play on my Touch as well as ATV?

    Within iMovie there are output settings for the iPod and for the Apple TV. Now I fully understand the video resolution restrictions of the iPod Touch, so I am happy using a widescreen resolution of 640x360 ("Medium" output setting). What I am not happy about is the quality of the Medium setting, which iMovie states is 1.7Mbps. The results are rather blocky to say the least. In comparison, I can output the same movie as "Large", with a res of 960x540 and a bitrate of 4Mbps, and it comes out a little soft, but the blocky artefacts have all but vanished. Unfortunately, of course, the iPod Touch won't play a video with this resolution. I have tried "Export using Quicktime" and can get good quality results. However, the video (although H.264 and 640x360) ends up NOT being compatible with my iPod Touch.
    Basically, how can I output a video of 640x360 that is of the quality I want, and that also plays on my iPod Touch? If the "Export using Quicktime" can be used to achieve this, what are the settings to use?
    Thanks.

    But why shouldn't I be able to have one video to suit both. I am happy with the resolution of 640x360, even on my ATV.
    You can. Unfortunately, your desire for both a data rate greater than 1.7 Mbps (H.264/AAC compression) and the ability to play them on an iPhone/Touch/iPod is mutually exclusive at this time. Thus, you will either have to make different files targeted for different data rates for maximum quality on each device or you make a single file using the maximum allowed data rate for playback on the "slower" device and accept the quality it produces on whichever device you are currently using. If all you want is a higher data rate, use the MPEG4 Simple Profile which allows data rates up to 2.5 Mbps. Just remember that the H.264 codec is about 2.0-2.5 times as efficient and is roughly equivalent to an MPEG-4 Simple Profile file with video encoded at 3.00-3.75 Mbps.

Maybe you are looking for

  • Freegoods delivery control ??

    In free goods, i have maintained a condition record in which with every 20 pcs product X - there are 2 products of y given away and for (10-x1y). and i have set a delivery control as B- delivery only if main item is fully delivered ,   hai, i have cr

  • Battery is always heating up.. :(

    what should i do? should i get another battery because my battery is always getting heated up.. help me....

  • Solution Manager 7.1 Step 19 Import Java Dump stopped.

    Hi collegues, we are installing SolMan 7.1 under Solaris 10, Oracle 11.2.0.2. Sapinst in step 19 Import Java Dump stop, it seems that can't connect with DB, DB it's started and also listener. Dec 28, 2011 2:26:29 AM                      com.sap.inst.

  • I cant connect to Internet immediately, it takes up to 5 min.

    Hi! Im having problems to connect to internet. When I start my mac mini and start safari it says im not connected to internet. Every other computer in the house do not have this problem. I have to keep pressing "update" on safari to get it to connect

  • Import Recording Session from Pyramix into Logic

    Hi, how to import a recording session from pyramix into Logic Is it possible via OMF/AAF export? Can I use a usb/fw harddrive with just one FAT32 Volume for Files Transfer from PC Who has experiences with OMF Import into Logic Cheers Markus