├── .gitignore ├── LICENSE ├── README.md ├── config.cpp ├── config.h ├── framelesshelper.cpp ├── framelesshelper.h ├── install ├── QIFW │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ └── net.xymov.ifw │ │ │ ├── data │ │ │ ├── LICENSE │ │ │ └── vst-video │ │ │ └── meta │ │ │ ├── installscript.qs │ │ │ └── package.xml │ └── vst-video.pro ├── README.md ├── appimage │ ├── icon.png.png │ ├── install.sh │ └── vst-video.desktop ├── bin │ ├── appimagetool │ ├── linuxdeployqt │ └── patchelf ├── deb │ ├── getdll.sh │ ├── install.sh │ └── output │ │ ├── DEBIAN │ │ └── control │ │ └── usr │ │ ├── share │ │ └── applications │ │ │ └── vst-video.desktop │ │ └── src │ │ └── vst-video │ │ ├── install.sh │ │ └── vst-video └── install.sh ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── resource ├── img │ ├── camera_on.svg │ ├── camera_out.svg │ ├── close.svg │ ├── close_deep.svg │ ├── close_light.svg │ ├── front_off.svg │ ├── front_on.svg │ ├── front_out.svg │ ├── full_on.svg │ ├── full_out.svg │ ├── general_on.svg │ ├── general_out.svg │ ├── ico.svg │ ├── icon.png │ ├── list_on.svg │ ├── list_out.svg │ ├── loading.gif │ ├── maximize.svg │ ├── maximize_deep.svg │ ├── maximize_light.svg │ ├── menu.svg │ ├── menu_deep.svg │ ├── menu_light.svg │ ├── minimize.svg │ ├── minimize_deep.svg │ ├── minimize_light.svg │ ├── next_off.svg │ ├── next_on.svg │ ├── next_out.svg │ ├── pallette.svg │ ├── pause_on.svg │ ├── pause_out.svg │ ├── play_at.svg │ ├── play_on.svg │ ├── play_out.svg │ ├── setting_on.svg │ ├── setting_out.svg │ ├── sliderImg.png │ ├── subtitle.svg │ ├── timg.jpeg │ ├── volume-down_on.svg │ ├── volume-down_out.svg │ ├── volume-off_on.svg │ ├── volume-off_out.svg │ ├── volume-up_on.svg │ └── volume-up_out.svg └── source │ ├── live.txt │ └── source.txt ├── resources.qrc ├── set.cpp ├── set.h ├── set.ui ├── vst-video └── vst-video.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/README.md -------------------------------------------------------------------------------- /config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/config.cpp -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/config.h -------------------------------------------------------------------------------- /framelesshelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/framelesshelper.cpp -------------------------------------------------------------------------------- /framelesshelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/framelesshelper.h -------------------------------------------------------------------------------- /install/QIFW/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/README -------------------------------------------------------------------------------- /install/QIFW/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/config/config.xml -------------------------------------------------------------------------------- /install/QIFW/packages/net.xymov.ifw/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/packages/net.xymov.ifw/data/LICENSE -------------------------------------------------------------------------------- /install/QIFW/packages/net.xymov.ifw/data/vst-video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/packages/net.xymov.ifw/data/vst-video -------------------------------------------------------------------------------- /install/QIFW/packages/net.xymov.ifw/meta/installscript.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/packages/net.xymov.ifw/meta/installscript.qs -------------------------------------------------------------------------------- /install/QIFW/packages/net.xymov.ifw/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/packages/net.xymov.ifw/meta/package.xml -------------------------------------------------------------------------------- /install/QIFW/vst-video.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/QIFW/vst-video.pro -------------------------------------------------------------------------------- /install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/README.md -------------------------------------------------------------------------------- /install/appimage/icon.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/appimage/icon.png.png -------------------------------------------------------------------------------- /install/appimage/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/appimage/install.sh -------------------------------------------------------------------------------- /install/appimage/vst-video.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/appimage/vst-video.desktop -------------------------------------------------------------------------------- /install/bin/appimagetool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/bin/appimagetool -------------------------------------------------------------------------------- /install/bin/linuxdeployqt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/bin/linuxdeployqt -------------------------------------------------------------------------------- /install/bin/patchelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/bin/patchelf -------------------------------------------------------------------------------- /install/deb/getdll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/deb/getdll.sh -------------------------------------------------------------------------------- /install/deb/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/deb/install.sh -------------------------------------------------------------------------------- /install/deb/output/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/deb/output/DEBIAN/control -------------------------------------------------------------------------------- /install/deb/output/usr/share/applications/vst-video.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/deb/output/usr/share/applications/vst-video.desktop -------------------------------------------------------------------------------- /install/deb/output/usr/src/vst-video/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/deb/output/usr/src/vst-video/install.sh -------------------------------------------------------------------------------- /install/deb/output/usr/src/vst-video/vst-video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/deb/output/usr/src/vst-video/vst-video -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/install/install.sh -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /resource/img/camera_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/camera_on.svg -------------------------------------------------------------------------------- /resource/img/camera_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/camera_out.svg -------------------------------------------------------------------------------- /resource/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/close.svg -------------------------------------------------------------------------------- /resource/img/close_deep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/close_deep.svg -------------------------------------------------------------------------------- /resource/img/close_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/close_light.svg -------------------------------------------------------------------------------- /resource/img/front_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/front_off.svg -------------------------------------------------------------------------------- /resource/img/front_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/front_on.svg -------------------------------------------------------------------------------- /resource/img/front_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/front_out.svg -------------------------------------------------------------------------------- /resource/img/full_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/full_on.svg -------------------------------------------------------------------------------- /resource/img/full_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/full_out.svg -------------------------------------------------------------------------------- /resource/img/general_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/general_on.svg -------------------------------------------------------------------------------- /resource/img/general_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/general_out.svg -------------------------------------------------------------------------------- /resource/img/ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/ico.svg -------------------------------------------------------------------------------- /resource/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/icon.png -------------------------------------------------------------------------------- /resource/img/list_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/list_on.svg -------------------------------------------------------------------------------- /resource/img/list_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/list_out.svg -------------------------------------------------------------------------------- /resource/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/loading.gif -------------------------------------------------------------------------------- /resource/img/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/maximize.svg -------------------------------------------------------------------------------- /resource/img/maximize_deep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/maximize_deep.svg -------------------------------------------------------------------------------- /resource/img/maximize_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/maximize_light.svg -------------------------------------------------------------------------------- /resource/img/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/menu.svg -------------------------------------------------------------------------------- /resource/img/menu_deep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/menu_deep.svg -------------------------------------------------------------------------------- /resource/img/menu_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/menu_light.svg -------------------------------------------------------------------------------- /resource/img/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/minimize.svg -------------------------------------------------------------------------------- /resource/img/minimize_deep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/minimize_deep.svg -------------------------------------------------------------------------------- /resource/img/minimize_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/minimize_light.svg -------------------------------------------------------------------------------- /resource/img/next_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/next_off.svg -------------------------------------------------------------------------------- /resource/img/next_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/next_on.svg -------------------------------------------------------------------------------- /resource/img/next_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/next_out.svg -------------------------------------------------------------------------------- /resource/img/pallette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/pallette.svg -------------------------------------------------------------------------------- /resource/img/pause_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/pause_on.svg -------------------------------------------------------------------------------- /resource/img/pause_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/pause_out.svg -------------------------------------------------------------------------------- /resource/img/play_at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/play_at.svg -------------------------------------------------------------------------------- /resource/img/play_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/play_on.svg -------------------------------------------------------------------------------- /resource/img/play_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/play_out.svg -------------------------------------------------------------------------------- /resource/img/setting_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/setting_on.svg -------------------------------------------------------------------------------- /resource/img/setting_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/setting_out.svg -------------------------------------------------------------------------------- /resource/img/sliderImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/sliderImg.png -------------------------------------------------------------------------------- /resource/img/subtitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/subtitle.svg -------------------------------------------------------------------------------- /resource/img/timg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/timg.jpeg -------------------------------------------------------------------------------- /resource/img/volume-down_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/volume-down_on.svg -------------------------------------------------------------------------------- /resource/img/volume-down_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/volume-down_out.svg -------------------------------------------------------------------------------- /resource/img/volume-off_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/volume-off_on.svg -------------------------------------------------------------------------------- /resource/img/volume-off_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/volume-off_out.svg -------------------------------------------------------------------------------- /resource/img/volume-up_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/volume-up_on.svg -------------------------------------------------------------------------------- /resource/img/volume-up_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/img/volume-up_out.svg -------------------------------------------------------------------------------- /resource/source/live.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/source/live.txt -------------------------------------------------------------------------------- /resource/source/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resource/source/source.txt -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/resources.qrc -------------------------------------------------------------------------------- /set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/set.cpp -------------------------------------------------------------------------------- /set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/set.h -------------------------------------------------------------------------------- /set.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/set.ui -------------------------------------------------------------------------------- /vst-video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/vst-video -------------------------------------------------------------------------------- /vst-video.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xymov/vst-video/HEAD/vst-video.pro --------------------------------------------------------------------------------