-
-
Notifications
You must be signed in to change notification settings - Fork 146
Native Dolby Vision & High-Quality Audio Support (Windows), with external player #884
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
base: develop
Are you sure you want to change the base?
Changes from 2 commits
dccd8b7
62aa600
9c890e4
37f942f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -138,6 +138,44 @@ class _PlayerSettingsPageState extends ConsumerState<PlayerSettingsPage> { | |
| ], | ||
| ), | ||
| const SizedBox(height: 12), | ||
| if (Platform.isWindows) | ||
| ...settingsListGroup( | ||
| context, | ||
| SettingsLabelDivider(label: context.localized.dvPlayerSelectionTitle), | ||
| [ | ||
| SettingsListTile( | ||
| label: Text(context.localized.dvPlayerSelectionTitle), | ||
| subLabel: Text(context.localized.dvPlayerSelectionDesc), | ||
| trailing: EnumBox( | ||
| current: videoSettings.dvPlayerChoice.label(context), | ||
| itemBuilder: (context) => DVPlayerChoice.values | ||
| .map( | ||
| (entry) => ItemActionButton( | ||
| label: Text(entry.label(context)), | ||
| action: () => provider.setDVPlayerChoice(entry), | ||
| ), | ||
|
Comment on lines
+142
to
+149
|
||
| ) | ||
| .toList(), | ||
| ), | ||
| ), | ||
| AnimatedFadeSize( | ||
| child: Column( | ||
| children: [ | ||
| SettingsMessageBox( | ||
| context.localized.dvEnableInstruction, | ||
| messageType: MessageType.info, | ||
| ), | ||
| const SizedBox(height: 8), | ||
| SettingsMessageBox( | ||
| context.localized.dvSyncWarning, | ||
| messageType: MessageType.warning, | ||
| ), | ||
| ], | ||
| ), | ||
| ), | ||
| ], | ||
| ), | ||
| const SizedBox(height: 12), | ||
| ...settingsListGroup(context, SettingsLabelDivider(label: context.localized.mediaSegmentActions), [ | ||
| ...videoSettings.segmentSkipSettings.entries.sorted((a, b) => b.key.index.compareTo(a.key.index)).map( | ||
| (entry) => Padding( | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.