how to stream video from FTP in PHP

2020-08-02 07:12发布

is there any way, how to play movie or get some file (ex. jpg, pdf) from distance FTP server? I've got an app on my PHP server and really lot of bigsized files, so I store it on FTP. I need to play (videos are the biggest problem) these videos via that app... I've found ftp_get() function, but it seems to work like - "copy this file to my php server and than play",... it's not acceptable for long time. Any ideas/solutions? PS: excuse me my english and maybe not so detailed description.

标签: php ftp stream
1条回答
我想做一个坏孩纸
2楼-- · 2020-08-02 07:28

FTP is a file transfer protocol so it's not the right tool.

Few ways to do it:

  1. PHP HTML5 Video Streaming Tutorial (PHP stream)
  2. Pseudo Streaming MP4’s with PHP
  3. Streaming a large file using PHP
查看更多
登录 后发表回答