我正在开发颤振应用程序并使用 ext_video_player 播放 youtube 视频。当我在视频播放器上播放我的频道视频时,它不起作用。但是我添加了来自 youtube 的任何视频,播放器正在工作。为什么会发生?
import 'package:ext_video_player/ext_video_player.dart';
controller = VideoPlayerController.network(
//example video
'https://www.youtube.com/watch?v=TdrL3QxjyVw'
//my video
//'https://www.youtube.com/watch?v=GoqggeA-ctA'
)
..initialize().then((value) {
controller.setLooping(true);
controller.play();
widget.sets.controller = controller;
widget.onInitialized();
});
Widget build(BuildContext context) => SizedBox(
child: controller.value.initialized
? VideoPlayer(controller)
: Center(child: CircularProgressIndicator()),
);
- 工作视频“https://www.youtube.com/watch?v=TdrL3QxjyVw”
- 我的视频(无效)“https://www.youtube.com/watch?v=GoqggeA-ctA”
错误 :
I/ExoPlayerImpl( 4553): Init 16226c0 [ExoPlayerLib/2.13.2] [generic_x86_arm, sdk_gphone_x86, Google, 30]
E/ExoPlayerImplInternal( 4553): Playback error
E/ExoPlayerImplInternal( 4553): com.google.android.exoplayer2.ExoPlaybackException: Source error
E/ExoPlayerImplInternal( 4553): at com.google.android.exoplayer2.ExoPlayerImplInternal.handleMessage(ExoPlayerImplInternal.java:579)
E/ExoPlayerImplInternal( 4553): at android.os.Handler.dispatchMessage(Handler.java:102)
E/ExoPlayerImplInternal( 4553): at android.os.Looper.loop(Looper.java:223)
E/ExoPlayerImplInternal( 4553): at android.os.HandlerThread.run(HandlerThread.java:67)
E/ExoPlayerImplInternal( 4553): Caused by: com.google.android.exoplayer2.source.UnrecognizedInputFormatException: None of the available extractors (FlvExtractor, FlacExtractor, WavExtractor, FragmentedMp4Extractor, Mp4Extractor, AmrExtractor, PsExtractor, OggExtractor, TsExtractor, MatroskaExtractor, AdtsExtractor, Ac3Extractor, Ac4Extractor, Mp3Extractor, JpegExtractor) could read the stream.
E/ExoPlayerImplInternal( 4553): at com.google.android.exoplayer2.source.BundledExtractorsAdapter.init(BundledExtractorsAdapter.java:92)
E/ExoPlayerImplInternal( 4553): at com.google.android.exoplayer2.source.ProgressiveMediaPeriod$ExtractingLoadable.load(ProgressiveMediaPeriod.java:1026)
E/ExoPlayerImplInternal( 4553): at com.google.android.exoplayer2.upstream.Loader$LoadTask.run(Loader.java:415)
E/ExoPlayerImplInternal( 4553): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
E/ExoPlayerImplInternal( 4553): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
E/ExoPlayerImplInternal( 4553): at java.lang.Thread.run(Thread.java:923)
E/flutter ( 4553): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: PlatformException(VideoError, Video player had error com.google.android.exoplayer2.ExoPlaybackException: Source error, null, null)
谢谢,祝你有美好的日子。