Search found 61 matches

Go to advanced search

by Khenatram
25 May 2009 14:18
Forum: VLC media player for Windows Troubleshooting
Topic: VLC & Delphi - "vlc_input_item_GetInfo" function info...
Replies: 1
Views: 358

Re: VLC & Delphi - "vlc_input_item_GetInfo" function info...

Hi Andreas ,

Did you find any details for "vlc_input_item_GetInfo" function?
I want to use this function in my C# application which uses 0.8.6.i version of VLC.

Thanks in advance,
Ram
by Khenatram
25 May 2009 14:15
Forum: VLC media player for Windows Troubleshooting
Topic: vlc_input_item_GetInfo
Replies: 1
Views: 133

Re: vlc_input_item_GetInfo

Can anyone help me out in this?

Thanks in advance.
by Khenatram
15 May 2009 06:03
Forum: Development around libVLC
Topic: Error in accessing input thread
Replies: 2
Views: 674

Re: Error in accessing input thread

Isn't there any workaround to get the input_item_t or input_thread_t object in C# program? I am done with the required implementation for my application and at this point I think it would be very difficult for me to move to new version. :?


Thanks,

Ram
by Khenatram
14 May 2009 14:23
Forum: Development around libVLC
Topic: Error in accessing input thread
Replies: 2
Views: 674

Error in accessing input thread

Hi, I am creating a application in C#, using NativeLibVLC.cs class. I am trying to get the input thread using following code. using (VlcPlaylistObject vpobj = new VlcPlaylistObject(this.vlcHandle)) { if (vpobj.SubObject != IntPtr.Zero) { IntPtr p_input = libvlc_playlist_get_input(ref vpobj.libvlc, r...
by Khenatram
11 May 2009 06:38
Forum: Development around libVLC
Topic: Need C# equivalent of "VLC_COMMON_MEMBERS" and "decoder_t"
Replies: 3
Views: 803

Re: Need C# equivalent of "VLC_COMMON_MEMBERS" and "decoder_t"

Anyone here who knows the C# equivalent of VLC_COMMON_MEMBERS?
by Khenatram
07 May 2009 16:07
Forum: VLC media player for Windows Troubleshooting
Topic: How to read the instance specific vlc log messages
Replies: 10
Views: 683

Re: How to read the instance specific vlc log messages

