mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-30 23:03:00 +00:00 
			
		
		
		
	Use SubtitlesStream#getUrl instead of getURL
This commit is contained in:
		| @@ -164,7 +164,7 @@ dependencies { | ||||
|         exclude module: 'support-annotations' | ||||
|     } | ||||
|  | ||||
|     implementation 'com.github.TeamNewPipe:NewPipeExtractor:5ac80624a40f4c600ae493e66881b5bf008f0ddb' | ||||
|     implementation 'com.github.TeamNewPipe:NewPipeExtractor:6633f26ec5a73a8e932de575b7a0643b6ad6c890' | ||||
|  | ||||
|     implementation "com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751" | ||||
|     implementation "org.jsoup:jsoup:1.13.1" | ||||
|   | ||||
| @@ -106,7 +106,7 @@ public class VideoPlaybackResolver implements PlaybackResolver { | ||||
|                         SELECTION_FLAG_AUTOSELECT, | ||||
|                         PlayerHelper.captionLanguageOf(context, subtitle)); | ||||
|                 final MediaSource textSource = dataSource.getSampleMediaSourceFactory() | ||||
|                         .createMediaSource(Uri.parse(subtitle.getURL()), textFormat, TIME_UNSET); | ||||
|                         .createMediaSource(Uri.parse(subtitle.getUrl()), textFormat, TIME_UNSET); | ||||
|                 mediaSources.add(textSource); | ||||
|             } | ||||
|         } | ||||
|   | ||||
| @@ -155,7 +155,7 @@ public class DownloadMissionRecover extends Thread { | ||||
|                 for (SubtitlesStream subtitles : mExtractor.getSubtitles(mRecovery.format)) { | ||||
|                     String tag = subtitles.getLanguageTag(); | ||||
|                     if (tag.equals(mRecovery.desired) && subtitles.isAutoGenerated() == mRecovery.desired2) { | ||||
|                         url = subtitles.getURL(); | ||||
|                         url = subtitles.getUrl(); | ||||
|                         break; | ||||
|                     } | ||||
|                 } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 mhmdanas
					mhmdanas