You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h4align="center">Flutter media playback, broadcast, recording & chromecast library for Windows, Linux & macOS.</h4>
3
7
<h5align="center">Written in C++ using libVLC & libVLC++.</h5>
4
8
@@ -21,12 +25,12 @@ dependencies:
21
25
```yaml
22
26
dependencies:
23
27
...
24
-
dart_vlc_ffi: ^0.1.2
28
+
dart_vlc_ffi: ^0.1.3
25
29
```
26
30
27
31
More on Dart CLI implementation [here](./ffi/README.md).
28
32
29
-
Feel free to open issue, incase you find something to be not working.
33
+
Feel free to open a [new issue](https://github.com/alexmercerind/dart_vlc/issues) or [discussion](https://github.com/alexmercerind/dart_vlc/discussions), if you found a bug or need assistance.
30
34
31
35
## Support
32
36
@@ -67,7 +71,11 @@ Media media0 = Media.file(
67
71
File('C:/music.mp3')
68
72
);
69
73
70
-
Media media1 = Media.network(
74
+
Media media1 = Media.asset(
75
+
'assets/audio/example.mp3'
76
+
);
77
+
78
+
Media media2 = Media.network(
71
79
'https://www.example.com/music.aac'
72
80
);
73
81
```
@@ -78,6 +86,7 @@ Playlist playlist = new Playlist(
0 commit comments