-
-
Notifications
You must be signed in to change notification settings - Fork 495
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
Initial video support in playback rewrite #3557
Conversation
@@ -53,17 +60,30 @@ | |||
).show() | |||
Timber.i(item.toString()) | |||
|
|||
// TODO: Create queue, send to new playback manager, start new player UI | |||
finishAfterTransition() | |||
// TODO: Dirty hack to create a single item queue |
Check warning
Code scanning / detekt
Flags a forbidden comment. Warning
} | ||
} | ||
|
||
// TODO: Dirty hack to display surface |
Check warning
Code scanning / detekt
Flags a forbidden comment. Warning
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.
Should this be behind a "Use new video player backend" flag?
#2455 👀 |
These are the initial changes to get video playback working. Currently only direct-play is actually functional and you need to make sure your media can play yourself as codec detection is not working.
When media does play it already integrates with remote control and media sessions. Playback progress is also properly tracked. There are also funny bugs, like the screensaver showing the video your playing because we don't filter for music only.
Also, no subtitles at all right now.
Changes
Issues
Part of #1057