Search found 38 matches

Go to advanced search

by jml674
18 Dec 2012 09:40
Forum: Scripting VLC in lua
Topic: Adding items with multiple options to the playlist
Replies: 2
Views: 1471

Re: Adding items with multiple options to the playlist

After a long night of head-scratching, it is in fact possible:

"http://../status.json?command=in_play&input=dvbt://frequency=562000&option=:program=257&option:meta-title=test"
by jml674
18 Dec 2012 00:06
Forum: Scripting VLC in lua
Topic: Adding items with multiple options to the playlist
Replies: 2
Views: 1471

Adding items with multiple options to the playlist

Hey, I'm trying to add items to a remote vlc server playlist using the LUA http request. I managed to add the following item: "http://192.168.1.3/requests/status.json?command=in_play&input=dvbt://frequency=562000&option=:program=257" I'm now trying to add multiple options but the L...
by jml674
20 Jun 2012 07:51
Forum: Development around libVLC
Topic: Undefined reference to __sync_fetch_and_add_4
Replies: 9
Views: 1762

Re: Undefined reference to __sync_fetch_and_add_4

Figured it out: adding CFLAG env (-march=pentium4) before running configure script.
by jml674
19 Jun 2012 18:50
Forum: Development around libVLC
Topic: Undefined reference to __sync_fetch_and_add_4
Replies: 9
Views: 1762

Re: Undefined reference to __sync_fetch_and_add_4

Sorry to be a pain but I ran into same issue, can you explicitly describe where/how you set the march flag ?

thanks in advance !
by jml674
16 May 2012 08:15
Forum: General VLC media player Troubleshooting
Topic: RC playlist return message format
Replies: 1
Views: 211

RC playlist return message format

