vio-player
v0.0.3
Published
This is sound player of Angular!
Downloads
4
Readme
VioPlayer
This is sound player of Angular!
This library was generated with Angular CLI version 15.2.0.
How to use it?
<vio-player [songs]="songs">
Models
export interface Song {
url: string;
name: string;
artist: string;
coverImageUrl: string;
genre: string;
}
songs: Song = [{
url: "../assets/songs/Ed Sheeran - Perfect (Official Music Video).mp3",
name: "Perfect",
artist: "Ed Sheeran",
coverImageUrl: "../assets/img/song-cover.jpg",
genre: "Pop"
}]