Search found 35 matches

Go to advanced search

by jack.ting
25 Oct 2012 10:34
Forum: Web and scripting
Topic: Playing local files with the VLC Web Plugin
Replies: 9
Views: 28675

Re: Playing local files with the VLC Web Plugin

I use following code to the get current directory name and append a subfolder name to it.
Maybe you can modify it to fit your needs.

Code: Select all

var vLoc = window.location.href ; var vBase = vLoc.substr(0, vLoc.lastIndexOf("/", vLoc.lastIndexOf("/")-1)+1) + "Video/" ;
by jack.ting
13 Jun 2011 06:04
Forum: Web and scripting
Topic: vlc.addEventListener does not fire any event
Replies: 32
Views: 13539

Re: vlc.addEventListener does not fire any event

Hi cabana80, Sorry, for late respond. I use still using 3.6.15. the complete example as the following function regVLCEvent(tobj, type, func) { if (tobj.attachEvent) tobj.attachEvent(type, func); // else if (tobj.addEventListener) // tobj.addEventListener(type, func, true); else tobj["on" +...
by jack.ting
13 Jun 2011 05:11
Forum: Web and scripting
Topic: Control Mute in VLC plugin
Replies: 2
Views: 1856

Re: Control Mute in VLC plugin

Hi, there: I don't know what happen when you have multiple instance of the same html page. But, I'm sure that why it did not work on multiple instance of VLC on the same html page. You shuld add an "ID" tag with different value to distinguish each vlc-plugin instance. otherwise, the javasc...
by jack.ting
21 Mar 2011 13:08
Forum: Web and scripting
Topic: Overlay with the Python Bindings
Replies: 2
Views: 798

Re: Overlay with the Python Bindings

Hello, Sorry, I'm not familiar with Python. But I see your posted video, it seems like the events are not processed smoothly. And I see that you've some codes that processing the slider bar. I don't know wheather your CPU/GPU is powerfull enough to handle it. (I've simular problem when using my 4 ye...
by jack.ting
21 Mar 2011 10:03
Forum: Web and scripting
Topic: VLC button on website
Replies: 1
Views: 1241

Re: VLC button on website

Hi, majidemo: I do not think VLC now can support the similar function like what have been done on cacaoweb.org. It's a P2P feature, so they use "a proprietary client" software to play the video. But, it's possible if they implement the client into a service that will translate the download...
by jack.ting
21 Mar 2011 08:04
Forum: Web and scripting
Topic: vlc.playlist.play() undefined... why??
Replies: 2
Views: 2249

Re: vlc.playlist.play() undefined... why??

Hi, SteveRicketts: My javascript can fine work with IE and FF. I use document.write() to create the VLC instance. And on the onload event of the web page, add items to playlist (by vlc.playlist.add()), then start to play them by register a SetTimeout(). function WriteVLC(str, xsz, ysz) { // for nets...
by jack.ting
21 Mar 2011 07:48
Forum: Web and scripting
Topic: Events firing but no event data, how do I get it
Replies: 1
Views: 590

Re: Events firing but no event data, how do I get it

Hi, SteveRicketts: I've the same problem of identifing the event source, too. And, it seems there's no related discussion of such topic. (I've posted one on the windows related board, but got no answer) Since that I only want to catch/process one event (the 'MediaPlayerEndReached'), so instead I che...
by jack.ting
16 Mar 2011 06:32
Forum: Web and scripting
Topic: Program freezes when calling stop in MediaPlayerEndReached
Replies: 5
Views: 2259

Re: Program freezes when calling stop in MediaPlayerEndReach

Sorry, that's my question, too.

I'm trying to digging more information the source code.
But currently, I'm focus on something else, I just could spend few time on it.
by jack.ting
16 Mar 2011 06:25
Forum: Web and scripting
Topic: Recording from Dreambox to PC
Replies: 9
Views: 3316

Re: Recording from Dreambox to PC

Hey Candid:

Can you view the video ?
You should make sure you can receive/view the video first.
by jack.ting
14 Mar 2011 11:37
Forum: Web and scripting
Topic: Strange input.time
Replies: 4
Views: 2611

Re: Strange input.time

Sorry, I double check the problem, and find that: The trobule comes from the source video clip with incorrect time stamp. A. the video clip of avi and mp4 that I said can scroll smoothly are generated/converted from my camcoder, and not edited. (so the time stamp is correct). B. the problem ones are...
by jack.ting
14 Mar 2011 11:18
Forum: Web and scripting
Topic: how to select camera to view
Replies: 1
Views: 540

Re: how to select camera to view

basicly, you need to read the document of web scripting "http://wiki.videolan.org/Documentation:WebPlugin".
by jack.ting
14 Mar 2011 11:00
Forum: Web and scripting
Topic: help in browser plugin.
Replies: 2
Views: 822

Re: help in browser plugin.

Hi, tkhtx1: Both the activeX for IE and plugin for Firefox can work fine, but with some limitation. the main problem is "<param name=... value=...>" are not well documented, and most of them are not workable. so the better way now is to add some extra code of javascript to change it. Your ...
by jack.ting
14 Mar 2011 10:46
Forum: Web and scripting
Topic: VLC Player on the website app
Replies: 2
Views: 1287

Re: VLC Player on the website app

OK,

you can use the code posted on "video image stays on browser window when tabbed" by "richard6235".
just do some modify the URI added on the fninit() to your URI ("rtsp://192.168.1.168/Video").
by jack.ting
14 Mar 2011 08:26
Forum: Web and scripting
Topic: Strange input.time
Replies: 4
Views: 2611

Re: Strange input.time

Hi, do you noticed that even the slide bar of VLC player interface can not control the video position very well. Especially on the RMVB and MOD format, it will jump back after you relese the scroller. but, avi (Xvid or DivX) and mp4 (H.264) format is ok, will not jump back. And its not the problem o...
by jack.ting
14 Mar 2011 08:15
Forum: Web and scripting
Topic: video image stays on browser window when tabbed
Replies: 1
Views: 855

Re: video image stays on browser window when tabbed

Hey, I test it on 2 XP boxes (one with hardware GPU accelerate) with IE8 and firefox, both of them work fine (with my test vidio clip (avi file)). I think maybe it's the GPU driver or the codec implement problem. To identify the problem, you could test it on some other PC, and change the code to pla...
by jack.ting
14 Mar 2011 07:31
Forum: Web and scripting
Topic: Recording from Dreambox to PC
Replies: 9
Views: 3316

Re: Recording from Dreambox to PC

There's a "Record" button in "advanced control" tool bar. You can enable it under "view" menu item.
by jack.ting
14 Mar 2011 07:04
Forum: Web and scripting
Topic: Program freezes when calling stop in MediaPlayerEndReached
Replies: 5
Views: 2259

Re: Program freezes when calling stop in MediaPlayerEndReach

Hey, I've the same trouble experience on javascript programming. Here's what I found and my suggestion: 1. there's no need to call "playlist->stop()" at all, it will stop automaticlly (no matter it's the last item of the playlist or not). 2. It seems that the "MediaPlayerEndReached&qu...
by jack.ting
20 Feb 2011 08:57
Forum: Web and scripting
Topic: skip to next playlist item not working!!!
Replies: 6
Views: 2942

Re: skip to next playlist item not working!!!

The return value of vlc.playlist.add() is the index number of the item you just added, basically it's number that count from 0. So the first time when vlc.playlist.add() valled it will return 0, and second time it returns 1, ... and os on (of course, you have to make sure to calear the playlist firs...
by jack.ting
18 Feb 2011 10:23
Forum: Web and scripting
Topic: Playlist Uploader?
Replies: 2
Views: 725

Re: Playlist Uploader?

Which do you want ?
A. a select lists, choose to select the one you want to play.
B. a preloaded channel list, click 'next' or 'prev' to play. (I've write a sample for this)
C. items with check box, click to pick some, then do what B. is doing.
by jack.ting
18 Feb 2011 10:06
Forum: Web and scripting
Topic: skip to next playlist item not working!!!
Replies: 6
Views: 2942

Re: skip to next playlist item not working!!!

Sorry, its my debug code. just remove it.
by jack.ting
18 Feb 2011 10:00
Forum: Web and scripting
Topic: Showing image at end of mp4 video
Replies: 1
Views: 550

Re: Showing image at end of mp4 video

Hi fazich:
You're not using the vlc player plugin, it's quicktime player plugin.
Ask APPLE instead.
by jack.ting
18 Feb 2011 09:20
Forum: Web and scripting
Topic: skip to next playlist item not working!!!
Replies: 6
Views: 2942

Re: skip to next playlist item not working!!!

Hi, there: I check your script, and you've something missunderstood about the VLC webpage plugin. 1. The ID of your vlc player instance is 'vlc' (described in <embed>). But you use 'vlc0', 'vlc1' to operate it. (described in getElementById(), so you've to change it. 2. since there's just one player ...
by jack.ting
10 Feb 2011 10:33
Forum: Web and scripting
Topic: UNC File won't play in embedded control
Replies: 3
Views: 1214

Re: UNC File won't play in embedded control

If you are accessing by windows share, you better make a driver map, then use something like "f:\folder\folder\filename.ext". or something like "file:///f:/folder/folder/filename.ext" (sure, 3 "/" after "file:" ) or try something like "file:///server/shar...
by jack.ting
10 Feb 2011 10:17
Forum: Web and scripting
Topic: VLC mozilla plugin nowhere to be found
Replies: 2
Views: 9738

Re: VLC mozilla plugin nowhere to be found

Hi, I got the same problem before, with some days of hard works, today I can make it work. A. First of all the install of ActiveX or mozilla plugin works fine, just click it when you install VLC. (I tried on VLC win32 1.1.5~) B. Second, if it does not work, generally it's the problem of the html or ...
by jack.ting
10 Feb 2011 08:46
Forum: Web and scripting
Topic: vlc.addEventListener does not fire any event
Replies: 32
Views: 13539

Re: vlc.addEventListener does not fire any event

Hi, there: I found that the FireFox bowser has trouble on "addEventListener()" function. The vlc.addEventListener does exist, but the Event Handler can not registered successfully, so... You've to fall back to DOM Level 0. Modily the registerVLCEvent() function as follow, pls. var register...

Go to advanced search