-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/better mobile navigation (#7)
* Better mobile navigation using swipe with mouse or touch * Spinners for indication of loading * Added FAQ
- Loading branch information
Showing
7 changed files
with
810 additions
and
465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Frequently Asked Questions | ||
|
||
- [Why use MediaWEB and not any other similar software?](#why-use-mediaweb-and-not-any-other-similar-software) | ||
- [Is MediaWEB secure?](#is-mediaweb-secure) | ||
- [How do I view my media?](#how-do-i-view-my-media) | ||
- [Why are the Video thumbnails not generated?](#why-are-the-video-thumbnails-not-generated) | ||
|
||
## Why use MediaWEB and not any other similar software? | ||
|
||
MediaWEB has no required external dependencies. This will make installation / configuration easier and less other applications consuming your resources (CPU, memory, harddrive etc.). For smaller platforms (such as Raspberry Pi, Banana Pi, ROCK64 etc.) this is is important. | ||
|
||
## Is MediaWEB secure? | ||
|
||
Yes, MediaWEB only allows read access of media files whithin your media folder. It will prohibit: | ||
|
||
* Access non-media files within your media folder | ||
* Access any file outside of your media folder | ||
|
||
If you protect your content using a username and password (enable in mediaweb.conf) you should enable TLS/HTTPS, otherwise it would be possible to sniff the network for your username and password. | ||
|
||
## How do I view my media? | ||
|
||
Unless you have changed the default port in mediaweb.conf (9834) open a web browser and enter following address: | ||
|
||
http://<hostname>:9834 | ||
|
||
For example, if your IP address is 192.168.1.104 enter: | ||
|
||
http://192.168.1.104:9834 | ||
|
||
If you need to access your images over the Internet you need to enable port forwarding in your router. | ||
|
||
## Why are the Video thumbnails not generated? | ||
|
||
Secure that you have installed [ffmpeg](https://www.ffmpeg.org/), and that you have ffmpeg in your PATH environment variable. You can test that ffmpeg is installed and your PATH environment is correctly setup by opening a shell (bash on Linux or cmd.exe on Windows) and enter: | ||
|
||
ffmpeg | ||
|
||
If ffmpeg is found it is correct. Secure that you have restarted the mediaweb service (or your computer) after the ffmpeg installation. | ||
|
||
If only some videos don't have any thumbnail it is because the video format is not supported by ffmpeg. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.