Php - add video to php

how can i add ffplay.exe (ffmpeg) video in php script. can i use exec()to access ffplay.

+3
source share
3 answers

You cannot play videos using PHP. You need to insert it somehow. This is usually done with a flash. Try jwplayer .

+2
source

If you want to process video in PHP, you can probably do something like this.

, PHP , . Flash, Silverlight HTML 5, PHP .

+1

you can use exec () to execute ffplay.exe, and there are several other commands for executing external PHP programs. See: http://www.chipmunkninja.com/Program-Execution-in-PHP: -exec-m @

0
source

Source: https://habr.com/ru/post/1751711/


All Articles