HT3775 how do you play a video with this format/title DVDSCR XViD AC3-sC0rp?

How do you play a video with this format " DVDSCR XViD AC3-sC0rp" using quicktime?

Try this. It can handle formats Quicktime can't:
VLC

Similar Messages

  • How can i play a video with dv4 format?

    i need to view a cctv video because my imac got stolen and it was caught on camera. I retrieved the file from the cctv but unable to play the video on my macbook pro as the format is in dv4. what application can i download to help me view it? pleaase help. Thanks

    The last post in this thread might help.
    https://discussions.apple.com/thread/3782011

  • HT3775 How do you play MPG videos on the Mac?

    I have a sony vidoe camer which saves videos as MPG files. These are not readable by quicktime, iPhoto or iMovie. How can I convert them to files I can use?

    Thanks QuickTimeKirk,
    . I have downloaded streamclick, but reluctant to shell out $20 unless it is really going to work. The files are MPG not MPEG and MPG is not listed in the file format supported by Streamclick, does it really work?
    I can export to DV MOV and MP4 from streamclick but non of the files is recognised b the Mac. I am running OS 10.7.4.

  • How do you play YouTube audio with the screen off with iPod 5th gen?

    I used to own a 2nd gen iPod touch, which ran on an ios 4.2.1 system, that allowed me to play YouTube with the screen off. Ever since I got iPod 5 which came with ios 7, let's say I am kinda still getting the hang of how everything works. I still would like to play YouTube while the screen is off, but seem to not know how. Does anyone know how to solve this problem? It's running on ios 8, so if you could help me with this, I would gladly appreciate it!

    Hi there, you can download itube, it's in the app store, and that allows you to save youtube videos for offline play. Also, you can play youtube audio with the screen off, even without a third party app. Click on a video. When it's playing, press the lock button. Press it again, to wake the device up. You should see your video on the front of the display, with a play button. Click it, and it will start playing even if the device is off. Hope I helped, ~Samuel.

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • HT3775 How do you play .mpg formatted files?

    How do you play .mpg file format on an iMac?

    TE Frosty wrote:
    How do you play .mpg file format on an iMac?
    You can install Perian, or otherwise download and use VLC Player or MPEG Streamclip, all free programs. Installing Perian (which is now open source) and Flip4Mac will enable you to play many other formats of Movies through Quicktime, which I still believe is superior to the other players as it has very powerful editing tools and can do a lot more than just play movies. For just load and play, try VLC player or MPEG Streamclip which again can handle more unusual formats besides the usual ones.
    Cheers
    Pete

  • How can you place a video with no controls? HTML5 CSS3

    I would like to just place my video (MP4) and have it come into the page actual size with no controls, set to autoplay and loop. Can anyone tell me how to write the code to accomplish this??  Thanks in advance!!

    it's really a banner type image that I created in Flash... it's not a "real video" I converted it to video so it would play on OS devices.
    I take it you might not have an iOS device.  Even if you hide controls, the OS has it's own controls for videos that will show up for users.  Seeing as how Adobe just gave Flex to Apache this morning ( http://www.macworld.com/article/163699/2011/11/adobe_donates_flex_to_apache.html ), you might want to try Google's tool for exporting Flash as HTML5 for your banner if it's an animation you want to play.  If it's a rotating banner, I'd recommend a JQuery option.
    http://blogs.adobe.com/jnack/2011/11/google-flash-developers-export-to-html5-with-new-swif fy-extension.html
    It should work with CS4 and above.

  • How are you currently using video with marketing automation?

    I manage an educational site through Brightcove called Video Marketing Academy. I would like to create a course to tackle the challenges of using video with a marketing automation platform. I’d love to know how you are currently using video with marketing automation, what your results have been, and what are some of the challenges that you are running into?
    I understand some of this maybe platform specific, but I would like to understand the challenges and help from a strategy and best practice perspective.
    videomarketingacademy.brightcove.com

    Well you certainly hit some good ones. When it comes to marketing automation I'm always game for more flexibility with anything, for instance I would love to have more conditional options on form processing conditions, and I know that has nothing to do with video but it goes to your answer, anyway that you can give a marketer more flexibility with filters or conditions or what not the better when it comes to lead scoring, campaign options, and reporting the better.
    If one could integrate Video reporting into Eloqua I think that would be cool, I know that would be very challenging because of how Eloqua reporting works, but it would make it a one stop shop which isn't bad, 

  • How do you play the radio with an iPod and the docking station model RDP-M5iP

    I purchased an iPod docking station model RDP-M5iP and I cannot play the radio.  It says to plug in the headphones for radio reception but that does nothing.  Is there any way to use the radio portion of the iPod with this model?

    Hello Roger,
    Welcome to Sony Community.
    This Personal Audio Docking System does not have built in radio and it seems you are playing radio from the connected iPod and wish to get the audio from Docking System Speakers. You may try checking the radio reception in the iPod. Also, you may try to playback music in the iPod and check if audio is output from the Docking System Speakers.
    Regards,
    Colby

  • HOW CAN YOU WATCH YOUTUBE VIDEOS WITH CC ON? THIS FRUSTRATES ME A LOT. THANKS.

    So, I am kinda confused. I searched around the net and all that, and I found out that there's this thing in setting where you turn on the "closed-captioning". So I turned it on and tried watching videos in YouTube but IT didn't work. Also, I remember one time that I can use CCin YouTube. it's weird.
    I remember that they said if the Cc were encoded in quicktimes you can see the CC but if it's flash you can't. So I figured it's impossible to watch YouTube videos with CC. However, if anyone knows another way to watch with CC on YouTube, tell me please. Thanks.

    Sorry, but I don't know if there is a way.
    Also, just to be picky....would you be kind enough to avoid using all caps in your title?

  • How do you watch an iMovie with this 11inch macbook air?!!?

    I have a research project for class and I made a short documentary on imovie... Now I know I can view it on my mac but how can i make dvds? or let alone present it to my class (i.e. dvd) my school does not use macs, so asking IT was useless. Basically my question is, how do you watch a movie created on imovie to a windows based computer??????..... it says the file is .m4v, i am not too sure if that helps. I know there are various cables out there, but college has enough hold on my money, something free would be awesome! I really would like to make a dvd, but i will settle for whatever now...

    You can play it using quicktime on a Windows computer - just be sure its installed and you're good to go.

  • How Do You Play One Album with New Cover Art Browser

    This seems to be such a simple thing to do and yet I can not figure it out. How are u supposed to only play one album when viewing by the Cover Art Browser. I assumed double clicking the album art would play the album, but it doesnt. I've tried everything and it's driving me crazy. I just dont see the point of this view if you can't even play the individual albums without the entire library playing too.

    In preferences, (Edit -> Preferences on a Windows-based PC or iTunes-> Preferences on a Mac), then the Playback tab. There is an option to specify how to shuffle, either by individual songs, albums, or groupings.
    If you want some randomness, and a random song in there you might try leaving it on songs, and move the Smart Shuffle slider towards the left.

  • How do you keep 2 albums with the same title in separate folders

    Hi There,
    I have 4 albums that will not go into a seperate playlist folder.
    2 of them are title "ultimate collection"
    the other 2 are titled "super hits". (obviously they are greatest hits cds)
    All 4 albums are from different artist. I have read some other forums and what there saying is just change the title. Thats all fine and stuff but surely there is another option that i am unable to find.
    Any help would be much appreciated.
    Thanks
    Kryten

    I had the same problem with ac collection album, what you do is change the artist name. Im pretty sure it will go different folders.
    mclconcepcion

  • HT1549 how do you cut and paste with this mouse??

    Can someone please tell me how I can cut and pasteon this imac with my mouse?? Thank you

    Mouse
    Drag and drop.
    Key board shortcuts
    command + c
    command + option + v (cuts and pastes the selection)

  • How can you get 2 videos to play simutenously together?

    How can you get 2 videos to play simutenously together so both are playing side by side on screen at the same time? 

    Welcome to the forum.
    As Steve observes, what you are talking about is called "PiP," or Picture in Picture.
    He has given you the basics of creating a "split-screen" PiP, and that should be exactly what you wish to do.
    For more detail, plus more ways to do PiP, I strongly recommend his book, Cool Tricks & Hot Tips for Adobe Premiere Elements 11, from Muvipix. He has an entire chapter (Chapter 10) on PiP, and many of its uses, with detailed instructions on the settings to accomplish it. Just that one chapter is worth the price of the book.
    Good luck, and happy editing,
    Hunt

Maybe you are looking for

  • Help needed installing Flash Player Update on Mac

    I am trying to install a flash player update on Mac - right now the one site I'm trying to use says flash is out of date.   Will not accept my adobe password, reset it through the adobe site and still will not work.  Tried Chat help and agent said to

  • Link button to User Defined Object in Grid

    Hi, I'm using SAP B1 8.81 with B1DE. I have added a grid which is populated from a DataTable to a form. One of the columns in the grid contains the DocEntry of a User Defined Object. How can I display a link button on the grid ? Regards, Ben

  • How to hide kids albums with home sharing on

    I have 3 teenage kids and have home sharing turned on. How do I hide their albums in my iTunes and on my iPhone/iPad?

  • Some special characters not displaying

    Hi everyone................i have noticed that in archlinux,firefox fails to display the characters of other languages,for example:విరోధి నామ సంవత్సరాది శుభాకాంక్షలు ..............as u can see,instead of valid characters,i get such boxes.how do i sol

  • Access image files in .flv

    I have a .flv file that has several images in it. However, I do not have the original images. There is an image in the .flv file that is a transparent image. How am I able to copy and paste it or do whatever I can to transfer it to photoshop so that