Ejemplo n.º 1
0
        public void Start(int Width, int Height)
        {
            if (store.Count > 0)
            {
                store[0].Stop();
            }

            store.Add(this);

            this.Width  = Width;
            this.Height = Height;

            library = LibVLCLibrary.Load(null);

            inst = library.m_libvlc_new(4,
                                        new string[] { ":sout-udp-caching=0", ":udp-caching=0", ":rtsp-caching=0", ":tcp-caching=0" });
            //libvlc_new()                                    // Load the VLC engine
            m = library.libvlc_media_new_location(inst, playurl);
            // Create a new item
            mp = library.libvlc_media_player_new_from_media(m); // Create a media player playing environement
            library.libvlc_media_release(m);                    // No need to keep the media now

            vlc_lock_delegate    = new LibVLCLibrary.libvlc_video_lock_cb(vlc_lock);
            vlc_unlock_delegate  = new LibVLCLibrary.libvlc_video_unlock_cb(vlc_unlock);
            vlc_picture_delegate = new LibVLCLibrary.libvlc_video_display_cb(vlc_picture);

            library.libvlc_video_set_callbacks(mp,
                                               vlc_lock_delegate,
                                               vlc_unlock_delegate,
                                               vlc_picture_delegate);

            library.libvlc_video_set_format(mp, "RV24", (uint)Width, (uint)Height, (uint)Width * 4);

            library.libvlc_media_player_play(mp); // play the media_player
        }
Ejemplo n.º 2
0
        public void Start(int Width, int Height)
        {
            if (store.Count > 0)
                store[0].Stop();

            store.Add(this);

            this.Width = Width;
            this.Height = Height;

            library = LibVLCLibrary.Load(null);
            
            inst = library.m_libvlc_new(4,
                new string[] {":sout-udp-caching=0", ":udp-caching=0", ":rtsp-caching=0", ":tcp-caching=0"});
                //libvlc_new()                                    // Load the VLC engine 
            m = library.libvlc_media_new_location(inst, playurl);
                // Create a new item 
            mp = library.libvlc_media_player_new_from_media(m); // Create a media player playing environement 
            library.libvlc_media_release(m); // No need to keep the media now 

            vlc_lock_delegate = new LibVLCLibrary.libvlc_video_lock_cb(vlc_lock);
            vlc_unlock_delegate = new LibVLCLibrary.libvlc_video_unlock_cb(vlc_unlock);
            vlc_picture_delegate = new LibVLCLibrary.libvlc_video_display_cb(vlc_picture);

            library.libvlc_video_set_callbacks(mp,
                vlc_lock_delegate,
                vlc_unlock_delegate,
                vlc_picture_delegate);

            library.libvlc_video_set_format(mp, "RV24", (uint)Width, (uint)Height, (uint)Width*4);

            library.libvlc_media_player_play(mp); // play the media_player 
        }