Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing a video chatting application.i used vlcj for live video streaming..but failed to capture the video from the other system..

public static void main(String[] args) throws Exception {

        NativeLibrary.addSearchPath("libvlc",
                "C:\\Program Files\\VideoLAN\\VLC");


        String media = "dshow://"; 
        String[] options = {" :dshow-vdev=CyberLink Webcam Splitter :dshow-adev=Microphone (Realtek High Defini  :live-caching=300", ":sout = #transcode{vcodec=h264,vb=800,fps=15,scale=1,width=1280,height=800,acodec=mp4a,ab=128,channels=2,samplerate=44100}:http{dst=:8080/a.ogg} :sout-keep"};

        System.out.println("Streaming '" + media + "' to '" + options + "'"); 

        MediaPlayerFactory mediaPlayerFactory = new MediaPlayerFactory(options); 
        HeadlessMediaPlayer mediaPlayer = mediaPlayerFactory.newMediaPlayer(); 
        mediaPlayer.playMedia(media, options);
       new PlayStream().play();


        // Don't exit
        Thread.currentThread().join();




      }

this is my code,please help me to overcome the issue.

share|improve this question
Changed the streaming string,and i works fineemediaPlayer.playMedia("dshow://", ":sout=#transcode{vcodec=h264,vb=800,fps=15,scale=1,width=1280,height=800,acod‌​ec=mp4a,ab=128,channels=2,samplerate=44100}:rtp{sdp=rtsp://@:5555/demo}", ":no-sout-rtp-sap", ":no-sout-standard-sap", ":sout-all", ":sout-keep"); – Raji May 28 '12 at 4:14
You'd do well to put that as the answer and accept it so that others who run into this can quickly find the solution! – berry120 May 28 '12 at 17:06

1 Answer

up vote 1 down vote accepted

Changed the streaming string,and i works fine

mediaPlayer.playMedia("dshow://", ":sout=#transcode{vcodec=h264,vb=800,fps=15,scale=1,width=1280,height=800,acod‌​ec=mp4a,ab=128,channels=2,samplerate=44100}:rtp{sdp=rtsp://@:5555/demo}", ":no-sout-rtp-sap", ":no-sout-standard-sap", ":sout-all", ":sout-keep");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.