Good day!
We have a TV with compact PC with Mint 19. On the PC installed VLC player. We need to make it to automatically play video from a directory, automatically refresh list of files and play it. But now I just made 10 files named "1.mp4" to "10.mp4" and replace old files with new ones. It not practical. How I can configure VLC player to autorefresh the playlist or what videoplayer can be configured like that way?
Доброго дня!
Такая ситуация: есть телевизор, к которому подключен неттоп с Минт 19. Установлен VLC плеер. Нужно заставить его автоматически обновлять список воспроизведения видеофайлов из папки. То есть ответственный пользователь кидает файл в папку, плеер подтянул его и поставил в очередь воспроизведения. Или удалил файл и плеер так же удалил его из списка. Или может есть какой-то иной плеер с такой возможностью?
На данный момент сделано так: есть папка с 10 файлами, проименованными "1.mp4" до "10.mp4". И мы просто заменяем старые файлы новыми. Это неудобно и негибко. Можно ли как-то соответственно настроить VLC или использовать альтернативный плеер?
Videoplayer with automatic playlist refreshing. Видеоплеер с автоматическим обновлением плейлиста.
Forum rules
Before you post please read how to get help
Before you post please read how to get help
- administrollaattori
- Level 15
- Posts: 5718
- Joined: Tue Sep 03, 2013 4:51 am
- Location: Finland
- Contact:
Re: Videoplayer with automatic playlist refreshing. Видеоплеер с автоматическим обновлением плейлиста.
Ohhh...
It's obvious that we use that button.
Please, reread my message above, I said we need to update the list of videofiles in a folder. I delete or add a video and player should automatically refresh the playlist.
- administrollaattori
- Level 15
- Posts: 5718
- Joined: Tue Sep 03, 2013 4:51 am
- Location: Finland
- Contact:
Re: Videoplayer with automatic playlist refreshing. Видеоплеер с автоматическим обновлением плейлиста.
Make a script like:
Code: Select all
#! /bin/bash
find $HOME/Videos -type f -exec vlc -L '{}' +
Code: Select all
chmod +x thescript.sh