| 12345678910111213141516171819 |
- // import 'package:flutter/material.dart';
- // import 'package:video_player_android/video_player_android.dart';
- //
- // /// 视频播放器配置工具类
- // class VideoPlayerConfigUtil {
- // VideoPlayerConfigUtil._();
- //
- // /// 配置视频播放器
- // static void config() {
- // AndroidVideoPlayer.registerWith = (callback) {
- // final exoPlayer = AndroidExoPlayer(
- // // 强制使用软件解码器
- // httpClient: AndroidExoPlayerHttpClient(),
- // codecFactory: AndroidCodecFactory(forceSoftwareCodecs: true), // <-- 关键配置
- // );
- // return AndroidVideoPlayer(exoPlayer);
- // };
- // }
- // }
|