-
-
Notifications
You must be signed in to change notification settings - Fork 77
show video filter #392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show video filter #392
Conversation
Signed-off-by: Jakob Röhrl <[email protected]>
Signed-off-by: Jakob Röhrl <[email protected]>
Signed-off-by: Jakob Röhrl <[email protected]>
| async onlyPhotos() { | ||
| // reset component | ||
| this.resetState() | ||
| // content is completely different | ||
| this.$emit('update:loading', true) | ||
| this.fetchContent() | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could maybe merge the three duplicate functions into one method?
|
With having a specific video view, the issue of the videos not having previews becomes a much bigger problem. Is it possible to get any kind of preview at all out of the videos here? Otherwise a specific video view doesn’t seem that much of an enhancement, if it’s just all loading filetype icons and then you need to get lucky to find the correct video. ;) (Actually it makes it a less good UX since it pushes a shortcoming of Photos into the forefront.) |
On my productive system I have no problems with missing video previews. It's only on the dev system. |
Nope, it all depends on your setup. If you have video previews properly setup :/ |
|
Todo: consider installing the app preview generator for showing video previews here |
|
@jakobroehrl rather, I would say to only show the split "Your photos" and "Your videos" view when that preview generator is installed and configured. If it is not, then the videos view is not so useful and we only need the Timeline, and the notice about previews can be shown to admins either:
|
|
Note: The video preview might be disabled even if the preview generator app is enabled. The underling problem was, that most video codecs are not opensource and therefore not shipped with many distributions. Even installing ffmpeg is not sufficient, if the codecs are missing. In short I think it will be hard to check if video previews are available and working on a system. |
@rullzer is this feasible to create a setting that checks each provider and if it's properly working? |
Not really. You actually need to encode something and check if the result is correct. Which is almost impossible. |
|
Sad, but then let's close this PR |
Signed-off-by: Jakob Röhrl [email protected]
#277