├── .gitignore ├── BasicKaraokeLabelDemo ├── BasicKaraokeLabelDemo.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── LastChick.xcuserdatad │ │ └── xcschemes │ │ ├── BasicKaraokeLabelDemo.xcscheme │ │ └── xcschememanagement.plist ├── BasicKaraokeLabelDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── BasicKaraokeLabelDemoTests │ ├── BasicKaraokeLabelDemoTests.m │ └── Info.plist ├── DemoLyricPlayerWithMusic ├── DemoLyricPlayerWithMusic.xcodeproj │ └── project.pbxproj ├── DemoLyricPlayerWithMusic │ ├── AboutViewController.h │ ├── AboutViewController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Lyrics │ │ ├── my_everything.lrc │ │ └── thai_binh_mo_hoi_roi.lrc │ ├── Music Files │ │ ├── my_everything.mp3 │ │ └── tbmhr.mp3 │ ├── PlayMusicViewController.h │ ├── PlayMusicViewController.m │ ├── RootViewController.h │ ├── RootViewController.m │ └── main.m └── DemoLyricPlayerWithMusicTests │ ├── DemoLyricPlayerWithMusicTests.m │ └── Info.plist ├── README.md └── classes ├── VTXKaraokeView ├── VTXKaraokeLyricView.h └── VTXKaraokeLyricView.m └── VTXLyricPlayerView ├── VTXLyric.h ├── VTXLyric.m ├── VTXLyricParser.h ├── VTXLyricParser.m ├── VTXLyricPlayerView.h └── VTXLyricPlayerView.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/.gitignore -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo.xcodeproj/xcuserdata/LastChick.xcuserdatad/xcschemes/BasicKaraokeLabelDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo.xcodeproj/xcuserdata/LastChick.xcuserdatad/xcschemes/BasicKaraokeLabelDemo.xcscheme -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo.xcodeproj/xcuserdata/LastChick.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo.xcodeproj/xcuserdata/LastChick.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/AppDelegate.h -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/AppDelegate.m -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/Info.plist -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/ViewController.h -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/ViewController.m -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemo/main.m -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemoTests/BasicKaraokeLabelDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemoTests/BasicKaraokeLabelDemoTests.m -------------------------------------------------------------------------------- /BasicKaraokeLabelDemo/BasicKaraokeLabelDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/BasicKaraokeLabelDemo/BasicKaraokeLabelDemoTests/Info.plist -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AboutViewController.h -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AboutViewController.m -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AppDelegate.h -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/AppDelegate.m -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Info.plist -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Lyrics/my_everything.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Lyrics/my_everything.lrc -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Lyrics/thai_binh_mo_hoi_roi.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Lyrics/thai_binh_mo_hoi_roi.lrc -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Music Files/my_everything.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Music Files/my_everything.mp3 -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Music Files/tbmhr.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/Music Files/tbmhr.mp3 -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/PlayMusicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/PlayMusicViewController.h -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/PlayMusicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/PlayMusicViewController.m -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/RootViewController.h -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/RootViewController.m -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusic/main.m -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusicTests/DemoLyricPlayerWithMusicTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusicTests/DemoLyricPlayerWithMusicTests.m -------------------------------------------------------------------------------- /DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusicTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/DemoLyricPlayerWithMusic/DemoLyricPlayerWithMusicTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/README.md -------------------------------------------------------------------------------- /classes/VTXKaraokeView/VTXKaraokeLyricView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXKaraokeView/VTXKaraokeLyricView.h -------------------------------------------------------------------------------- /classes/VTXKaraokeView/VTXKaraokeLyricView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXKaraokeView/VTXKaraokeLyricView.m -------------------------------------------------------------------------------- /classes/VTXLyricPlayerView/VTXLyric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXLyricPlayerView/VTXLyric.h -------------------------------------------------------------------------------- /classes/VTXLyricPlayerView/VTXLyric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXLyricPlayerView/VTXLyric.m -------------------------------------------------------------------------------- /classes/VTXLyricPlayerView/VTXLyricParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXLyricPlayerView/VTXLyricParser.h -------------------------------------------------------------------------------- /classes/VTXLyricPlayerView/VTXLyricParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXLyricPlayerView/VTXLyricParser.m -------------------------------------------------------------------------------- /classes/VTXLyricPlayerView/VTXLyricPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXLyricPlayerView/VTXLyricPlayerView.h -------------------------------------------------------------------------------- /classes/VTXLyricPlayerView/VTXLyricPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viettranx/VTXKaraokeLyricView/HEAD/classes/VTXLyricPlayerView/VTXLyricPlayerView.m --------------------------------------------------------------------------------