Search found 6 matches

Go to advanced search

by lokrain
21 May 2007 15:03
Forum: Web and scripting
Topic: Starting VLC = ok, but starting from PHP only works local
Replies: 22
Views: 16262

are you sure?

Care about the word fork. Anyway how did you fix the access about /dev/dvb? Can you write complete solution?
by lokrain
18 Apr 2007 10:29
Forum: Web and scripting
Topic: How to know if vlc fails from php?
Replies: 2
Views: 1475

Use proc_open() function for user interaction or system() for getting only output of vlc. system() can be combined with ob_* functions.
by lokrain
18 Apr 2007 10:26
Forum: Web and scripting
Topic: vlc - linux - php - unable to launch vlc for dvb, HELP
Replies: 5
Views: 4234

The problem is discussed here: viewtopic.php?t=30993
by lokrain
18 Apr 2007 10:22
Forum: Web and scripting
Topic: Starting VLC = ok, but starting from PHP only works local
Replies: 22
Views: 16262

Nice idea muse, vlc to be started only by root, but I think this will not be a solution. Some more deep understanding is needed here. Perhaps the solution will come with how the vlc process is forked.
by lokrain
09 Feb 2007 17:33
Forum: Web and scripting
Topic: Problem: PHP starting VLC using proc_open()
Replies: 2
Views: 2936

Problem: PHP starting VLC using proc_open()

1. PHP Code to start a stream. $path = "vlc -vvv --color --ttl 12 --ts-es-id-pid --programs=7,12 dvb: --dvb-frequency=11596000 --dvb-srate=28800000 --dvb-voltage=13 --sout-standard-access=udp --sout-standard-mux=ts --sout '#duplicate{dst=standard{dst=239.255.12.42,port=1239}, select=program=7,d...
by lokrain
09 Feb 2007 17:14
Forum: Web and scripting
Topic: Starting VLC = ok, but starting from PHP only works local
Replies: 22
Views: 16262

File Permissions

Solution:

Code: Select all

chmod +s /usr/bin/vlc
Note: Everything must be fine now. Not sure if the ' and " symbols will be executed correctly. I have problem with that, but since I start VLC as a daemon I cannot get any error output using proc_open() and stream_get_contents() functions.

Go to advanced search