Skip to content

Commit

Permalink
Add new FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
derneuere authored May 6, 2024
1 parent 3094d67 commit 26f724d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/user-guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,24 @@ You can set the scan directory as read-only, but then a couple of features will
- Deleting images

This is not yet handled gracefully, which means, you will probably just get non-descriptive errors, when you are trying to use these features.

## Videos are not playing and showing a 404 error

### Reason 1:
The video may be encoded in h.265 format, which is not supported by your browser. You can enable "Always transcode videos" under Experimental Settings to resolve this issue. On the other hand, this will be quite CPU heavy.

### Reason 2:
The issue could be caused by incorrect file permissions. You can resolve this by adjusting the permissions using the following commands:

```
find . -type d -exec chmod 755 {} +
find . -type f -exec chmod 644 {} +
```

These commands will ensure that directories have permissions set to 755 and files have permissions set to 644, which should resolve any permission-related issues causing the 404 error.






0 comments on commit 26f724d

Please sign in to comment.