- Где скачать Remote ForkPlayer для компьютера и как настроить нормальные ништяки
- Saved searches
- Use saved searches to filter your results more quickly
- bobi/ForkPlayer
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
Где скачать Remote ForkPlayer для компьютера и как настроить нормальные ништяки
Всем хорошего настроения! В этой публикации мы с вами рассмотрим одно очень интересное дополнение к популярному бесплатному виджету под названием ForkPlayer, о котором недавно уже велась беседа на блоге.
А сейчас речь пойдет о том, где можно скачать Remote ForkPlayer для компьютера и как правильно его настроить. Надо отметить, что данное расширение обладает очень даже интересными возможностями.
Как правильно установить сервер RemoteFork на компьютер
Нюансы, которые нужно знать при настройке RemoteFork`а
Итак, что же на самом деле может наше хваленое дополнение для ПК? Давайте перечислим некоторые основные достоинства. Вот они:
- Облегчает запуск определенных ресурсов в обход ДНС (не для Samsung);
- Загрузка пользовательских плейлистов в закладки виджета на телике;
- Доступ к файлам и плейлистам компьютера напрямую с телевизора;
- Просмотр торрентов онлайн с одного очень популярного трекера.
Вот смотрит автор на список выше и сразу вспоминается старый добрый аналог по имени LmodServer . Но там был платный продукт, а здесь вроде как все эти ништяки достаются пользователю на халяву.
Но давайте не будем отвлекаться от основной темы. И первым делом нужно скачать небольшой архив с файлами RemoteFork по ссылке с официального сайта :
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
bobi / ForkPlayer Public archive
RemoteFork that can be run with PHP on Linux/router/NAS.
bobi/ForkPlayer
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
##RemoteFork that can be run with PHP on Linux/router/NAS.
- Configure webserver with examples below
- Configure RemoteFork on TV to your router/NAS IP and port
- Open RemoteFork Player DLNA or you can also, click on «Перейти по адресу» and enter your http://IP:port then add address to start page
Apache config example:
Listen 89 VirtualHost *:89> Define FP_LOCAL_VIDEO_PATH /Path/to/Folder/with/videos Define FP_DOCUMENT_ROOT /Path/to/forkplayer/script DocumentRoot $ Alias "/localvideo" $ ErrorLog /Path/to/error/log/forkplayer.error.log CustomLog /Path/to/access/logs/forkplayer.access.log combined Directory $> Options Indexes FollowSymLinks AllowOverride All Require all granted Directory> Directory $> Options Indexes FollowSymLinks IndexOptions Charset=UTF-8 AllowOverride None Require all granted Directory> VirtualHost>
FP_LOCAL_VIDEO_PATH — Path to folder with videos
FP_DOCUMENT_ROOT — Path to ForkPlayer script
Change FP_LOCAL_VIDEO_PATH, FP_DOCUMENT_ROOT, Path to logs — accordintg to your router config.
nginx config example:
server < listen 89; charset utf-8; root /Path/to/forkplayer/script; index index.php; server_name localhost; add_header Access-Control-Allow-Origin *; location /localvideo < alias /Path/to/Folder/with/videos; autoindex on; > location / < rewrite ^/$ /index.php; > location /test < rewrite ^/test/?$ /test.php; > location /parserlink < rewrite ^/parserlink/?$ /parserlink.php; > location /proxym3u8 < rewrite ^/proxym3u8.*$ /proxym3u8.php; > location /treeview < rewrite ^/treeview/?$ /index.php; > location /plugin < rewrite ^/plugin/([^/]+)/?$ /index.php?plugin=$1; > location ~ .php$ < fastcgi_pass 127.0.0.1:9123; fastcgi_index index.php; fastcgi_param FP_LOCAL_VIDEO_PATH /Path/to/Folder/with/videos; include fastcgi.conf; include fastcgi_params; > >
output format:
to set default output format to json
for apache just add in .htaccess file followng code
IfModule env_module> SetEnv OUTPUT_FORMAT json IfModule>
fastcgi_param OUTPUT_FORMAT json