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

Similar Messages

  • 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

  • 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

  • How can I create a video with effects using my ipad?

    How can I create a video with effects (sepia, B&W, Negative, oval or any other shape borders) using my ipad?  I would Like to keep a higher res and also be able to shrink it down to email or send in a MMS. Or should I just upload it to my PC and mess with it there? Some of the apps I have are very easy to use compared to the learning curve needed for video editing software.
    Thanks

    Thats the Problem . . . how many apps do I have to try until I find the one I want? I noticed a few will render the video thus losing its original size. When I went to edit it more in iMovie the video was smaller--not good. And what software do you suggest, Templeton, for the PC? I love the apps because they are easy. I dont have hours to mess around on a software to figure out if its something I want. Im looking for simplicity. Maybe Ill get more into it later. I just want to record simple video of my playing the guitar for self analysis and create a short video for family and friends.
    Apps:
    iMovie
    CinemaFXV
    VideoFix
    Cartoonatic
    Video illusion
    VidEditor
    Software:
    Windows Movie maker (wont accept .mov files)
    After Effects (Too little time, so much to learn)
    Wondershare (Very easy but little choices)
    VideoPad (Again. Few choices)

  • How can i play encrypted video(.mp4) in iphone app?

    Hello,
    I want to play encrypted mp4 video in my app.
    How can i play encrypted video in iphone app?

    Thanks for your assistance. Unfortunately I'm still not able to get this to work.
    First, I don't see an export to Quicktime in AppleTV format setting. The only choices that I have are export to Quicktime in Full, CD, email or streaming video format.
    I tried both full and CD but I still cannot get it to my AppleTV. Once the video is in Quicktime format I drag and drop the file into my iTunes library. It shows up in the movies directory on Itunes but when I sync Itunes with Apple TV - nothing. Everything else syncs but just not the quicktime movie.
    Any ideas?

  • How can I export a video with audio from premiere cs 5.5 to a DVD

    how can I export a video with audio from premiere cs 5.5 to a DVD

    You don't... at least not directly... you export MPEG2-DVD and then use the TWO files (audio and video) in Encore
    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923 may help

  • How can I record a video with LAbview?

    Hi,
    I have a question: How can I record a video with labview?
    I have a camera (AXIS 221) connected via rj45 on PC. I see the video of the camera in a browser.
    And I would to acquire the video in labview.
    Could someone help me?
    Thanks
    Raf

    Unfortunately I haven't any experience with this camera. Iguess, you should install API, then crete new VI, place ActiveX container (palette Container->ActiveX) on the Front Panel, then right mouse click, then choose Insert ActiveX object..., then found you camera object and select it and press OK. Then you probably can see image from the on the front panel. Also probably you will be able to get image data in array (how easy is it - depends from the camera API).
    If you able to see image from camera in the Internet Explorer, then another method - you can put Microsoft Web Browser as ActiveX object, then you should also see the image. Disadvantage of this method - you will be not able to get image data.
    Andrey.

  • Premiere pro Encoded file having m4v & .wav & m4v.xmpse files how can i play this video file?

    Hello Guys,
    I am a beginner in Premiere ,just started learning.Created a project and wanted the finished project file as a bluray format,after 14 hours  adobe premiere pro(not encore) created all the above three files,what to do next? how can i play the video file?
    Kind advise pls

    Dear Mr,Hunt,
    You made my day....i felt its more than special a christmas day,thank's a Trillion..downloaded the MKV MERGE GUI ,within ten minutes job done!!!!!!!!!
    All my 16 hour rendering job is saved.End of the day i learned something new toooo.
    I would like to ask you a question which is not connected to this topic,i asked this question before in windows 7 forum but till date no body solved!!
    I am having few avi video files which having (avi.avi) extension i couldn't figure out how its occured(they all video files captured from samsung galaxy note,and appeared noraml avi files but became avi.avi i tried removing one extension,eventhough it says having one extension when you look in to the properties of that file you can see avi.avi ,the problem is eventhough it playable in vlc sometime,when i try to import to premiere pro -it says the file is corrupted.
    any idea??

  • How can I view a video with the extension .wlmp?

    How can I view a video with the extension .wlmp?

    Nevermind. Found wlmp reference elsewhere in these discussions.

  • How can I protect a video with a password?

    how can I protect a video with a password?
    Thanks
    Message was edited by: Host <to clarify Subject>

    By default, Disk Utility has the "Add to Keychain" setting checked on.
    You have to make a new image and turn this funtion off if you want to make sure the video stays private on your computer.
    If you send the video to another computer, the user will have to enter the password.

  • How can I add a video in vlc format in power point?

    How can I add a video in vlc format in power point?

    Are you using a folder system to organize your music?

  • How can I play a video created in iMovie 06 on AppleTV?

    I have a video project that I created in iMovie 06. How can I play this on AppleTV?

    Thanks for your assistance. Unfortunately I'm still not able to get this to work.
    First, I don't see an export to Quicktime in AppleTV format setting. The only choices that I have are export to Quicktime in Full, CD, email or streaming video format.
    I tried both full and CD but I still cannot get it to my AppleTV. Once the video is in Quicktime format I drag and drop the file into my iTunes library. It shows up in the movies directory on Itunes but when I sync Itunes with Apple TV - nothing. Everything else syncs but just not the quicktime movie.
    Any ideas?

  • How can i play (wmv) video files on E90 ?

    I was download video files (wmv) and it is not played on my mobile ..
    How can I play it ?
    Is there any app for this Files to play ?

    At the moment unfortunatley there is no app that can play those file types..
    Joing the bandwagon of other users who are waiting for an app to be developed.
    iPhone 5 32GB
    MacBook Pro Retina 15" Mac OS X Mountain Lion 10.8.4

  • I have a gmail account and someone sent me a video. How can I play the video message on my ipad?

    I'm new to ipad. I received a video message in gmail. How can I play it on my ipad?

    Leslie-
    The iPad can not play some video formats such as WMV or FLV.  Those would need to be converted on your computer to something the iPad can play, like M4V or MP4.
    You might ask the person who sent the message to you to do the conversion and send it again.
    Fred

  • How can I play HD video on my ION s12?

    I have tried playing HD content like .mkv files and I get stuttering so badly that it is not watchable. I have updated the drivers and have the combined community codec installed. Any help would be much appreciated!!
    Solved!
    Go to Solution.

    Hey pteriss
    I just found the problem. Just like I thought and also previously mentioned, is all about the codecs and players used.
    As you might already know, any video file should be played with Media Player Classic or VLC as this players support almost all formats out there.
    Now, like I also mentioned, Youtube and Hulu HD and anything based on web comes from flash video so dont expect ION to play nice. You will need to wait for Flash 10.1 to become official and Geforce drivers to update support (they only support beta 10.1 for now).
    For the regular video files. .mov files WONT PLAY NICE. That is, things like Apple trailers wont play nice. I dont think thats an ION problem but more like Apple/Quicktime not fully optimized.
    Now, you can try other formats and you WILL SEE ION can indeed PLAY 1080p with NO problems.
    Formats that wont give you problems (from what I checked) are WMV HD (Microsoft) and MPEG2. I just downloaded 2 samples of each and they play GREAT! Both 1080p and 720p. The 720p looks better because of the screen size, it fits perfectly. 1080p still plays but you know, Media Player Classic has to resize the video to make it fit and it ends up as 4:3, but still plays. 720p no problem stays 16:9 and plays nice. I would use 1080p whenever I need to send it out through the HDMI port as the screen size best fits 720p.
    Now, I still need to test MP4 format, IM PRETTY SURE THIS ONE WONT GIVE PROBLEMS EITHER!. This is such a popular format Im 99% sure it should also play as good as WMV HD or MPEG2.
    Now, there is one more format which is VC-1. Im downloading a demo movie right now to see how it plays. Will update this post later and let you know how it goes.
    So far we got this conclusion
    In 720p & 1080p:
    WMV HD = Excellent
    MPEG 2 = Excellent
    MP4 = Should be playable
    VC-1 = Decent, its watchable
    Quicktime (.Mov) = Not playable
    Matroska (mkv) = Should be playable (with K-Lite Mega Codec Pack)
    Youtube HD/ Hulu HD = Without Flash 10.1, you cannot play online videos at all. With Flash 10.1 & GeForce 195 or later drivers, you can watch 360p, 480p, and even 720p without problems!. 1080 gives it a hard time, little worse than playing a VC-1 file (check above), but 720p is fine at this early stage of Flash video on the GPU.
    Just want to mention my specs. Lenovo S12 ION, Win XP Pro, K-Lite Mega 5.6.1, Media Player Classic.
    And if you guys want to test samples and enjoy some 720p/1080p, here is the website I used
    http://www.avsforum.com/avs-vb/archive/index.php/t-940526.html
    UPDATE 01/22/10: Just remembered about Matroska (mkv) will test that later. VC-1 results updated. Youtube HD/Hulu HD results also updated.

Maybe you are looking for

  • Final Cut Studio 2 Render Times Exponetianlly  Greater

    Used to have Final Cut Studio, loved it, render times were very reasonable, I upgraded 2 weeks ago to Final Cut Studio 2 and the render times are not outrageous. What used to take 5-10 minutes to render is 3 hours or so. Am I missing something?

  • J2ee security newbie: integrated authentication question

    I am trying to build a set of JSPs/servlets that require authentication and probably authorization. The jsp / sevlets should be able to authenticate against any underlying password system, or should cope with most common systems such as win2k / unix

  • Connecting 2 macs using Leopard...

    Hello. I hope you can help. I have 2 macs (iMac G5 and an iBook G4) wirelessly connected to each other using airport. This is a daft question but I really can't see how I share data between the 2? I have 'shared' showing up in the finder, the 2 macs

  • Displaying a data error when NOT in use...

    So the phone is in my pocket and as I'm listening to some MP3s this error pops up. It happens randomly and usually when the phone is in my pocket. So if I'm in a meeting and it vibrates... I'm inclined to pick it up and see if it's a text or somethin

  • Spool number in Smartforms

    Hi all, How to generate a spool number of a smartform. Remember in the condition for that output type i have marked Print Immediately. Regards, Rajeswara Rao.J