├── .gitignore ├── Binaries_x64.qrc ├── Binaries_x86.qrc ├── Copying.txt ├── MediaInfoXP.ico ├── MediaInfoXP.png ├── MediaInfoXP.props ├── MediaInfoXP.qrc ├── MediaInfoXP.rcx ├── MediaInfoXP.sln ├── MediaInfoXP.vcxproj ├── MediaInfoXP.vcxproj.filters ├── ReadMe.txt ├── doc ├── Changelog.txt ├── License.MediaInfo.html ├── License.Qt.html ├── License.html ├── README.html └── README.svg ├── gui └── Dialog.ui ├── res ├── bin │ ├── MediaInfo.x64-avx2.exe │ ├── MediaInfo.x64-sse2.exe │ ├── MediaInfo.x86-i686.exe │ └── MediaInfo.x86-sse2.exe ├── ico_clear.png ├── ico_discard.png ├── ico_disk.png ├── ico_folder.png ├── ico_info.png ├── ico_link.png ├── ico_options.png ├── ico_paste.png ├── ico_qt.png ├── ico_quit.png ├── ico_shellext.png ├── loading.png └── logo.png ├── src ├── Config.cpp ├── Config.h ├── IPC.cpp ├── IPC.h ├── Main.cpp ├── MainWindow.cpp ├── MainWindow.h ├── ShellExtension.cpp ├── ShellExtension.h └── Version.h └── z_build.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries_x64.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/Binaries_x64.qrc -------------------------------------------------------------------------------- /Binaries_x86.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/Binaries_x86.qrc -------------------------------------------------------------------------------- /Copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/Copying.txt -------------------------------------------------------------------------------- /MediaInfoXP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.ico -------------------------------------------------------------------------------- /MediaInfoXP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.png -------------------------------------------------------------------------------- /MediaInfoXP.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.props -------------------------------------------------------------------------------- /MediaInfoXP.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.qrc -------------------------------------------------------------------------------- /MediaInfoXP.rcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.rcx -------------------------------------------------------------------------------- /MediaInfoXP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.sln -------------------------------------------------------------------------------- /MediaInfoXP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.vcxproj -------------------------------------------------------------------------------- /MediaInfoXP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/MediaInfoXP.vcxproj.filters -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /doc/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/doc/Changelog.txt -------------------------------------------------------------------------------- /doc/License.MediaInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/doc/License.MediaInfo.html -------------------------------------------------------------------------------- /doc/License.Qt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/doc/License.Qt.html -------------------------------------------------------------------------------- /doc/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/doc/License.html -------------------------------------------------------------------------------- /doc/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/doc/README.html -------------------------------------------------------------------------------- /doc/README.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/doc/README.svg -------------------------------------------------------------------------------- /gui/Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/gui/Dialog.ui -------------------------------------------------------------------------------- /res/bin/MediaInfo.x64-avx2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/bin/MediaInfo.x64-avx2.exe -------------------------------------------------------------------------------- /res/bin/MediaInfo.x64-sse2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/bin/MediaInfo.x64-sse2.exe -------------------------------------------------------------------------------- /res/bin/MediaInfo.x86-i686.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/bin/MediaInfo.x86-i686.exe -------------------------------------------------------------------------------- /res/bin/MediaInfo.x86-sse2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/bin/MediaInfo.x86-sse2.exe -------------------------------------------------------------------------------- /res/ico_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_clear.png -------------------------------------------------------------------------------- /res/ico_discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_discard.png -------------------------------------------------------------------------------- /res/ico_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_disk.png -------------------------------------------------------------------------------- /res/ico_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_folder.png -------------------------------------------------------------------------------- /res/ico_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_info.png -------------------------------------------------------------------------------- /res/ico_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_link.png -------------------------------------------------------------------------------- /res/ico_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_options.png -------------------------------------------------------------------------------- /res/ico_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_paste.png -------------------------------------------------------------------------------- /res/ico_qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_qt.png -------------------------------------------------------------------------------- /res/ico_quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_quit.png -------------------------------------------------------------------------------- /res/ico_shellext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/ico_shellext.png -------------------------------------------------------------------------------- /res/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/loading.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/res/logo.png -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/IPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/IPC.cpp -------------------------------------------------------------------------------- /src/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/IPC.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/ShellExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/ShellExtension.cpp -------------------------------------------------------------------------------- /src/ShellExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/ShellExtension.h -------------------------------------------------------------------------------- /src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/src/Version.h -------------------------------------------------------------------------------- /z_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmulder/mediainfo-gui/HEAD/z_build.bat --------------------------------------------------------------------------------