Search found 17 matches

Go to advanced search

by chamanlata
15 Mar 2019 04:41
Forum: Development around libVLC
Topic: How can I mute the video in MFC vc++ ?
Replies: 11
Views: 1080

Re: How can I mute the video in MFC vc++ ?

Hello, I already tried try this but it also does not work for me. This is my code: my_instance = libvlc_new(0, NULL); my_media_file = libvlc_media_new_location(my_instance, "rtsp://test.mov"); my_player = libvlc_media_player_new_from_media(my_media_file); my_event_manager = libvlc_media_pl...
by chamanlata
14 Mar 2019 11:12
Forum: Development around libVLC
Topic: How can I mute the video in MFC vc++ ?
Replies: 11
Views: 1080

How can I mute the video in MFC vc++ ?

Hello, I am working on vlclib library in MFC VC++.I want to mute the audio of video.I triedc many function but it is not working.Please help!! I have tried all the option: 1. By Zero the volume Level 2. By mute the video 3. By disable the track This is my code: my_instance = libvlc_new(0, NULL); my_...
by chamanlata
07 Mar 2019 11:24
Forum: Development around libVLC
Topic: How to place VLC output window in MFC Rich EDit Control in vc++ ?
Replies: 8
Views: 753

Re: How to place VLC output window in MFC Rich EDit Control in vc++ ?

ok .is there any command in vlc library to disable the "Always display on top" functionality?
by chamanlata
07 Mar 2019 05:37
Forum: Development around libVLC
Topic: How to place VLC output window in MFC Rich EDit Control in vc++ ?
Replies: 8
Views: 753

Re: How to place VLC output window in MFC Rich EDit Control in vc++ ?

hello, I am working in MFC Vc++ . I have two Static Editor window in which I am sending text and text is displaying on that window. But I want in the background view it plays the video and send a text will display on the video. Right now My video is playing on the top and text is hidden behind the v...
by chamanlata
06 Mar 2019 07:33
Forum: Development around libVLC
Topic: Is there any command to play the video in Background in MFC Window in vc++ ?
Replies: 1
Views: 198

Is there any command to play the video in Background in MFC Window in vc++ ?

I am working on VLC Media Player using libvlc in MFC VC++. Right Now I am able to play the window inside the MFC window. But it displays on top and my text displayed in the back of the video. Can anyone please suggest how to set that the Video play in the background?

Thanks!!
by chamanlata
06 Mar 2019 04:52
Forum: Development around libVLC
Topic: How to place VLC output window in MFC Rich EDit Control in vc++ ?
Replies: 8
Views: 753

Re: How to place VLC output window in MFC Rich EDit Control in vc++ ?

Is there any command to play the video in Background in MFC Window in vc++ ?
by chamanlata
06 Mar 2019 04:50
Forum: Development around libVLC
Topic: How to place VLC output window in MFC Rich EDit Control in vc++ ?
Replies: 8
Views: 753

Re: How to place VLC output window in MFC Rich EDit Control in vc++ ?

Yes,got it .

Code: Select all

libvlc_media_player_set_hwnd
worked for me.

Thanks!!
by chamanlata
05 Mar 2019 06:00
Forum: Development around libVLC
Topic: How to place VLC output window in MFC Rich EDit Control in vc++ ?
Replies: 8
Views: 753

How to place VLC output window in MFC Rich EDit Control in vc++ ?

I am using libvlc using vc++. I am trying to place the VLC output window in MFC Rich Edit Control Window.

libvlc_media_player_set_xwindow (my_player,Id_Preview_Window); where Id_Preview_Window is the Id of this window

Please help !!
by chamanlata
28 Feb 2019 06:22
Forum: Development around libVLC
Topic: How to Hide Title bar from VLC Media Player (VLC Direct 3d output)using LIBVLC in vc++
Replies: 2
Views: 871

How to Hide Title bar from VLC Media Player (VLC Direct 3d output)using LIBVLC in vc++

Hello,
I am using libvlc in vc++.I want to hide the title bar from VLC Output Window(VLC 3D Direct OUTPUT). Can we hide or remove this title bar?
by chamanlata
28 Feb 2019 06:05
Forum: VLC stream-output (sout)
Topic: Play stream using VLC Mesdia Player
Replies: 10
Views: 1447

Re: Play stream using VLC Mesdia Player

Yes, It is worked For me. Thank you for your time RTP://@:5100
by chamanlata
27 Feb 2019 12:07
Forum: VLC stream-output (sout)
Topic: Play stream using VLC Mesdia Player
Replies: 10
Views: 1447

Re: Play stream using VLC Mesdia Player

rtp://10.0.0.1:5100/Video2 is the address from where I have to receive the Live stream in VLC.But I am Not able to do that.
I already open the port No 5100 and I also tried with the format rtp://@:5100\Video2 but it is also not working?
by chamanlata
27 Feb 2019 04:39
Forum: VLC stream-output (sout)
Topic: Play stream using VLC Mesdia Player
Replies: 10
Views: 1447

Re: Play stream using VLC Mesdia Player

These are the logs whenever I am trying to use the play any RTP address. [032569dc] main demux error: socket bind error (Cannot assign requested address) [032569dc] main demux error: socket bind error (Cannot assign requested address) [030305bc] main input error: open of `rtp://@10.0.0.1:5100/Video2...
by chamanlata
26 Feb 2019 11:40
Forum: VLC stream-output (sout)
Topic: Play stream using VLC Mesdia Player
Replies: 10
Views: 1447

Re: Play stream using VLC Mesdia Player

Hi @unidan
when I am using the stream like for mms:// or with rtsp:// they all are worked fine but if I am using rtp stream then got the error"VLC is unable to play invalid mrl"
Please help !!
m = libvlc_media_new_path (inst, "rtp://@10.0.0.1:5100/Video2");
by chamanlata
21 Feb 2019 11:29
Forum: VLC stream-output (sout)
Topic: Play stream using VLC Mesdia Player
Replies: 10
Views: 1447

Re: Play stream using VLC Mesdia Player

Hi, Now my code is working fine and video is playing successfully .but the issue now is that it just play the video for the time dfepend on Sleep function.How can I play it without sleep function until it is finished libvlc_instance_t * inst; libvlc_media_player_t *mp; libvlc_media_t *m; /* Load the...
by chamanlata
21 Feb 2019 07:05
Forum: VLC stream-output (sout)
Topic: Play stream using VLC Mesdia Player
Replies: 10
Views: 1447

Play stream using VLC Mesdia Player

I am just using this code to play a stream .but this code is not running please help libvlc_instance_t * inst; libvlc_media_player_t *mp; libvlc_media_t *m; /* Load the VLC engine */ inst = libvlc_new (0, NULL); /* Create a new item */ m = libvlc_media_new_path (inst, "rtp://10.0.0.1:5100/Video...
by chamanlata
19 Feb 2019 06:17
Forum: Development around libVLC
Topic: How to get LibVlc for visual studio project
Replies: 11
Views: 7148

Re: How to get LibVlc for visual studio project

I am getting the same error.Please help

Go to advanced search