mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-11-04 09:13:00 +00:00 
			
		
		
		
	Merge remote-tracking branch 'theScrabi/master'
This commit is contained in:
		@@ -201,11 +201,17 @@ public class ActionBarHandler {
 | 
				
			|||||||
        if(!videoTitle.isEmpty()) {
 | 
					        if(!videoTitle.isEmpty()) {
 | 
				
			||||||
            if (PreferenceManager.getDefaultSharedPreferences(context)
 | 
					            if (PreferenceManager.getDefaultSharedPreferences(context)
 | 
				
			||||||
                    .getBoolean(context.getString(R.string.useExternalPlayer), false)) {
 | 
					                    .getBoolean(context.getString(R.string.useExternalPlayer), false)) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                // External Player
 | 
				
			||||||
                Intent intent = new Intent();
 | 
					                Intent intent = new Intent();
 | 
				
			||||||
                try {
 | 
					                try {
 | 
				
			||||||
                    intent.setAction(Intent.ACTION_VIEW);
 | 
					                    intent.setAction(Intent.ACTION_VIEW);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    intent.setDataAndType(Uri.parse(videoStreams[selectedStream].url),
 | 
					                    intent.setDataAndType(Uri.parse(videoStreams[selectedStream].url),
 | 
				
			||||||
                            VideoInfo.getMimeById(videoStreams[selectedStream].format));
 | 
					                            VideoInfo.getMimeById(videoStreams[selectedStream].format));
 | 
				
			||||||
 | 
					                    intent.putExtra(Intent.EXTRA_TITLE, videoTitle);
 | 
				
			||||||
 | 
					                    intent.putExtra("title", videoTitle);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    context.startActivity(intent);      // HERE !!!
 | 
					                    context.startActivity(intent);      // HERE !!!
 | 
				
			||||||
                } catch (Exception e) {
 | 
					                } catch (Exception e) {
 | 
				
			||||||
                    e.printStackTrace();
 | 
					                    e.printStackTrace();
 | 
				
			||||||
@@ -229,6 +235,7 @@ public class ActionBarHandler {
 | 
				
			|||||||
                    builder.create().show();
 | 
					                    builder.create().show();
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
 | 
					                // Internal Player
 | 
				
			||||||
                Intent intent = new Intent(context, PlayVideoActivity.class);
 | 
					                Intent intent = new Intent(context, PlayVideoActivity.class);
 | 
				
			||||||
                intent.putExtra(PlayVideoActivity.VIDEO_TITLE, videoTitle);
 | 
					                intent.putExtra(PlayVideoActivity.VIDEO_TITLE, videoTitle);
 | 
				
			||||||
                intent.putExtra(PlayVideoActivity.STREAM_URL, videoStreams[selectedStream].url);
 | 
					                intent.putExtra(PlayVideoActivity.STREAM_URL, videoStreams[selectedStream].url);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -35,4 +35,14 @@
 | 
				
			|||||||
    <string name="fdroidKoreUrl">https://f-droid.org/repository/browse/?fdfilter=Kore&fdid=org.xbmc.kore</string>
 | 
					    <string name="fdroidKoreUrl">https://f-droid.org/repository/browse/?fdfilter=Kore&fdid=org.xbmc.kore</string>
 | 
				
			||||||
    <string name="showPlayWithKodiTitle">\"Lejátszás Kodi-val\" opció mutatása</string>
 | 
					    <string name="showPlayWithKodiTitle">\"Lejátszás Kodi-val\" opció mutatása</string>
 | 
				
			||||||
    <string name="showPlayWithKodiSummary">Mutat egy opciót a videók Kodi médiaközponttal való lejátszására</string>
 | 
					    <string name="showPlayWithKodiSummary">Mutat egy opciót a videók Kodi médiaközponttal való lejátszására</string>
 | 
				
			||||||
 | 
					    <string name="leftHandLayoutTitle">Bal kezes elrendezés</string>
 | 
				
			||||||
 | 
					    <string name="playAudio">Hang</string>
 | 
				
			||||||
 | 
					    <string name="defaultAudioFormatTitle">Alapértelmezett hang formátum</string>
 | 
				
			||||||
 | 
					    <string name="webMAudioDescription">WebM - szabad formátum</string>
 | 
				
			||||||
 | 
					    <string name="m4aAudioDescription">m4a - jobb minőség</string>
 | 
				
			||||||
 | 
					    <string name="downloadDialogTitle">Letöltés</string>
 | 
				
			||||||
 | 
					    <string-array name="downloadOptions">
 | 
				
			||||||
 | 
					        <item>Videó</item>
 | 
				
			||||||
 | 
					        <item>Hang</item>
 | 
				
			||||||
 | 
					    </string-array>
 | 
				
			||||||
</resources>
 | 
					</resources>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user