Quick question regarding utilization of HTTP rc interface: is the playlist format below returned by playlist.json obeying any particular standard (RFC) ? { "ro":"rw", "type":"node", "name":"Indfini", "id":"1", "chil...
by jml674
25 Apr 2012 19:28
Forum: General VLC media player Troubleshooting
Topic: playlist item name setting from command line
Replies: 2
Views: 658

Re: playlist item name setting from command line

Yeap but when you use a playlist file, you can't trnascode/stream/etc... anymore....

to give you more insight, the whole thing is about controlling a vlc streaming dvbt server from rc interface with a pc-tablet, smartphone

thanks for the help !
by jml674
24 Apr 2012 21:41
Forum: General VLC media player Troubleshooting
Topic: playlist item name setting from command line
Replies: 2
Views: 658

playlist item name setting from command line

I would like to know the command-line equivalent of - the vlc GUI "playlist/information/write metadata title" - or in javascript vlc.playlist.add("dvb-t://frequency=586000",NAME,""); to set the playlist item name from the command line I managed to get it with the :meta-...
by jml674
28 Mar 2012 22:08
Forum: General VLC media player Troubleshooting
Topic: Selecting a particular language subtitle
Replies: 3
Views: 744

Re: Selecting a particular language subtitle

I found a partial solution using the --sout-all option: vlc dvb-t://frequency=506000000 :program=519 --sout-all --sout="#duplicate{dst=std{access=file,mux=ts,dst='C:\User\test.mp4'},select="program=519"}" I have now all audio,subtitle elementary streams captured in the file. The ...
by jml674
27 Mar 2012 23:32
Forum: General VLC media player Troubleshooting
Topic: Selecting a particular language subtitle
Replies: 3
Views: 744

Re: Selecting a particular language subtitle

Any suggestion how to capture ALL subtitle tracks and ALL audio tracks using something like such as: vlc dvb-t://frequency=506000000 --sout="#duplicate{dst=std{access=file,mux=ts,dst='C:\Users\Videos\test.mp4'},dst=display,select="program=519,es=1-1000"}" and get a file which con...
by jml674
02 Feb 2012 18:12
Forum: Development around libVLC
Topic: Accessing title of current item being played
Replies: 4
Views: 567

Re: Accessing title of current item being played

All meta information is now available in VLC 2.0 thru the mediaDescription object.
For more info, please check http://wiki.videolan.org/Documentation:WebPlugin.
by jml674
02 Feb 2012 18:10
Forum: VLC media player for Windows Troubleshooting
Topic: Check Mozilla Plugin while installation
Replies: 4
Views: 492

Re: Check Mozilla Plugin while installation

This was introduced in VLC 2.0 thru commita12ca580c66127ea99fd7dc47c42c636a5dd5b75 by RSAtom

thanks Sergei !
by jml674
16 Jan 2012 23:26
Forum: General VLC media player Troubleshooting
Topic: Selecting a particular language subtitle
Replies: 3
Views: 744

Selecting a particular language subtitle

I'm doing SCHEDULED recordings of DVB-T program and need pre-selected subtitles to be picked using the option "--sub-language fr" to select french subtitle track. however the DVB-T media I'm capturing has 2 "french" tracks (the one for deaf people and the one I'm after in second ...
by jml674
07 Jan 2012 13:01
Forum: VLC media player for Windows Troubleshooting
Topic: Using a file instead of specifiying command line options
Replies: 2
Views: 244

Re: Using a file instead of specifiying command line options

.bat is indeed a generic solution. In my case, I finally discovered the XML format that which is an even better solution I can use with the schtasks vista/windows7 command.

thanks for the help though.
by jml674
25 Dec 2011 19:53
Forum: VLC media player for macOS Troubleshooting
Topic: VLC plugin
Replies: 25
Views: 45266

Re: VLC plugin

Hello j-b

what's the estimation to get a mac OS plugon working under Lion ? (1.2 release ?)

thanks, Jean-Michel
by jml674
22 Dec 2011 14:33
Forum: Web and scripting
Topic: vlc.addEventListener does not fire any event
Replies: 32
Views: 12885

Re: vlc.addEventListener does not fire any event

Not sure. Troubleshooting the code, I was able to evidence: - the events are properly registered in the vlc internal structure - they are properly fired within vlc thread - however and despite the fact the propper callback function address is used when the event fires, the call has not effect within...
by jml674
20 Dec 2011 23:50
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

OK finally successful. thanks for the help.
To summarize:
1/ Install vlc1.2 git, compile and install
2/ install mozilla plugin git (git clone git://git.videolan.org/npapi-vlc.git)
2.1/ run autogen.sh
2.2/ run configure
2.3/ make
2.4/ make install
by jml674
20 Dec 2011 18:46
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

bootstrap is not delivered by the plugin git. Can I find it somewhere ?
Sorry to be a burden.
by jml674
20 Dec 2011 16:28
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

Can I use the configure shell given with the vlc1.2 repo (none is delivered with the plugin repo) ?
by jml674
20 Dec 2011 16:03
Forum: Web and scripting
Topic: vlc.addEventListener does not fire any event
Replies: 32
Views: 12885

Re: vlc.addEventListener does not fire any event

Hello, I'm currently trying to understand what's going on with on with the AddEventListener method of the 1.1 plugin with FIREFOX. A few preliminary remarks: - it does not fire the handler you specify although most of the code seems to work fine. - for a successful registration , you need to have th...
by jml674
20 Dec 2011 14:53
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

Understood , which goes back to square 0: how do I compile the plugin repository ?
by jml674
20 Dec 2011 10:01
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

Except that Make does not build libvlcplugin.so ....
by jml674
19 Dec 2011 18:22
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

Sorry I thought the Makefile would be more usefull. Here is the make result: make all-recursive make[1]: Entering directory `/home/patching/vlc-source/vlc-1.2' Making all in compat make[2]: Entering directory `/home/patching/vlc-source/vlc-1.2/compat' make all-am make[3]: Entering directory `/home/p...
by jml674
19 Dec 2011 11:26
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

Here is the beginning of Makefile ( I could not find a way to attach it):

-- Edited (useless)
by jml674
19 Dec 2011 11:12
Forum: Web and scripting
Topic: Problem compiling mozilla plugin (solved)
Replies: 15
Views: 1395

Re: Problem compiling mozilla plugin

vlc-1.2 is the top of the repository
in vlc-1.2/projects/ I have gitted'in the npapi git rep.
so I obtain vlc-1-2/npapi-vlc rep.

I understood the top Makefile does not include projects compilation (by comparing previous 1.1 version of it)

Go to advanced search