Jx capture not saving files to dekstop











up vote
0
down vote

favorite












Hello everyone im trying to make video recording software using Jx capture library its supposed to save the file as Desktop.wmv , but after the programm is executed i cant find the file anywhere. The program is running without any errors , but i cant find the file anywhere. Can someone please help ? Thanks!!



package webcrawler;

import com.teamdev.jxcapture.Codec;
import com.teamdev.jxcapture.EncodingParameters;
import com.teamdev.jxcapture.InterpolationMode;
import com.teamdev.jxcapture.VideoCapture;
import com.teamdev.jxcapture.audio.AudioCodec;
import com.teamdev.jxcapture.audio.AudioEncodingParameters;
import com.teamdev.jxcapture.audio.AudioSource;
import com.teamdev.jxcapture.video.VideoFormat;

import java.awt.*;
import java.io.File;
import java.util.List;


public class WebCrawler {


static boolean useAudio = true;
static boolean usePause = true;

public static void main(String args) throws Exception {
EncodingParameters encodingParameters = new EncodingParameters(new File("Desktop.wmv"));
encodingParameters.setBitrate(1500000);
encodingParameters.setSize(new Dimension(800, 600));
encodingParameters.setInterpolationMode(InterpolationMode.HighQuality);

VideoCapture videoCapture = VideoCapture.create(VideoFormat.WMV);

List<Codec> codecs = videoCapture.getVideoCodecs();
System.out.println("Available video codecs:");
for (Codec
codec : codecs) {
System.out.println("Video codec: " + codec);
}
Codec preferredCodec = codecs.get(1);
System.out.println("Selected video codec = " + preferredCodec);

encodingParameters.setCodec(preferredCodec);

if (useAudio) {
System.out.println("Available audio recording sources:");
List<AudioSource> audioSources = AudioSource.getAvailable();
for (AudioSource audioSource : audioSources) {
System.out.println("audioSource = " + audioSource);
}
if (audioSources.isEmpty()) {
System.err.println("No audio sources available");
} else {
AudioSource audioSource = audioSources.get(0);
System.out.println("Selected audio source = " + audioSource);
videoCapture.setAudioSource(audioSource);

List<AudioCodec> audioCodecs = videoCapture.getAudioCodecs();
if (audioSources.isEmpty()) {
System.err.println("No audio codecs available");
} else {
System.out.println("Available audio codecs:");
for (AudioCodec audioCodec : audioCodecs) {
System.out.println("audioCodec = " + audioCodec);
}

// Enable and configure audio encoding
AudioEncodingParameters audioEncoding = new AudioEncodingParameters();

AudioCodec audioCodec = audioCodecs.get(0);
System.out.println("Selected audio codec = " + audioCodec);
audioEncoding.setCodec(audioCodec);

encodingParameters.setAudioEncoding(audioEncoding);
}
}
}
System.out.println("encodingParameters = " + encodingParameters);

videoCapture.start(encodingParameters);
if (usePause) {
System.out.println("Recording started. Press 'Enter' to pause.");
System.in.read();
videoCapture.pause();
System.out.println("Recording started. Press 'Enter' to resume.");
System.in.read();
videoCapture.start();
}
System.out.println("Recording started. Press 'Enter' to stop.");
System.in.read();
videoCapture.stop();
System.out.println("Done.");
}
}