yes, I am trying to do that . To do so I have created the following structure for input_item_t. [StructLayout(LayoutKind.Sequential)] struct input_item_t { public IntPtr psz_name; public IntPtr psz_uri; public int i_options; /**< Number of input options */ public IntPtr ppsz_options; public mtime_t ...
by Khenatram
07 May 2009 09:47
Forum: VLC media player for Windows Troubleshooting
Topic: How to get " input_item_t " in C#
Replies: 1
Views: 168

Re: How to get " input_item_t " in C#

I have created the following structure for input_item_t. [StructLayout(LayoutKind.Sequential)] struct input_item_t { public IntPtr psz_name; public IntPtr psz_uri; public int i_options; /**< Number of input options */ public IntPtr ppsz_options; public mtime_t i_duration; /**< A hint about the durat...
by Khenatram
05 May 2009 16:09
Forum: VLC media player for Windows Troubleshooting
Topic: How to read the instance specific vlc log messages
Replies: 10
Views: 683

Re: How to read the instance specific vlc log messages

Hi,

I could not found this method in source code of 0.8.6. version of VLC. :( .

Is there any other alternative?
by Khenatram
05 May 2009 05:59
Forum: VLC media player for Windows Troubleshooting
Topic: How to read the instance specific vlc log messages
Replies: 10
Views: 683

Re: How to read the instance specific vlc log messages

Is there any other way to get the codec name using functions from libvlc DLL?
by Khenatram
04 May 2009 06:09
Forum: VLC media player for Windows Troubleshooting
Topic: How to get " input_item_t " in C#
Replies: 1
Views: 168

How to get " input_item_t " in C#

Hello, I want to use following function of VLC 0.8.6.i VLC_EXPORT( char *, vlc_input_item_GetInfo, ( input_item_t *p_i, const char *psz_cat,const char *psz_name ) ); But the issue is I am not able to get the " input_item_t " object. Can anyone help me in getting the input_item_t object in ...
by Khenatram
04 May 2009 06:05
Forum: VLC media player for Windows Troubleshooting
Topic: __msg_Subscribe and C#
Replies: 0
Views: 91

__msg_Subscribe and C#

Hi, Has anyone used "__msg_Subscribe" function of VLC 0.8.6..h version? Does anybody know hoe this function works and what is the purpose of this function? What I understood is using this function, we can subscribe to VLC messages. But I don't know how to achieve that? Can anybody help me ...
by Khenatram
29 Apr 2009 16:38
Forum: VLC media player for Windows Troubleshooting
Topic: How to read the instance specific vlc log messages
Replies: 10
Views: 683

Re: How to read the instance specific vlc log messages

Thanks again for prompt reply.

I guess mediainfo does not work with streamed media. Please correct me if I am wrong.
I need to read the codec name of the streamed video source that my C# application is currently playing.
by Khenatram
29 Apr 2009 09:55
Forum: VLC media player for Windows Troubleshooting
Topic: How to read the instance specific vlc log messages
Replies: 10
Views: 683

Re: How to read the instance specific vlc log messages

Thanks for reply. Unfortunately this is not happening :( . Even if I write the log messages in a file from two different VLC instances, both files contain same log messages. Is there any option/command that will give me the messages generated for that specific instance only. I am reading the log mes...
by Khenatram
27 Apr 2009 16:11
Forum: VLC media player for Windows Troubleshooting
Topic: How to read the instance specific vlc log messages
Replies: 10
Views: 683

How to read the instance specific vlc log messages

Hi All, I am using VLC 0.8.6.i version of VLC. If I have more than 1 instance of VLC control in my c# application, where each instance is using "libvlc_log_open" to read the vlc log messages. But I am getting same log messages for both the instances. Is this the expected behavior? Is there...
by Khenatram
16 Apr 2009 10:29
Forum: VLC media player for Windows Troubleshooting
Topic: Which protocol(TCP or UDP) VLC uses to broadcast RTSP stream
Replies: 1
Views: 1069

Which protocol(TCP or UDP) VLC uses to broadcast RTSP stream

Hi,

Can anyone tell me what protocol VLC player uses to stream the data using RTSP?

Is it TCP or UDP?
by Khenatram
16 Apr 2009 10:27
Forum: VLC media player for Windows Troubleshooting
Topic: How to stream a file using RTSP
Replies: 3
Views: 331

Re: How to stream a file using RTSP

:( .
No. It didn't work for me.
by Khenatram
13 Apr 2009 10:04
Forum: VLC media player for Windows Troubleshooting
Topic: How to stream a file using RTSP
Replies: 3
Views: 331

How to stream a file using RTSP

Hi All, How can I stream a file using RTSP protocol? Can anyone share the command for that. Currently I am using following command which is not working. :( cd "C:\program files\videolan\vlc" vlc.exe -vvv --dshow-vdev="C:\MyVideo.wmv" "dshow:// --sout #transcode{vcodec=mp4v,v...
by Khenatram
07 Apr 2009 15:36
Forum: VLC media player for Windows Troubleshooting
Topic: What is the prpose of "libvlc_input_will_play" function
Replies: 4
Views: 280

Re: What is the prpose of "libvlc_input_will_play" function

:( ,It does not contains the help for the required function.
by Khenatram
07 Apr 2009 14:00
Forum: VLC media player for Windows Troubleshooting
Topic: Error while reading RTSP stream from C# application.
Replies: 0
Views: 1259

Error while reading RTSP stream from C# application.

Hi, I am trying to read the RTSP stream from a C# application. The request string I created is as follows SETUP rtsp://localhost:8888/vlc.sdp RTSP/1.0 CSeq: 1 Transport: RTP/AVP/TCP;unicast;interleaved=0-1;mode=play User-Agent: RTSPClient As a response I got following message when I call readline of...
by Khenatram
03 Apr 2009 15:28
Forum: VLC media player for Windows Troubleshooting
Topic: What is the prpose of "libvlc_input_will_play" function
Replies: 4
Views: 280

What is the prpose of "libvlc_input_will_play" function

Hi,

Can anyone please explain me the purpose of the "libvlc_input_will_play" function?

I want to use it in a C# application.
by Khenatram
03 Apr 2009 15:27
Forum: VLC media player for Windows Troubleshooting
Topic: How to determine if RTSP feed is available
Replies: 3
Views: 230

Re: How to determine if RTSP feed is available

Hi,

Yes it is related to VLC. I am using NativelibVLC class.

Can you please tell me the purpose of "libvlc_input_will_play" and how to use it.
by Khenatram
02 Apr 2009 12:59
Forum: VLC media player for Windows Troubleshooting
Topic: How to determine if RTSP feed is available
Replies: 3
Views: 230

How to determine if RTSP feed is available

Hi All,

I am developing a C# application that plays RTSP streams. I am facing a strange problem regarding this, if the RTSP server or stream is not available, my application is crashing. Is there any way using which I can determine if the RTSP stream is alive or not?

Regards,

Ram
by Khenatram
02 Apr 2009 10:29
Forum: VLC media player for Windows Troubleshooting
Topic: --file-logging doesn't work (WinXP)
Replies: 5
Views: 4551

Re: --file-logging doesn't work (WinXP)

string[] initOptions = { NativeLibVlc.vlcInstallDirectory, ":no-one-instance", ":no-loop", ":no-drop-late-frames", ":disable-screensaver", ":vout=vout_directx", "--extraintf=logger", " --verbose=3", "--logfile=" + "...
by Khenatram
19 Jan 2009 10:46
Forum: Web and scripting
Topic: Issue with MRL
Replies: 0
Views: 281

Issue with MRL

Hi, I am trying to use MRL to limit only MP4V video formats in my C# application that uses NativeLibVLC class. I am using "udp/m4v://@" as the input string based on following format [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...] mentioned at http://wik...

Go to advanced search