Search found 16 matches

Go to advanced search

by tommygr
30 Jul 2015 00:19
Forum: VLC media player for Windows Troubleshooting
Topic: Minimal UI state using Remote Control Interface
Replies: 1
Views: 273

Re: Minimal UI state using Remote Control Interface

Is this the wrong forum for this question? Maybe I should post it on the dev side.
by tommygr
28 Jul 2015 01:25
Forum: VLC media player for Windows Troubleshooting
Topic: Minimal UI state using Remote Control Interface
Replies: 1
Views: 273

Minimal UI state using Remote Control Interface

Currently I have a remote control app that is using the Remote Control Interface. I use VLC for playing back and RTSP stream and so I launch it with the Minimal Interface flag. I do this to hid the transport controls and menu bars. If the stream stops for some reason ( broken network or stream ) I w...
by tommygr
09 Jun 2015 23:05
Forum: Development around libVLC
Topic: Issues starting RTSP stream using libvlc
Replies: 2
Views: 2244

Re: Issues starting RTSP stream using libvlc

Yes of course its not... changed the call from libvlc_media_new_path() to libvlc_media_new_location() and it seems to be working. For anyone else who needs to know this here is the doc link: http://www.videolan.org/developers/vlc/doc/doxygen/html/group__libvlc__media.html#gae1d3baee3f4610c6fe5818def...
by tommygr
09 Jun 2015 20:45
Forum: Development around libVLC
Topic: Issues starting RTSP stream using libvlc
Replies: 2
Views: 2244

Issues starting RTSP stream using libvlc

Trying to get an rtsp:// stream going and it fails every time. Here is the code I have been using. Its pretty simple so maybe I'm missing something. #include "stdafx.h" #include <stdio.h> #include <stdlib.h> #include <vlc/vlc.h> int _tmain(int argc, _TCHAR* argv[]) { libvlc_instance_t * in...
by tommygr
05 Jan 2014 05:37
Forum: General VLC media player Troubleshooting
Topic: Telnet control interface not working in 2.1.2
Replies: 4
Views: 961

Re: Telnet control interface not working in 2.1.2

this is the error in the log file. main debug: looking for interface module matching "telnet,none": 15 candidates lua debug: Found lua interface script: C:\Program Files\VideoLAN\VLC\lua\intf\telnet.luac lua debug: Setting config variable: config={telnet={host='telnet://localhost:4212',pas...
by tommygr
05 Jan 2014 04:42
Forum: General VLC media player Troubleshooting
Topic: Telnet control interface not working in 2.1.2
Replies: 4
Views: 961

Telnet control interface not working in 2.1.2

I have been using the telnet interface for years. I just upgraded from 2.0.8 to 2.1.2 and it doesn't. I try to connect on my telnet client and it never comes back or times out. just using all the defaults and launching with vlc.exe filename --one-instance --extraintf telnet tried launching with vlc....
by tommygr
13 Dec 2013 02:23
Forum: Development around libVLC
Topic: opening HTTP stream with LIBVLC
Replies: 5
Views: 4114

Re: opening HTTP stream with LIBVLC

When I try using libvlc_media_new_location(inst, path); i get this in the debugger output: 'LibVlcSB.exe': Loaded 'C:\Windows\System32\profapi.dll' main libvlc debug: opening config file (C:\Users\VLCDev\AppData\Roaming\vlc\vlcrc) main libvlc debug: translation test: code is "C" main libvl...
by tommygr
12 Dec 2013 23:31
Forum: Development around libVLC
Topic: opening HTTP stream with LIBVLC
Replies: 5
Views: 4114

Re: opening HTTP stream with LIBVLC

Im having this same issue. This whole thing is very frustrating because VLC Player is doing it just fine. My Path is this: path => http://www.youtube.com/watch?v=XztPtK7yAUk If I use the VLC Player this video opens just great. if I go through LibVLC its not working. Using 2.1.2. Tried these from the...
by tommygr
19 Jun 2013 01:00
Forum: Development around libVLC
Topic: Bringing up the DVD Menus
Replies: 1
Views: 369

Bringing up the DVD Menus

Not sure if Im missing something here but I cant seem to get back to the DVD Menus once the disc is playing. My app is C++ and I am looking for the api to bring up the DVD Menu. I can navigate the menus using libvlc_media_player_navigate() to do the navigation and start the disc playing. I thought l...
by tommygr
31 Jul 2012 20:15
Forum: Development around libVLC
Topic: Pixel breakup when seeking mp4 files.
Replies: 3
Views: 842

Re: Pixel breakup when seeking mp4 files.

How can I tell. I figured that if I was using the config file that the VLC app is using then it should be the same right?
by tommygr
25 Jul 2012 20:34
Forum: Development around libVLC
Topic: Pixel breakup when seeking mp4 files.
Replies: 3
Views: 842

Pixel breakup when seeking mp4 files.

I have been working on a C++ app on windows for a while now using the libVLC core. I have a lot of it working great but still having a few problems. I seem to be getting a lot of pixel break up when seeking in an MP4 file. When I use the VLC app I don’t see the breakup. I have confirmed that I am us...
by tommygr
06 Apr 2012 20:11
Forum: Development around libVLC
Topic: DirectX (DirectDraw) command options
Replies: 1
Views: 1682

Re: DirectX (DirectDraw) command options

Nothing... OK. So besides the vlc full help command for the modals is there any other documentation on the different flags. Looking through the vlc source code it looks like the flag --directx-hw-yuv is handled by modules\video_output\msw\directx.c which is the Direct Draw wrapper which is what the ...
by tommygr
04 Apr 2012 02:58
Forum: Development around libVLC
Topic: DirectX (DirectDraw) command options
Replies: 1
Views: 1682

DirectX (DirectDraw) command options

Im wondering if anyone can help me with some settings or validate my current command options. Im trying to reproduce the settings in the vlc app under tools->preferences. Under Display - Accelerated video output (overlay) - checked - Use hardware YUV->RGB conversions - checked - Window Decorations -...
by tommygr
08 Mar 2012 23:35
Forum: Development around libVLC
Topic: 2.0 libvlc.dll error VS 2008 Release build
Replies: 2
Views: 1186

Re: 2.0 libvlc.dll error VS 2008 Release build

UPDATE: I seem to have fixed it. In another post about VS 2008 compile issues I noticed that they had been adjusting the /OPT linker flag from /OPT:REF to /OPT:NOREF and it seemed to fix a different issue that they were having. Microsoft docs: REF | NOREF /OPT:REF eliminates functions and/or data th...
by tommygr
08 Mar 2012 21:10
Forum: Development around libVLC
Topic: 2.0 libvlc.dll error VS 2008 Release build
Replies: 2
Views: 1186

2.0 libvlc.dll error VS 2008 Release build

I’m new to libvlc.dll and libvlccore.dll. I want to use it to write a simple media player so I decided to start by downloading and installing the 2.0 release of VLC. I found the SDK in the install folder and using VS 2008 started a simple console app. To get started as a simple hello world app I use...

Go to advanced search