mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-22 11:02:35 +01:00
fix conflict
This commit is contained in:
commit
9484a5e2ee
@ -52,6 +52,7 @@ import android.widget.TextView;
|
|||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import com.google.android.exoplayer2.Player;
|
import com.google.android.exoplayer2.Player;
|
||||||
|
import com.google.android.exoplayer2.text.CaptionStyleCompat;
|
||||||
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
||||||
import com.google.android.exoplayer2.ui.SubtitleView;
|
import com.google.android.exoplayer2.ui.SubtitleView;
|
||||||
|
|
||||||
@ -397,20 +398,15 @@ public final class MainVideoPlayer extends AppCompatActivity
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void setupSubtitleView(@NonNull SubtitleView view,
|
protected void setupSubtitleView(@NonNull SubtitleView view,
|
||||||
@NonNull String captionSizeKey) {
|
final float captionScale,
|
||||||
final float captionRatioInverse;
|
@NonNull final CaptionStyleCompat captionStyle) {
|
||||||
if (captionSizeKey.equals(getString(R.string.smaller_caption_size_key))) {
|
|
||||||
captionRatioInverse = 22f;
|
|
||||||
} else if (captionSizeKey.equals(getString(R.string.larger_caption_size_key))) {
|
|
||||||
captionRatioInverse = 18f;
|
|
||||||
} else {
|
|
||||||
captionRatioInverse = 20f;
|
|
||||||
}
|
|
||||||
|
|
||||||
final DisplayMetrics metrics = context.getResources().getDisplayMetrics();
|
final DisplayMetrics metrics = context.getResources().getDisplayMetrics();
|
||||||
final int minimumLength = Math.min(metrics.heightPixels, metrics.widthPixels);
|
final int minimumLength = Math.min(metrics.heightPixels, metrics.widthPixels);
|
||||||
|
final float captionRatioInverse = 20f + 4f * (1f - captionScale);
|
||||||
view.setFixedTextSize(TypedValue.COMPLEX_UNIT_PX,
|
view.setFixedTextSize(TypedValue.COMPLEX_UNIT_PX,
|
||||||
(float) minimumLength / captionRatioInverse);
|
(float) minimumLength / captionRatioInverse);
|
||||||
|
view.setApplyEmbeddedStyles(captionStyle.equals(CaptionStyleCompat.DEFAULT));
|
||||||
|
view.setStyle(captionStyle);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -52,6 +52,7 @@ import android.widget.TextView;
|
|||||||
import com.google.android.exoplayer2.C;
|
import com.google.android.exoplayer2.C;
|
||||||
import com.google.android.exoplayer2.PlaybackParameters;
|
import com.google.android.exoplayer2.PlaybackParameters;
|
||||||
import com.google.android.exoplayer2.Player;
|
import com.google.android.exoplayer2.Player;
|
||||||
|
import com.google.android.exoplayer2.text.CaptionStyleCompat;
|
||||||
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
||||||
import com.google.android.exoplayer2.ui.SubtitleView;
|
import com.google.android.exoplayer2.ui.SubtitleView;
|
||||||
|
|
||||||
@ -397,14 +398,12 @@ public final class PopupVideoPlayer extends Service {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void setupSubtitleView(@NonNull SubtitleView view,
|
protected void setupSubtitleView(@NonNull SubtitleView view,
|
||||||
@NonNull String captionSizeKey) {
|
final float captionScale,
|
||||||
float captionRatio = SubtitleView.DEFAULT_TEXT_SIZE_FRACTION;
|
@NonNull final CaptionStyleCompat captionStyle) {
|
||||||
if (captionSizeKey.equals(getString(R.string.smaller_caption_size_key))) {
|
float captionRatio = (captionScale - 1f) / 5f + 1f;
|
||||||
captionRatio *= 0.9;
|
view.setFractionalTextSize(SubtitleView.DEFAULT_TEXT_SIZE_FRACTION * captionRatio);
|
||||||
} else if (captionSizeKey.equals(getString(R.string.larger_caption_size_key))) {
|
view.setApplyEmbeddedStyles(captionStyle.equals(CaptionStyleCompat.DEFAULT));
|
||||||
captionRatio *= 1.1;
|
view.setStyle(captionStyle);
|
||||||
}
|
|
||||||
view.setFractionalTextSize(captionRatio);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -32,7 +32,6 @@ import android.graphics.PorterDuff;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.preference.PreferenceManager;
|
|
||||||
import android.support.annotation.NonNull;
|
import android.support.annotation.NonNull;
|
||||||
import android.support.annotation.Nullable;
|
import android.support.annotation.Nullable;
|
||||||
import android.support.v4.content.ContextCompat;
|
import android.support.v4.content.ContextCompat;
|
||||||
@ -55,6 +54,7 @@ import com.google.android.exoplayer2.source.MediaSource;
|
|||||||
import com.google.android.exoplayer2.source.MergingMediaSource;
|
import com.google.android.exoplayer2.source.MergingMediaSource;
|
||||||
import com.google.android.exoplayer2.source.TrackGroup;
|
import com.google.android.exoplayer2.source.TrackGroup;
|
||||||
import com.google.android.exoplayer2.source.TrackGroupArray;
|
import com.google.android.exoplayer2.source.TrackGroupArray;
|
||||||
|
import com.google.android.exoplayer2.text.CaptionStyleCompat;
|
||||||
import com.google.android.exoplayer2.trackselection.TrackSelectionArray;
|
import com.google.android.exoplayer2.trackselection.TrackSelectionArray;
|
||||||
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
||||||
import com.google.android.exoplayer2.ui.SubtitleView;
|
import com.google.android.exoplayer2.ui.SubtitleView;
|
||||||
@ -189,10 +189,10 @@ public abstract class VideoPlayer extends BasePlayer
|
|||||||
this.qualityTextView = rootView.findViewById(R.id.qualityTextView);
|
this.qualityTextView = rootView.findViewById(R.id.qualityTextView);
|
||||||
|
|
||||||
this.subtitleView = rootView.findViewById(R.id.subtitleView);
|
this.subtitleView = rootView.findViewById(R.id.subtitleView);
|
||||||
final String captionSizeKey = PreferenceManager.getDefaultSharedPreferences(context)
|
|
||||||
.getString(context.getString(R.string.caption_size_key),
|
final float captionScale = PlayerHelper.getCaptionScale(context);
|
||||||
context.getString(R.string.caption_size_default));
|
final CaptionStyleCompat captionStyle = PlayerHelper.getCaptionStyle(context);
|
||||||
setupSubtitleView(subtitleView, captionSizeKey);
|
setupSubtitleView(subtitleView, captionScale, captionStyle);
|
||||||
|
|
||||||
this.resizeView = rootView.findViewById(R.id.resizeTextView);
|
this.resizeView = rootView.findViewById(R.id.resizeTextView);
|
||||||
resizeView.setText(PlayerHelper.resizeTypeOf(context, aspectRatioFrameLayout.getResizeMode()));
|
resizeView.setText(PlayerHelper.resizeTypeOf(context, aspectRatioFrameLayout.getResizeMode()));
|
||||||
@ -214,7 +214,8 @@ public abstract class VideoPlayer extends BasePlayer
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected abstract void setupSubtitleView(@NonNull SubtitleView view,
|
protected abstract void setupSubtitleView(@NonNull SubtitleView view,
|
||||||
@NonNull String captionSizeKey);
|
final float captionScale,
|
||||||
|
@NonNull final CaptionStyleCompat captionStyle);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initListeners() {
|
public void initListeners() {
|
||||||
|
@ -2,16 +2,18 @@ package org.schabi.newpipe.player.helper;
|
|||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
|
import android.os.Build;
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
import android.support.annotation.NonNull;
|
import android.support.annotation.NonNull;
|
||||||
import android.support.annotation.Nullable;
|
import android.support.annotation.Nullable;
|
||||||
|
import android.view.accessibility.CaptioningManager;
|
||||||
|
|
||||||
import com.google.android.exoplayer2.SeekParameters;
|
import com.google.android.exoplayer2.SeekParameters;
|
||||||
import com.google.android.exoplayer2.trackselection.AdaptiveTrackSelection;
|
import com.google.android.exoplayer2.trackselection.AdaptiveTrackSelection;
|
||||||
import com.google.android.exoplayer2.trackselection.TrackSelection;
|
import com.google.android.exoplayer2.trackselection.TrackSelection;
|
||||||
|
import com.google.android.exoplayer2.text.CaptionStyleCompat;
|
||||||
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
import com.google.android.exoplayer2.ui.AspectRatioFrameLayout;
|
||||||
import com.google.android.exoplayer2.upstream.BandwidthMeter;
|
import com.google.android.exoplayer2.upstream.BandwidthMeter;
|
||||||
import com.google.android.exoplayer2.util.Clock;
|
|
||||||
import com.google.android.exoplayer2.util.MimeTypes;
|
import com.google.android.exoplayer2.util.MimeTypes;
|
||||||
|
|
||||||
import org.schabi.newpipe.R;
|
import org.schabi.newpipe.R;
|
||||||
@ -229,6 +231,35 @@ public class PlayerHelper {
|
|||||||
return 2500;
|
return 2500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static CaptionStyleCompat getCaptionStyle(@NonNull final Context context) {
|
||||||
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) return CaptionStyleCompat.DEFAULT;
|
||||||
|
|
||||||
|
final CaptioningManager captioningManager = (CaptioningManager)
|
||||||
|
context.getSystemService(Context.CAPTIONING_SERVICE);
|
||||||
|
if (captioningManager == null || !captioningManager.isEnabled()) {
|
||||||
|
return CaptionStyleCompat.DEFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CaptionStyleCompat.createFromCaptionStyle(captioningManager.getUserStyle());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* System font scaling:
|
||||||
|
* Very small - 0.25f, Small - 0.5f, Normal - 1.0f, Large - 1.5f, Very Large - 2.0f
|
||||||
|
* */
|
||||||
|
@NonNull
|
||||||
|
public static float getCaptionScale(@NonNull final Context context) {
|
||||||
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) return 1f;
|
||||||
|
|
||||||
|
final CaptioningManager captioningManager = (CaptioningManager)
|
||||||
|
context.getSystemService(Context.CAPTIONING_SERVICE);
|
||||||
|
if (captioningManager == null || !captioningManager.isEnabled()) {
|
||||||
|
return 1f;
|
||||||
|
}
|
||||||
|
|
||||||
|
return captioningManager.getFontScale();
|
||||||
|
}
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
// Private helpers
|
// Private helpers
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -1,17 +1,25 @@
|
|||||||
package org.schabi.newpipe.settings;
|
package org.schabi.newpipe.settings;
|
||||||
|
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.provider.Settings;
|
||||||
import android.support.annotation.Nullable;
|
import android.support.annotation.Nullable;
|
||||||
import android.support.v7.preference.Preference;
|
import android.support.v7.preference.Preference;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
import org.schabi.newpipe.R;
|
import org.schabi.newpipe.R;
|
||||||
import org.schabi.newpipe.util.Constants;
|
import org.schabi.newpipe.util.Constants;
|
||||||
|
|
||||||
public class AppearanceSettingsFragment extends BasePreferenceFragment {
|
public class AppearanceSettingsFragment extends BasePreferenceFragment {
|
||||||
|
private final static boolean CAPTIONING_SETTINGS_ACCESSIBLE =
|
||||||
|
Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Theme that was applied when the settings was opened (or recreated after a theme change)
|
* Theme that was applied when the settings was opened (or recreated after a theme change)
|
||||||
*/
|
*/
|
||||||
private String startThemeKey;
|
private String startThemeKey;
|
||||||
|
private String captionSettingsKey;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(@Nullable Bundle savedInstanceState) {
|
public void onCreate(@Nullable Bundle savedInstanceState) {
|
||||||
@ -19,6 +27,12 @@ public class AppearanceSettingsFragment extends BasePreferenceFragment {
|
|||||||
String themeKey = getString(R.string.theme_key);
|
String themeKey = getString(R.string.theme_key);
|
||||||
startThemeKey = defaultPreferences.getString(themeKey, getString(R.string.default_theme_value));
|
startThemeKey = defaultPreferences.getString(themeKey, getString(R.string.default_theme_value));
|
||||||
findPreference(themeKey).setOnPreferenceChangeListener(themePreferenceChange);
|
findPreference(themeKey).setOnPreferenceChangeListener(themePreferenceChange);
|
||||||
|
|
||||||
|
captionSettingsKey = getString(R.string.caption_settings_key);
|
||||||
|
if (!CAPTIONING_SETTINGS_ACCESSIBLE) {
|
||||||
|
final Preference captionSettings = findPreference(captionSettingsKey);
|
||||||
|
getPreferenceScreen().removePreference(captionSettings);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -26,13 +40,23 @@ public class AppearanceSettingsFragment extends BasePreferenceFragment {
|
|||||||
addPreferencesFromResource(R.xml.appearance_settings);
|
addPreferencesFromResource(R.xml.appearance_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onPreferenceTreeClick(Preference preference) {
|
||||||
|
if (preference.getKey().equals(captionSettingsKey) && CAPTIONING_SETTINGS_ACCESSIBLE) {
|
||||||
|
startActivity(new Intent(Settings.ACTION_CAPTIONING_SETTINGS));
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onPreferenceTreeClick(preference);
|
||||||
|
}
|
||||||
|
|
||||||
private Preference.OnPreferenceChangeListener themePreferenceChange = new Preference.OnPreferenceChangeListener() {
|
private Preference.OnPreferenceChangeListener themePreferenceChange = new Preference.OnPreferenceChangeListener() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
||||||
defaultPreferences.edit().putBoolean(Constants.KEY_THEME_CHANGE, true).apply();
|
defaultPreferences.edit().putBoolean(Constants.KEY_THEME_CHANGE, true).apply();
|
||||||
defaultPreferences.edit().putString(getString(R.string.theme_key), newValue.toString()).apply();
|
defaultPreferences.edit().putString(getString(R.string.theme_key), newValue.toString()).apply();
|
||||||
|
|
||||||
if (!newValue.equals(startThemeKey)) { // If it's not the current theme
|
if (!newValue.equals(startThemeKey) && getActivity() != null) {
|
||||||
|
// If it's not the current theme
|
||||||
getActivity().recreate();
|
getActivity().recreate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,23 +109,7 @@
|
|||||||
</string-array>
|
</string-array>
|
||||||
|
|
||||||
<!-- Caption Size -->
|
<!-- Caption Size -->
|
||||||
<string name="caption_size_key" translatable="false">caption_size_key</string>
|
<string name="caption_settings_key" translatable="false">caption_settings_key</string>
|
||||||
<string name="caption_size_default" translatable="false">@string/normal_caption_size_key</string>
|
|
||||||
|
|
||||||
<string name="smaller_caption_size_key" translatable="false">smaller_caption_size</string>
|
|
||||||
<string name="normal_caption_size_key" translatable="false">normal_caption_size</string>
|
|
||||||
<string name="larger_caption_size_key" translatable="false">larger_caption_size</string>
|
|
||||||
|
|
||||||
<string-array name="caption_size_descriptions_list" translatable="false">
|
|
||||||
<item>@string/smaller_caption_font_size</item>
|
|
||||||
<item>@string/normal_caption_font_size</item>
|
|
||||||
<item>@string/larger_caption_font_size</item>
|
|
||||||
</string-array>
|
|
||||||
<string-array name="caption_size_values_list" translatable="false">
|
|
||||||
<item>@string/smaller_caption_size_key</item>
|
|
||||||
<item>@string/normal_caption_size_key</item>
|
|
||||||
<item>@string/larger_caption_size_key</item>
|
|
||||||
</string-array>
|
|
||||||
|
|
||||||
<!-- Content & History -->
|
<!-- Content & History -->
|
||||||
<string name="show_search_suggestions_key" translatable="false">show_search_suggestions</string>
|
<string name="show_search_suggestions_key" translatable="false">show_search_suggestions</string>
|
||||||
|
@ -426,10 +426,10 @@
|
|||||||
<string name="resize_zoom">ZOOM</string>
|
<string name="resize_zoom">ZOOM</string>
|
||||||
|
|
||||||
<string name="caption_auto_generated">Auto-generated</string>
|
<string name="caption_auto_generated">Auto-generated</string>
|
||||||
<string name="caption_font_size_settings_title">Caption font size</string>
|
|
||||||
<string name="smaller_caption_font_size">Smaller font</string>
|
<!-- Caption Settings -->
|
||||||
<string name="normal_caption_font_size">Normal font</string>
|
<string name="caption_setting_title">Caption</string>
|
||||||
<string name="larger_caption_font_size">Larger font</string>
|
<string name="caption_setting_description">Modify player caption text scale and background styles. Require player restart to take effect.</string>
|
||||||
|
|
||||||
<!-- Debug Settings -->
|
<!-- Debug Settings -->
|
||||||
<string name="enable_leak_canary_title">Enable LeakCanary</string>
|
<string name="enable_leak_canary_title">Enable LeakCanary</string>
|
||||||
|
@ -22,11 +22,8 @@
|
|||||||
android:title="@string/show_hold_to_append_title"
|
android:title="@string/show_hold_to_append_title"
|
||||||
android:summary="@string/show_hold_to_append_summary"/>
|
android:summary="@string/show_hold_to_append_summary"/>
|
||||||
|
|
||||||
<ListPreference
|
<Preference
|
||||||
android:defaultValue="@string/caption_size_default"
|
android:key="@string/caption_settings_key"
|
||||||
android:entries="@array/caption_size_descriptions_list"
|
android:title="@string/caption_setting_title"
|
||||||
android:entryValues="@array/caption_size_values_list"
|
android:summary="@string/caption_setting_description"/>
|
||||||
android:key="@string/caption_size_key"
|
|
||||||
android:summary="%s"
|
|
||||||
android:title="@string/caption_font_size_settings_title"/>
|
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
Loading…
Reference in New Issue
Block a user