Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
tx_player_fork
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
蒋俊
tx_player_fork
Commits
837b09c7
提交
837b09c7
authored
1月 04, 2024
作者:
kongdywang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix player widget play status error when switch stream
上级
ae47a1ce
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
3 行增加
和
11 行删除
+3
-11
superplayer_define.dart
Flutter/superplayer_widget/lib/model/superplayer_define.dart
+0
-1
superplayer_controller.dart
Flutter/superplayer_widget/lib/superplayer_controller.dart
+0
-3
superplayer_widget.dart
Flutter/superplayer_widget/lib/ui/superplayer_widget.dart
+3
-7
没有找到文件。
Flutter/superplayer_widget/lib/model/superplayer_define.dart
浏览文件 @
837b09c7
...
...
@@ -3,7 +3,6 @@ part of demo_super_player_lib;
enum
SuperPlayerState
{
INIT
,
// Initial state
PREPARED
,
// prepared
PLAYING
,
// Playing
PAUSE
,
// Paused
LOADING
,
// Buffering
...
...
Flutter/superplayer_widget/lib/superplayer_controller.dart
浏览文件 @
837b09c7
...
...
@@ -134,7 +134,6 @@ class SuperPlayerController {
}
videoDuration
=
await
_vodPlayerController
.
getDuration
();
currentDuration
=
await
_vodPlayerController
.
getCurrentPlaybackTime
();
_updatePlayerState
(
SuperPlayerState
.
PREPARED
);
break
;
case
TXVodPlayEvent
.
PLAY_EVT_PLAY_LOADING
:
// PLAY_EVT_PLAY_LOADING
if
(
playerState
==
SuperPlayerState
.
PAUSE
)
{
...
...
@@ -571,8 +570,6 @@ class SuperPlayerController {
playerState
=
state
;
switch
(
state
)
{
case
SuperPlayerState
.
INIT
:
break
;
case
SuperPlayerState
.
PREPARED
:
_observer
?.
onPlayPrepare
();
break
;
case
SuperPlayerState
.
PLAYING
:
...
...
Flutter/superplayer_widget/lib/ui/superplayer_widget.dart
浏览文件 @
837b09c7
...
...
@@ -22,7 +22,7 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
late
SuperPlayerController
_playController
;
bool
_isFloatingMode
=
false
;
bool
_isPlaying
=
false
;
bool
_isLoading
=
fals
e
;
bool
_isLoading
=
tru
e
;
bool
_isShowCover
=
true
;
double
_radioWidth
=
0
;
...
...
@@ -269,13 +269,9 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
_isLoading
=
true
;
_coverViewKey
.
currentState
?.
hideCover
();
break
;
case
SuperPlayerState
.
PREPARED
:
_isPlaying
=
false
;
_isLoading
=
false
;
break
;
case
SuperPlayerState
.
INIT
:
_isPlaying
=
false
;
_isLoading
=
tru
e
;
_isLoading
=
fals
e
;
break
;
}
}
...
...
@@ -604,7 +600,7 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
int
playAction
=
_playController
.
videoModel
!.
playAction
;
if
(
playerState
==
SuperPlayerState
.
LOADING
&&
playAction
==
SuperPlayerModel
.
PLAY_ACTION_PRELOAD
)
{
_playController
.
resume
();
}
else
if
(
playerState
==
SuperPlayerState
.
INIT
||
playerState
==
SuperPlayerState
.
PREPARED
)
{
}
else
if
(
playerState
==
SuperPlayerState
.
INIT
)
{
if
(
playAction
==
SuperPlayerModel
.
PLAY_ACTION_PRELOAD
)
{
_playController
.
resume
();
}
else
if
(
playAction
==
SuperPlayerModel
.
PLAY_ACTION_MANUAL_PLAY
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论