mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-10-30 20:21:58 +00:00 
			
		
		
		
	Update VideoPlayer.vue, add play in line and ios MSE
This commit is contained in:
		| @@ -5,7 +5,14 @@ | ||||
|         class="relative max-h-screen w-full flex justify-center" | ||||
|         :class="{ 'player-container': !isEmbed }" | ||||
|     > | ||||
|         <video ref="videoEl" class="w-full" data-shaka-player :autoplay="shouldAutoPlay" :loop="selectedAutoLoop" /> | ||||
|         <video | ||||
|             ref="videoEl" | ||||
|             class="w-full" | ||||
|             data-shaka-player | ||||
|             :autoplay="shouldAutoPlay" | ||||
|             :loop="selectedAutoLoop" | ||||
|             playsinline | ||||
|         /> | ||||
|         <span | ||||
|             id="preview-container" | ||||
|             ref="previewContainer" | ||||
| @@ -318,7 +325,7 @@ export default { | ||||
|             streams.push(...this.video.audioStreams); | ||||
|             streams.push(...this.video.videoStreams); | ||||
|  | ||||
|             const MseSupport = window.MediaSource !== undefined; | ||||
|             const MseSupport = window.MediaSource !== undefined || window.ManagedMediaSource !== undefined; | ||||
|  | ||||
|             const lbry = null; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Spendable1569
					Spendable1569