This repository has been archived by the owner on Apr 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
290 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,8 @@ | |
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
.cxx | ||
/dkplayer-ijk | ||
/dkplayer-java | ||
/dkplayer-ui | ||
/constants.gradle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/build | ||
/release | ||
/src/main/java/com/leon/biuvideo/values/apis/AmapKey.java | ||
/src/main/java/com/leon/biuvideo/values/apis/AmapKey.java | ||
src\main\java\com\leon\biuvideo\ui\resourcesFragments\BiuVideoPlayerWithAudio.java | ||
src\main\java\com\leon\biuvideo\ui\resourcesFragments\BiuVideoPlayerFactory.java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
app/src/main/java/com/leon/biuvideo/beans/mediaBeans/videoBeans/VideoWithFlv.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package com.leon.biuvideo.beans.mediaBeans.videoBeans; | ||
|
||
import java.util.LinkedHashMap; | ||
import java.util.List; | ||
|
||
/** | ||
* @Author Leon | ||
* @Time 2021/4/5 | ||
* @Desc 单视频数据(flv方式) | ||
*/ | ||
public class VideoWithFlv { | ||
public int currentQualityId; | ||
public LinkedHashMap<Integer, String> qualityMap; | ||
|
||
/** | ||
* 分段视频信息 | ||
*/ | ||
public List<VideoStreamInfo> videoStreamInfoList; | ||
|
||
public static class VideoStreamInfo { | ||
/** | ||
* 视频分段序号 | ||
*/ | ||
public int order; | ||
public String size; | ||
|
||
/** | ||
* 默认视频流 | ||
*/ | ||
public String url; | ||
|
||
/** | ||
* 备用视频流 | ||
*/ | ||
public String[] backupUrl; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
app/src/main/java/com/leon/biuvideo/ui/resourcesFragments/VideoControllerInterface.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.