mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
added setting for skip op and changed key for player seek amount
This commit is contained in:
parent
60bcbf0060
commit
8fa00f4ca9
3 changed files with 112 additions and 94 deletions
|
@ -187,6 +187,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
|||
),
|
||||
)
|
||||
}
|
||||
|
||||
if (!sameEpisode)
|
||||
player.addTimeStamps(listOf()) // clear stamps
|
||||
}
|
||||
|
@ -874,6 +875,14 @@ class GeneratorPlayer : FullScreenPlayer() {
|
|||
if (duration <= 0L) return // idk how you achieved this, but div by zero crash
|
||||
if (!hasRequestedStamps) {
|
||||
hasRequestedStamps = true
|
||||
val fetchStamps = context?.let { ctx ->
|
||||
val settingsManager = PreferenceManager.getDefaultSharedPreferences(ctx)
|
||||
settingsManager.getBoolean(
|
||||
ctx.getString(R.string.enable_skip_op_from_database),
|
||||
true
|
||||
)
|
||||
} ?: true
|
||||
if (fetchStamps)
|
||||
viewModel.loadStamps(duration)
|
||||
}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<string name="pip_enabled_key" translatable="false">pip_enabled_key</string>
|
||||
<string name="double_tap_enabled_key" translatable="false">double_tap_enabled_key</string>
|
||||
<string name="double_tap_pause_enabled_key" translatable="false">double_tap_pause_enabled_key</string>
|
||||
<string name="double_tap_seek_time_key" translatable="false">double_tap_seek_time_key</string>
|
||||
<string name="double_tap_seek_time_key" translatable="false">double_tap_seek_time_key2</string>
|
||||
<string name="swipe_vertical_enabled_key" translatable="false">swipe_vertical_enabled_key</string>
|
||||
<string name="autoplay_next_key" translatable="false">autoplay_next_key</string>
|
||||
<string name="display_sub_key" translatable="false">display_sub_key</string>
|
||||
|
@ -57,6 +57,7 @@
|
|||
<string name="filter_sub_lang_key" translatable="false">filter_sub_lang_key</string>
|
||||
<string name="pref_filter_search_quality_key" translatable="false">pref_filter_search_quality_key</string>
|
||||
<string name="enable_nsfw_on_providers_key" translatable="false">enable_nsfw_on_providers_key</string>
|
||||
<string name="enable_skip_op_from_database" translatable="false">enable_skip_op_from_database</string>
|
||||
|
||||
<!-- FORMAT MIGHT TRANSLATE, WILL CAUSE CRASH IF APPLIED WRONG -->
|
||||
<string name="extra_info_format" formatted="true" translatable="false">%d %s | %s</string>
|
||||
|
@ -650,4 +651,6 @@
|
|||
|
||||
<string name="clear_history">Clear history</string>
|
||||
<string name="history">History</string>
|
||||
<string name="enable_skip_op_from_database_des">Show skip popups for opening/ending</string>
|
||||
|
||||
</resources>
|
||||
|
|
|
@ -2,125 +2,131 @@
|
|||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<Preference
|
||||
android:icon="@drawable/ic_outline_subtitles_24"
|
||||
android:key="@string/subtitle_settings_key"
|
||||
android:title="@string/player_subtitles_settings"
|
||||
android:icon="@drawable/ic_outline_subtitles_24"
|
||||
app:summary="@string/player_subtitles_settings_des" />
|
||||
<Preference
|
||||
android:icon="@drawable/ic_outline_subtitles_24"
|
||||
android:key="@string/subtitle_settings_chromecast_key"
|
||||
android:title="@string/chromecast_subtitles_settings"
|
||||
android:icon="@drawable/ic_outline_subtitles_24"
|
||||
app:summary="@string/chromecast_subtitles_settings_des" />
|
||||
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_hd_24"
|
||||
android:key="@string/quality_pref_key"
|
||||
android:title="@string/watch_quality_pref"
|
||||
android:icon="@drawable/ic_baseline_hd_24" />
|
||||
android:title="@string/watch_quality_pref" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/netflix_play"
|
||||
android:key="@string/player_pref_key"
|
||||
android:title="@string/player_pref"
|
||||
android:icon="@drawable/netflix_play" />
|
||||
android:title="@string/player_pref" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_text_format_24"
|
||||
android:key="@string/prefer_limit_title_key"
|
||||
android:title="@string/limit_title"
|
||||
android:icon="@drawable/ic_baseline_text_format_24" />
|
||||
android:title="@string/limit_title" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_text_format_24"
|
||||
android:key="@string/prefer_limit_title_rez_key"
|
||||
android:title="@string/limit_title_rez"
|
||||
android:icon="@drawable/ic_baseline_text_format_24" />
|
||||
android:title="@string/limit_title_rez" />
|
||||
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_picture_in_picture_alt_24"
|
||||
app:key="@string/pip_enabled_key"
|
||||
android:title="@string/picture_in_picture"
|
||||
android:summary="@string/picture_in_picture_des"
|
||||
app:defaultValue="true" />
|
||||
android:title="@string/picture_in_picture"
|
||||
app:defaultValue="true"
|
||||
app:key="@string/pip_enabled_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_aspect_ratio_24"
|
||||
app:key="@string/player_resize_enabled_key"
|
||||
android:title="@string/player_size_settings"
|
||||
android:summary="@string/player_size_settings_des"
|
||||
app:defaultValue="true" />
|
||||
android:title="@string/player_size_settings"
|
||||
app:defaultValue="true"
|
||||
app:key="@string/player_resize_enabled_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_speed_24"
|
||||
app:key="@string/playback_speed_enabled_key"
|
||||
android:title="@string/eigengraumode_settings"
|
||||
android:summary="@string/eigengraumode_settings_des"
|
||||
app:defaultValue="false" />
|
||||
android:title="@string/eigengraumode_settings"
|
||||
app:defaultValue="false"
|
||||
app:key="@string/playback_speed_enabled_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_ondemand_video_24"
|
||||
app:key="@string/swipe_enabled_key"
|
||||
android:title="@string/swipe_to_seek_settings"
|
||||
android:summary="@string/swipe_to_seek_settings_des"
|
||||
app:defaultValue="true" />
|
||||
android:title="@string/swipe_to_seek_settings"
|
||||
app:defaultValue="true"
|
||||
app:key="@string/swipe_enabled_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_ondemand_video_24"
|
||||
app:key="@string/swipe_vertical_enabled_key"
|
||||
android:title="@string/swipe_to_change_settings"
|
||||
android:summary="@string/swipe_to_change_settings_des"
|
||||
app:defaultValue="true" />
|
||||
android:title="@string/swipe_to_change_settings"
|
||||
app:defaultValue="true"
|
||||
app:key="@string/swipe_vertical_enabled_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_skip_next_24"
|
||||
app:key="@string/autoplay_next_key"
|
||||
android:title="@string/autoplay_next_settings"
|
||||
android:summary="@string/autoplay_next_settings_des"
|
||||
app:defaultValue="true" />
|
||||
android:title="@string/autoplay_next_settings"
|
||||
app:defaultValue="true"
|
||||
app:key="@string/autoplay_next_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_skip_next_24"
|
||||
android:title="@string/video_skip_op"
|
||||
app:defaultValue="true"
|
||||
android:summary="@string/enable_skip_op_from_database_des"
|
||||
app:key="@string/enable_skip_op_from_database" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/ic_baseline_touch_app_24"
|
||||
app:key="@string/double_tap_enabled_key"
|
||||
android:title="@string/double_tap_to_seek_settings"
|
||||
android:summary="@string/double_tap_to_seek_settings_des"
|
||||
app:defaultValue="false" />
|
||||
android:title="@string/double_tap_to_seek_settings"
|
||||
app:defaultValue="false"
|
||||
app:key="@string/double_tap_enabled_key" />
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/netflix_pause"
|
||||
app:key="@string/double_tap_pause_enabled_key"
|
||||
android:title="@string/double_tap_to_pause_settings"
|
||||
android:summary="@string/double_tap_to_pause_settings_des"
|
||||
app:defaultValue="false" />
|
||||
android:title="@string/double_tap_to_pause_settings"
|
||||
app:defaultValue="false"
|
||||
app:key="@string/double_tap_pause_enabled_key" />
|
||||
|
||||
<SeekBarPreference
|
||||
app:icon="@drawable/go_forward_30"
|
||||
app:adjustable="true"
|
||||
android:defaultValue="10"
|
||||
android:max="60"
|
||||
android:title="@string/double_tap_to_seek_amount_settings"
|
||||
app:adjustable="true"
|
||||
app:defaultValue="10"
|
||||
app:icon="@drawable/go_forward_30"
|
||||
app:key="@string/double_tap_seek_time_key"
|
||||
app:min="5"
|
||||
app:seekBarIncrement="5"
|
||||
app:showSeekBarValue="true"
|
||||
android:max="60"
|
||||
app:key="@string/double_tap_seek_time_key"
|
||||
android:title="@string/double_tap_to_seek_amount_settings"
|
||||
app:defaultValue="false" />
|
||||
app:showSeekBarValue="true" />
|
||||
|
||||
<SwitchPreference
|
||||
android:icon="@drawable/baseline_sync_24"
|
||||
app:key="@string/episode_sync_enabled_key"
|
||||
android:title="@string/episode_sync_settings"
|
||||
android:summary="@string/episode_sync_settings_des"
|
||||
app:defaultValue="true" />
|
||||
android:title="@string/episode_sync_settings"
|
||||
app:defaultValue="true"
|
||||
app:key="@string/episode_sync_enabled_key" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_storage_24"
|
||||
android:key="@string/video_buffer_disk_key"
|
||||
android:title="@string/video_buffer_disk_settings"
|
||||
android:summary="@string/video_disk_description"
|
||||
android:icon="@drawable/ic_baseline_storage_24" />
|
||||
android:title="@string/video_buffer_disk_settings" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_storage_24"
|
||||
android:key="@string/video_buffer_size_key"
|
||||
android:title="@string/video_buffer_size_settings"
|
||||
android:summary="@string/video_ram_description"
|
||||
android:icon="@drawable/ic_baseline_storage_24" />
|
||||
android:title="@string/video_buffer_size_settings" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_storage_24"
|
||||
android:key="@string/video_buffer_length_key"
|
||||
android:title="@string/video_buffer_length_settings"
|
||||
android:summary="@string/video_ram_description"
|
||||
android:icon="@drawable/ic_baseline_storage_24" />
|
||||
android:title="@string/video_buffer_length_settings" />
|
||||
|
||||
<Preference
|
||||
android:icon="@drawable/ic_baseline_delete_outline_24"
|
||||
android:key="@string/video_buffer_clear_key"
|
||||
android:title="@string/video_buffer_clear_settings"
|
||||
android:icon="@drawable/ic_baseline_delete_outline_24" />
|
||||
android:title="@string/video_buffer_clear_settings" />
|
||||
</PreferenceScreen>
|
Loading…
Reference in a new issue