share|improve this question




























    up vote
    0
    down vote

    favorite












    Hello everyone im trying to make video recording software using Jx capture library its supposed to save the file as Desktop.wmv , but after the programm is executed i cant find the file anywhere. The program is running without any errors , but i cant find the file anywhere. Can someone please help ? Thanks!!



    package webcrawler;

    import com.teamdev.jxcapture.Codec;
    import com.teamdev.jxcapture.EncodingParameters;
    import com.teamdev.jxcapture.InterpolationMode;
    import com.teamdev.jxcapture.VideoCapture;
    import com.teamdev.jxcapture.audio.AudioCodec;
    import com.teamdev.jxcapture.audio.AudioEncodingParameters;
    import com.teamdev.jxcapture.audio.AudioSource;
    import com.teamdev.jxcapture.video.VideoFormat;

    import java.awt.*;
    import java.io.File;
    import java.util.List;


    public class WebCrawler {


    static boolean useAudio = true;
    static boolean usePause = true;

    public static void main(String args) throws Exception {
    EncodingParameters encodingParameters = new EncodingParameters(new File("Desktop.wmv"));
    encodingParameters.setBitrate(1500000);
    encodingParameters.setSize(new Dimension(800, 600));
    encodingParameters.setInterpolationMode(InterpolationMode.HighQuality);

    VideoCapture videoCapture = VideoCapture.create(VideoFormat.WMV);

    List<Codec> codecs = videoCapture.getVideoCodecs();
    System.out.println("Available video codecs:");
    for (Codec
    codec : codecs) {
    System.out.println("Video codec: " + codec);
    }
    Codec preferredCodec = codecs.get(1);
    System.out.println("Selected video codec = " + preferredCodec);

    encodingParameters.setCodec(preferredCodec);

    if (useAudio) {
    System.out.println("Available audio recording sources:");
    List<AudioSource> audioSources = AudioSource.getAvailable();
    for (AudioSource audioSource : audioSources) {
    System.out.println("audioSource = " + audioSource);
    }
    if (audioSources.isEmpty()) {
    System.err.println("No audio sources available");
    } else {
    AudioSource audioSource = audioSources.get(0);
    System.out.println("Selected audio source = " + audioSource);
    videoCapture.setAudioSource(audioSource);

    List<AudioCodec> audioCodecs = videoCapture.getAudioCodecs();
    if (audioSources.isEmpty()) {
    System.err.println("No audio codecs available");
    } else {
    System.out.println("Available audio codecs:");
    for (AudioCodec audioCodec : audioCodecs) {
    System.out.println("audioCodec = " + audioCodec);
    }

    // Enable and configure audio encoding
    AudioEncodingParameters audioEncoding = new AudioEncodingParameters();

    AudioCodec audioCodec = audioCodecs.get(0);
    System.out.println("Selected audio codec = " + audioCodec);
    audioEncoding.setCodec(audioCodec);

    encodingParameters.setAudioEncoding(audioEncoding);
    }
    }
    }
    System.out.println("encodingParameters = " + encodingParameters);

    videoCapture.start(encodingParameters);
    if (usePause) {
    System.out.println("Recording started. Press 'Enter' to pause.");
    System.in.read();
    videoCapture.pause();
    System.out.println("Recording started. Press 'Enter' to resume.");
    System.in.read();
    videoCapture.start();
    }
    System.out.println("Recording started. Press 'Enter' to stop.");
    System.in.read();
    videoCapture.stop();
    System.out.println("Done.");
    }
    }









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Hello everyone im trying to make video recording software using Jx capture library its supposed to save the file as Desktop.wmv , but after the programm is executed i cant find the file anywhere. The program is running without any errors , but i cant find the file anywhere. Can someone please help ? Thanks!!



      package webcrawler;

      import com.teamdev.jxcapture.Codec;
      import com.teamdev.jxcapture.EncodingParameters;
      import com.teamdev.jxcapture.InterpolationMode;
      import com.teamdev.jxcapture.VideoCapture;
      import com.teamdev.jxcapture.audio.AudioCodec;
      import com.teamdev.jxcapture.audio.AudioEncodingParameters;
      import com.teamdev.jxcapture.audio.AudioSource;
      import com.teamdev.jxcapture.video.VideoFormat;

      import java.awt.*;
      import java.io.File;
      import java.util.List;


      public class WebCrawler {


      static boolean useAudio = true;
      static boolean usePause = true;

      public static void main(String args) throws Exception {
      EncodingParameters encodingParameters = new EncodingParameters(new File("Desktop.wmv"));
      encodingParameters.setBitrate(1500000);
      encodingParameters.setSize(new Dimension(800, 600));
      encodingParameters.setInterpolationMode(InterpolationMode.HighQuality);

      VideoCapture videoCapture = VideoCapture.create(VideoFormat.WMV);

      List<Codec> codecs = videoCapture.getVideoCodecs();
      System.out.println("Available video codecs:");
      for (Codec
      codec : codecs) {
      System.out.println("Video codec: " + codec);
      }
      Codec preferredCodec = codecs.get(1);
      System.out.println("Selected video codec = " + preferredCodec);

      encodingParameters.setCodec(preferredCodec);

      if (useAudio) {
      System.out.println("Available audio recording sources:");
      List<AudioSource> audioSources = AudioSource.getAvailable();
      for (AudioSource audioSource : audioSources) {
      System.out.println("audioSource = " + audioSource);
      }
      if (audioSources.isEmpty()) {
      System.err.println("No audio sources available");
      } else {
      AudioSource audioSource = audioSources.get(0);
      System.out.println("Selected audio source = " + audioSource);
      videoCapture.setAudioSource(audioSource);

      List<AudioCodec> audioCodecs = videoCapture.getAudioCodecs();
      if (audioSources.isEmpty()) {
      System.err.println("No audio codecs available");
      } else {
      System.out.println("Available audio codecs:");
      for (AudioCodec audioCodec : audioCodecs) {
      System.out.println("audioCodec = " + audioCodec);
      }

      // Enable and configure audio encoding
      AudioEncodingParameters audioEncoding = new AudioEncodingParameters();

      AudioCodec audioCodec = audioCodecs.get(0);
      System.out.println("Selected audio codec = " + audioCodec);
      audioEncoding.setCodec(audioCodec);

      encodingParameters.setAudioEncoding(audioEncoding);
      }
      }
      }
      System.out.println("encodingParameters = " + encodingParameters);

      videoCapture.start(encodingParameters);
      if (usePause) {
      System.out.println("Recording started. Press 'Enter' to pause.");
      System.in.read();
      videoCapture.pause();
      System.out.println("Recording started. Press 'Enter' to resume.");
      System.in.read();
      videoCapture.start();
      }
      System.out.println("Recording started. Press 'Enter' to stop.");
      System.in.read();
      videoCapture.stop();
      System.out.println("Done.");
      }
      }









      share|improve this question















      Hello everyone im trying to make video recording software using Jx capture library its supposed to save the file as Desktop.wmv , but after the programm is executed i cant find the file anywhere. The program is running without any errors , but i cant find the file anywhere. Can someone please help ? Thanks!!



      package webcrawler;

      import com.teamdev.jxcapture.Codec;
      import com.teamdev.jxcapture.EncodingParameters;
      import com.teamdev.jxcapture.InterpolationMode;
      import com.teamdev.jxcapture.VideoCapture;
      import com.teamdev.jxcapture.audio.AudioCodec;
      import com.teamdev.jxcapture.audio.AudioEncodingParameters;
      import com.teamdev.jxcapture.audio.AudioSource;
      import com.teamdev.jxcapture.video.VideoFormat;

      import java.awt.*;
      import java.io.File;
      import java.util.List;


      public class WebCrawler {


      static boolean useAudio = true;
      static boolean usePause = true;

      public static void main(String args) throws Exception {
      EncodingParameters encodingParameters = new EncodingParameters(new File("Desktop.wmv"));
      encodingParameters.setBitrate(1500000);
      encodingParameters.setSize(new Dimension(800, 600));
      encodingParameters.setInterpolationMode(InterpolationMode.HighQuality);

      VideoCapture videoCapture = VideoCapture.create(VideoFormat.WMV);

      List<Codec> codecs = videoCapture.getVideoCodecs();
      System.out.println("Available video codecs:");
      for (Codec
      codec : codecs) {
      System.out.println("Video codec: " + codec);
      }
      Codec preferredCodec = codecs.get(1);
      System.out.println("Selected video codec = " + preferredCodec);

      encodingParameters.setCodec(preferredCodec);

      if (useAudio) {
      System.out.println("Available audio recording sources:");
      List<AudioSource> audioSources = AudioSource.getAvailable();
      for (AudioSource audioSource : audioSources) {
      System.out.println("audioSource = " + audioSource);
      }
      if (audioSources.isEmpty()) {
      System.err.println("No audio sources available");
      } else {
      AudioSource audioSource = audioSources.get(0);
      System.out.println("Selected audio source = " + audioSource);
      videoCapture.setAudioSource(audioSource);

      List<AudioCodec> audioCodecs = videoCapture.getAudioCodecs();
      if (audioSources.isEmpty()) {
      System.err.println("No audio codecs available");
      } else {
      System.out.println("Available audio codecs:");
      for (AudioCodec audioCodec : audioCodecs) {
      System.out.println("audioCodec = " + audioCodec);
      }

      // Enable and configure audio encoding
      AudioEncodingParameters audioEncoding = new AudioEncodingParameters();

      AudioCodec audioCodec = audioCodecs.get(0);
      System.out.println("Selected audio codec = " + audioCodec);
      audioEncoding.setCodec(audioCodec);

      encodingParameters.setAudioEncoding(audioEncoding);
      }
      }
      }
      System.out.println("encodingParameters = " + encodingParameters);

      videoCapture.start(encodingParameters);
      if (usePause) {
      System.out.println("Recording started. Press 'Enter' to pause.");
      System.in.read();
      videoCapture.pause();
      System.out.println("Recording started. Press 'Enter' to resume.");
      System.in.read();
      videoCapture.start();
      }
      System.out.println("Recording started. Press 'Enter' to stop.");
      System.in.read();
      videoCapture.stop();
      System.out.println("Done.");
      }
      }






      java jxcapture






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 12 at 10:32









      Vladimir

      1,99211621




      1,99211621










      asked Nov 11 at 15:58









      ronald shirman

      2118




      2118
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          By default, the captured video file located in the current directory of the running application. If you need to put the file to any other location, you have to specify an absolute path to it. For example:



          new EncodingParameters(new File("D:UserDesktop.wmv"));






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250507%2fjx-capture-not-saving-files-to-dekstop%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote













            By default, the captured video file located in the current directory of the running application. If you need to put the file to any other location, you have to specify an absolute path to it. For example:



            new EncodingParameters(new File("D:UserDesktop.wmv"));






            share|improve this answer

























              up vote
              1
              down vote













              By default, the captured video file located in the current directory of the running application. If you need to put the file to any other location, you have to specify an absolute path to it. For example:



              new EncodingParameters(new File("D:UserDesktop.wmv"));






              share|improve this answer























                up vote
                1
                down vote










                up vote
                1
                down vote









                By default, the captured video file located in the current directory of the running application. If you need to put the file to any other location, you have to specify an absolute path to it. For example:



                new EncodingParameters(new File("D:UserDesktop.wmv"));






                share|improve this answer












                By default, the captured video file located in the current directory of the running application. If you need to put the file to any other location, you have to specify an absolute path to it. For example:



                new EncodingParameters(new File("D:UserDesktop.wmv"));







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 12 at 14:08









                Serhii Fedchenko

                512




                512






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250507%2fjx-capture-not-saving-files-to-dekstop%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Florida Star v. B. J. F.

                    Error while running script in elastic search , gateway timeout

                    Adding quotations to stringified JSON object values