Search found 9 matches

Go to advanced search

by grindstone
08 Dec 2015 10:33
Forum: Development around libVLC
Topic: control VLC from another program
Replies: 1
Views: 853

Re: control VLC from another program

Hello douglas222!

Of course you can. libVLC is made for that.

See this tutorial for the basic way to do it.

You can also control the VLC - player by another program. See this example of a video displayed inside another window, written in freeBasic.

regards
grindstone
by grindstone
28 Nov 2015 01:16
Forum: Development around libVLC
Topic: plugins path
Replies: 3
Views: 3580

Re: plugins path

You'll have to create a Windows environment variable named VLC_PLUGIN_PATH and set it to your plugin path, e.g.

Code: Select all

SetEnviron ("VLC_PLUGIN_PATH=e:\vlc-2_2_1\vlc_plugins")
regards
grindstone
by grindstone
16 Nov 2015 14:22
Forum: Development around libVLC
Topic: Libvlc : audio-filter as argument
Replies: 5
Views: 808

Re: Libvlc : audio-filter as argument

@bounty:
That's a very interesting thread! Maybe it's valuable to create libvlccore bindings for freeBasic (or maybe it's easier to use the command line args). I'll have a look at it.
by grindstone
15 Nov 2015 15:43
Forum: Development around libVLC
Topic: Libvlc : audio-filter as argument
Replies: 5
Views: 808

Re: Libvlc : audio-filter as argument

It seems to me that "--audio-filter=mono" doesn't work at all. As a workaround you can use the "transcode" - option instead: char smem_options[256]; sprintf(smem_options, "#transcode{acodec=s16l,channels=1}:duplicate{dst=display,dst=dummy}"; const char * const vlc_argv[...
by grindstone
14 Nov 2015 13:30
Forum: Development around libVLC
Topic: Ho to get raw compressed streams
Replies: 3
Views: 611

Re: Ho to get raw compressed streams

Maybe try to create the libVLC - instance with the arguments char smem_options[256]; sprintf(smem_options, "file:c:outputFile.mp3"; const char * const vlc_args[] = { "--sout", smem_options }; In my freeBasic adaption of libVLC this method works. Regards grindstone
by grindstone
13 Nov 2015 14:47
Forum: Development around libVLC
Topic: libVLC get language code from audio track
Replies: 3
Views: 894

Re: libVLC get language code from audio track

Hello Jörg! I guess for that backward assignment you have to write your own code: search the file >po\de.po< for the string >msgstr "Russisch"< . In the line above that string you'll find the english term for that language ( >msgid "Russian"< ) and one further line above the name...
by grindstone
05 Nov 2015 10:17
Forum: VLC media player for Windows Troubleshooting
Topic: How to shift a scaled video on a hooked window?
Replies: 3
Views: 455

Re: How to shift a scaled video on a hooked window?

Thank you for your answer. Replacing the scaled video within an arbitrary window would have been the easiest way to use it as one of multiple elements e.g. for a game. I guess it's time for plan B now: Removing the frame and title bar from the video window and making it a child of the game's main wi...
by grindstone
27 Oct 2015 14:43
Forum: VLC media player for Windows Troubleshooting
Topic: How to shift a scaled video on a hooked window?
Replies: 3
Views: 455

How to shift a scaled video on a hooked window?

Hello community! :) I'm actually translating the libVLC header files for freeBasic (to be honest: I'm finishing the work some other guy(s) once began). It seems to work so far, and now I'm trying to write an example code to show how one can embed a video in a random window. Hooking the video output ...

Go to advanced search