File tree Expand file tree Collapse file tree 3 files changed +39
-2
lines changed Expand file tree Collapse file tree 3 files changed +39
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.3
2
+
3
+ ** This new release of dart_vlc adds:**
4
+
5
+ - More advanced playlist modification methods like:
6
+ - ` add ` for appending a new ` Media ` to the ` Playlist ` of the ` Player ` .
7
+ - ` remove ` for removing a ` Media ` from the ` Playlist ` of the ` Player ` from certain index.
8
+ - ` insert ` method for inserting ` Media ` to certain index.
9
+ - ` move ` a ` Media ` from one index to another.
10
+ - Ability to get all playback ` Device ` s on machine & change.
11
+ - ` Devices.all ` gives ` List ` of all ` Device ` s.
12
+ - ` Player.setDevice ` can be used to set a playback device for the ` Player ` instance.
13
+ - Now event streams are splitted into four:
14
+ - ` Player.currentStream `
15
+ - Contains:
16
+ - ` index `
17
+ - ` media `
18
+ - ` medias `
19
+ - ` isPlaylist `
20
+ - ` Player.positionStream `
21
+ - Contains:
22
+ - ` position `
23
+ - ` duration `
24
+ - ` Player.playbackStream `
25
+ - Contains:
26
+ - ` isPlaying `
27
+ - ` isSeekable `
28
+ - ` isCompleted `
29
+ - ` Player.generalStream `
30
+ - Contains:
31
+ - ` volume `
32
+ - ` rate `
33
+ - Ability to retrieve metadata of a ` Media ` (either from ` Media.network ` or ` Media.file ` ).
34
+ - Now you can access metadata of a ` Media ` by passing ` parse: true ` for parsing the metadata.
35
+ - Retrieved metadata is stored inside ` Media.metas ` as ` Map<String, String> ` .
36
+
37
+
1
38
## 0.0.2
2
39
3
40
** This new release of dart_vlc adds:**
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ packages:
56
56
path: ".."
57
57
relative: true
58
58
source: path
59
- version: "0.0.2 "
59
+ version: "0.0.3 "
60
60
fake_async:
61
61
dependency: transitive
62
62
description:
Original file line number Diff line number Diff line change 1
1
name : dart_vlc
2
2
description : A media playback library for Dart & Flutter. Based on libVLC & libVLC++.
3
- version : 0.0.2
3
+ version : 0.0.3
4
4
homepage : https://github.com/alexmercerind/dart_vlc
5
5
repository : https://github.com/alexmercerind/dart_vlc
6
6
documentation : https://github.com/alexmercerind/dart_vlc/blob/master/README.md
You can’t perform that action at this time.
0 commit comments