-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve HLS support + Update stream describe() + New example
- Loading branch information
Showing
11 changed files
with
139 additions
and
77 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 |
---|---|---|
@@ -1,27 +1,42 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
about: Create a bug report, make sure to follow the template otherwise the issue might be closed. | ||
title: "[BUG]" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Include the code which doesn't work in the code markdown.. | ||
Include the code which doesn't work in the code markdown... | ||
```dart | ||
``` | ||
|
||
**Stacktrace** | ||
Include here the stacktrace (if applicable). | ||
Include also the full logs by adding the following lines to the start of your code: | ||
```dart | ||
Logger.root.level = Level.FINER; | ||
Logger.root.onRecord.listen((e) { | ||
print(e); | ||
if (e.error != null) { | ||
print(e.error); | ||
print(e.stackTrace); | ||
} | ||
}); | ||
``` | ||
If too long please use a service like https://gist.github.com/ or https://pastebin.com/ | ||
|
||
**Enviroment: (please complete the following information):** | ||
- Enviroment: [Flutter o Dart VM] | ||
- Version [e.g. 2.8.4] | ||
- YoutubeExplode Version [e.g. ^2.5.0] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import '../../../../youtube_explode_dart.dart'; | ||
|
||
mixin HlsStreamInfo on StreamInfo { | ||
/// The tag of the audio stream related to this stream. | ||
int? get audioItag => null; | ||
} |
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
Oops, something went wrong.