video_player_config_util.dart 646 B

12345678910111213141516171819
  1. // import 'package:flutter/material.dart';
  2. // import 'package:video_player_android/video_player_android.dart';
  3. //
  4. // /// 视频播放器配置工具类
  5. // class VideoPlayerConfigUtil {
  6. // VideoPlayerConfigUtil._();
  7. //
  8. // /// 配置视频播放器
  9. // static void config() {
  10. // AndroidVideoPlayer.registerWith = (callback) {
  11. // final exoPlayer = AndroidExoPlayer(
  12. // // 强制使用软件解码器
  13. // httpClient: AndroidExoPlayerHttpClient(),
  14. // codecFactory: AndroidCodecFactory(forceSoftwareCodecs: true), // <-- 关键配置
  15. // );
  16. // return AndroidVideoPlayer(exoPlayer);
  17. // };
  18. // }
  19. // }