├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── HACKING ├── INSTALL ├── INSTALL.win32 ├── NEWS ├── README ├── TRANSLATORS ├── bin └── .keep ├── cmake ├── FindLIBVLC.cmake ├── config.h.cmake ├── toolchain-win32.cmake └── vlmc.sh ├── doc ├── .keep ├── Doxyfile └── README ├── fortunes.txt ├── include └── .keep ├── modules ├── effects │ └── squeleton │ │ ├── Skeleton.cpp │ │ └── Skeleton.h └── sample_module │ ├── libsample_module.so.1 │ ├── libsample_module.so.1.0 │ └── main.cpp ├── resources ├── .keep ├── images │ ├── add.png │ ├── audio.png │ ├── back.png │ ├── clear.png │ ├── configure.png │ ├── editcut.png │ ├── error.png │ ├── forward.png │ ├── hpoff.png │ ├── hpon.png │ ├── keyboard.png │ ├── marker_left.png │ ├── marker_right.png │ ├── marker_start.png │ ├── marker_stop.png │ ├── mouse.png │ ├── next_frame.png │ ├── pause.png │ ├── play.png │ ├── previous_frame.png │ ├── redo.png │ ├── remove.png │ ├── scalable │ │ ├── audio.svg │ │ ├── image.svg │ │ └── video.svg │ ├── stop.png │ ├── trackoff.png │ ├── trackon.png │ ├── undo.png │ ├── up.png │ ├── video.png │ ├── vlmc.ico │ ├── vlmc.png │ ├── wizard_watermark.png │ ├── zoom_in.png │ └── zoom_out.png ├── styleSheets │ └── Style.qss └── styles.qrc ├── ressources.qrc ├── share ├── vlmc.desktop └── vlmc.png ├── src ├── .keep ├── CMakeLists.txt ├── Commands │ ├── Commands.cpp │ ├── Commands.h │ ├── KeyboardShortcutHelper.cpp │ ├── KeyboardShortcutHelper.h │ └── commands.pri ├── Configuration │ ├── SettingValue.cpp │ ├── SettingValue.h │ ├── SettingsManager.cpp │ ├── SettingsManager.h │ └── configuration.pri ├── EffectsEngine │ ├── EffectNode.cpp │ ├── EffectNode.h │ ├── EffectNodeFactory.cpp │ ├── EffectNodeFactory.h │ ├── EffectPluginTypeLoader.cpp │ ├── EffectPluginTypeLoader.h │ ├── EffectPluginTypeManager.cpp │ ├── EffectPluginTypeManager.h │ ├── EffectsEngine.cpp │ ├── EffectsEngine.h │ ├── Plugins │ │ ├── lib │ │ │ └── .keep │ │ └── src │ │ │ ├── BlitInRectangle │ │ │ ├── BlitInRectangleEffectPlugin.cpp │ │ │ ├── BlitInRectangleEffectPlugin.h │ │ │ ├── BlitInRectangleEffectPluginCreator.cpp │ │ │ ├── BlitInRectangleEffectPluginCreator.h │ │ │ └── CMakeLists.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── GreenFilterEffect │ │ │ ├── CMakeLists.txt │ │ │ ├── GreenFilterEffectPlugin.cpp │ │ │ ├── GreenFilterEffectPlugin.h │ │ │ ├── GreenFilterEffectPluginCreator.cpp │ │ │ └── GreenFilterEffectPluginCreator.h │ │ │ ├── InvertRNBEffect │ │ │ ├── CMakeLists.txt │ │ │ ├── InvertRNBEffectPlugin.cpp │ │ │ ├── InvertRNBEffectPlugin.h │ │ │ ├── InvertRNBEffectPluginCreator.cpp │ │ │ └── InvertRNBEffectPluginCreator.h │ │ │ └── MixerEffect │ │ │ ├── CMakeLists.txt │ │ │ ├── MixerEffectPlugin.cpp │ │ │ ├── MixerEffectPlugin.h │ │ │ ├── MixerEffectPluginCreator.cpp │ │ │ └── MixerEffectPluginCreator.h │ ├── PluginsAPI │ │ ├── IEffectNode.h │ │ ├── IEffectPlugin.h │ │ ├── IEffectPluginCreator.h │ │ ├── InSlot.hpp │ │ ├── LightVideoFrame.cpp │ │ ├── LightVideoFrame.h │ │ ├── OutSlot.hpp │ │ └── PluginsAPI.pri │ ├── SemanticObjectManager.hpp │ └── SimpleObjectsReferencer.hpp ├── Gui │ ├── About.cpp │ ├── About.h │ ├── AudioSpectrumDrawer.cpp │ ├── AudioSpectrumDrawer.h │ ├── ClickableLabel.cpp │ ├── ClickableLabel.h │ ├── ClipProperty.cpp │ ├── ClipProperty.h │ ├── DockWidgetManager.cpp │ ├── DockWidgetManager.h │ ├── FileInfoListModel.cpp │ ├── FileInfoListModel.h │ ├── Gui.pri │ ├── LCDTimecode.cpp │ ├── LCDTimecode.h │ ├── LanguageHelper.cpp │ ├── LanguageHelper.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── PreviewRuler.cpp │ ├── PreviewRuler.h │ ├── PreviewWidget.cpp │ ├── PreviewWidget.h │ ├── TagWidget.cpp │ ├── TagWidget.h │ ├── Transcode.cpp │ ├── Transcode.h │ ├── UndoStack.cpp │ ├── UndoStack.h │ ├── WorkflowFileRendererDialog.cpp │ ├── WorkflowFileRendererDialog.h │ ├── export │ │ ├── RendererSettings.cpp │ │ ├── RendererSettings.h │ │ └── RendererSettings.ui │ ├── import │ │ ├── ImportController.cpp │ │ ├── ImportController.h │ │ ├── ImportMediaCellView.cpp │ │ ├── ImportMediaCellView.h │ │ ├── ImportMediaListController.cpp │ │ ├── ImportMediaListController.h │ │ └── ui │ │ │ └── ImportController.ui │ ├── library │ │ ├── ClipListViewController.cpp │ │ ├── ClipListViewController.h │ │ ├── ListViewController.cpp │ │ ├── ListViewController.h │ │ ├── MediaCellView.cpp │ │ ├── MediaCellView.h │ │ ├── MediaLibraryWidget.cpp │ │ ├── MediaLibraryWidget.h │ │ ├── MediaListViewController.cpp │ │ ├── MediaListViewController.h │ │ ├── StackViewController.cpp │ │ ├── StackViewController.h │ │ ├── StackViewNavController.cpp │ │ ├── StackViewNavController.h │ │ ├── StackViewNavController.ui │ │ ├── ViewController.h │ │ └── ui │ │ │ ├── MediaCellView.ui │ │ │ └── StackViewNavController.ui │ ├── settings │ │ ├── BoolWidget.cpp │ │ ├── BoolWidget.h │ │ ├── DoubleWidget.cpp │ │ ├── DoubleWidget.h │ │ ├── ISettingsCategorieWidget.h │ │ ├── IntWidget.cpp │ │ ├── IntWidget.h │ │ ├── KeyboardShortcut.cpp │ │ ├── KeyboardShortcut.h │ │ ├── KeyboardShortcutInput.cpp │ │ ├── KeyboardShortcutInput.h │ │ ├── LanguageWidget.cpp │ │ ├── LanguageWidget.h │ │ ├── Panel.cpp │ │ ├── Panel.h │ │ ├── PreferenceWidget.cpp │ │ ├── PreferenceWidget.h │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── StringWidget.cpp │ │ └── StringWidget.h │ ├── timeline │ │ ├── AbstractGraphicsMediaItem.cpp │ │ ├── AbstractGraphicsMediaItem.h │ │ ├── GraphicsAudioItem.cpp │ │ ├── GraphicsAudioItem.h │ │ ├── GraphicsCursorItem.cpp │ │ ├── GraphicsCursorItem.h │ │ ├── GraphicsMovieItem.cpp │ │ ├── GraphicsMovieItem.h │ │ ├── GraphicsTrack.cpp │ │ ├── GraphicsTrack.h │ │ ├── Timeline.cpp │ │ ├── Timeline.h │ │ ├── TracksControls.cpp │ │ ├── TracksControls.h │ │ ├── TracksRuler.cpp │ │ ├── TracksRuler.h │ │ ├── TracksScene.cpp │ │ ├── TracksScene.h │ │ ├── TracksView.cpp │ │ └── TracksView.h │ ├── ui │ │ ├── About.ui │ │ ├── ClipProperty.ui │ │ ├── FileBrowser.ui │ │ ├── LibraryWidget.ui │ │ ├── MainWindow.ui │ │ ├── PreviewWidget.ui │ │ ├── TagWidget.ui │ │ ├── Timeline.ui │ │ ├── WorkflowFileRendererDialog.ui │ │ └── transcode.ui │ ├── widgets │ │ ├── CrashHandler.cpp │ │ ├── CrashHandler.h │ │ ├── CrashHandler.ui │ │ ├── TrackControls.cpp │ │ ├── TrackControls.h │ │ └── TrackControls.ui │ └── wizard │ │ ├── GeneralPage.cpp │ │ ├── GeneralPage.h │ │ ├── OpenPage.cpp │ │ ├── OpenPage.h │ │ ├── PageFactory.h │ │ ├── ProjectWizard.cpp │ │ ├── ProjectWizard.h │ │ ├── VideoPage.cpp │ │ ├── VideoPage.h │ │ ├── WelcomePage.cpp │ │ ├── WelcomePage.h │ │ └── ui │ │ ├── GeneralPage.ui │ │ ├── OpenPage.ui │ │ ├── VideoPage.ui │ │ └── WelcomePage.ui ├── LibVLCpp │ ├── LibVLCpp.pri │ ├── VLCInstance.cpp │ ├── VLCInstance.h │ ├── VLCMedia.cpp │ ├── VLCMedia.h │ ├── VLCMediaPlayer.cpp │ ├── VLCMediaPlayer.h │ └── VLCpp.hpp ├── Library │ ├── Library.cpp │ ├── Library.h │ └── Library.pri ├── Media │ ├── Clip.cpp │ ├── Clip.h │ ├── Media.cpp │ ├── Media.h │ └── Media.pri ├── Metadata │ ├── MetaDataManager.cpp │ ├── MetaDataManager.h │ ├── MetaDataWorker.cpp │ ├── MetaDataWorker.h │ └── Metadata.pri ├── Project │ ├── ProjectManager.cpp │ ├── ProjectManager.h │ └── projectManager.pri ├── Renderer │ ├── ClipRenderer.cpp │ ├── ClipRenderer.h │ ├── GenericRenderer.cpp │ ├── GenericRenderer.h │ ├── Renderer.pri │ ├── WorkflowFileRenderer.cpp │ ├── WorkflowFileRenderer.h │ ├── WorkflowRenderer.cpp │ └── WorkflowRenderer.h ├── Tools │ ├── BacktraceGenerator.h │ ├── MemoryPool.hpp │ ├── Pool.hpp │ ├── QSingleton.hpp │ ├── Singleton.hpp │ ├── Toggleable.hpp │ ├── Tools.pri │ ├── UnixBacktraceGenerator.cpp │ ├── VlmcDebug.cpp │ ├── VlmcDebug.h │ ├── WaitCondition.hpp │ ├── Win32BacktraceGenerator.cpp │ └── mdate.h ├── Workflow │ ├── AudioClipWorkflow.cpp │ ├── AudioClipWorkflow.h │ ├── ClipWorkflow.cpp │ ├── ClipWorkflow.h │ ├── ImageClipWorkflow.cpp │ ├── ImageClipWorkflow.h │ ├── MainWorkflow.cpp │ ├── MainWorkflow.h │ ├── StackedBuffer.hpp │ ├── TrackHandler.cpp │ ├── TrackHandler.h │ ├── TrackWorkflow.cpp │ ├── TrackWorkflow.h │ ├── VideoClipWorkflow.cpp │ ├── VideoClipWorkflow.h │ └── Workflow.pri ├── main.cpp ├── vlmc.cpp ├── vlmc.h └── winvlmc.cpp └── ts ├── .gitignore ├── CMakeLists.txt ├── vlmc_ca_ES.ts ├── vlmc_cs_CZ.ts ├── vlmc_es_ES.ts ├── vlmc_fr_FR.ts ├── vlmc_it_IT.ts ├── vlmc_ja_JP.ts ├── vlmc_nl.ts ├── vlmc_pl_PL.ts ├── vlmc_pt_BR.ts ├── vlmc_ro_RO.ts ├── vlmc_ru_RU.ts ├── vlmc_sk_SK.ts ├── vlmc_sv.ts ├── vlmc_uk.ts └── vlmc_zh_CN.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/COPYING -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/HACKING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/INSTALL.win32 -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | One day this file will contain a changelog. 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/README -------------------------------------------------------------------------------- /TRANSLATORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/TRANSLATORS -------------------------------------------------------------------------------- /bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/FindLIBVLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/cmake/FindLIBVLC.cmake -------------------------------------------------------------------------------- /cmake/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/cmake/config.h.cmake -------------------------------------------------------------------------------- /cmake/toolchain-win32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/cmake/toolchain-win32.cmake -------------------------------------------------------------------------------- /cmake/vlmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/cmake/vlmc.sh -------------------------------------------------------------------------------- /doc/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/doc/README -------------------------------------------------------------------------------- /fortunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/fortunes.txt -------------------------------------------------------------------------------- /include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/effects/squeleton/Skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/modules/effects/squeleton/Skeleton.cpp -------------------------------------------------------------------------------- /modules/effects/squeleton/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/modules/effects/squeleton/Skeleton.h -------------------------------------------------------------------------------- /modules/sample_module/libsample_module.so.1: -------------------------------------------------------------------------------- 1 | libsample_module.so.1.0.0 -------------------------------------------------------------------------------- /modules/sample_module/libsample_module.so.1.0: -------------------------------------------------------------------------------- 1 | libsample_module.so.1.0.0 -------------------------------------------------------------------------------- /modules/sample_module/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/modules/sample_module/main.cpp -------------------------------------------------------------------------------- /resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/add.png -------------------------------------------------------------------------------- /resources/images/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/audio.png -------------------------------------------------------------------------------- /resources/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/back.png -------------------------------------------------------------------------------- /resources/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/clear.png -------------------------------------------------------------------------------- /resources/images/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/configure.png -------------------------------------------------------------------------------- /resources/images/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/editcut.png -------------------------------------------------------------------------------- /resources/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/error.png -------------------------------------------------------------------------------- /resources/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/forward.png -------------------------------------------------------------------------------- /resources/images/hpoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/hpoff.png -------------------------------------------------------------------------------- /resources/images/hpon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/hpon.png -------------------------------------------------------------------------------- /resources/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/keyboard.png -------------------------------------------------------------------------------- /resources/images/marker_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/marker_left.png -------------------------------------------------------------------------------- /resources/images/marker_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/marker_right.png -------------------------------------------------------------------------------- /resources/images/marker_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/marker_start.png -------------------------------------------------------------------------------- /resources/images/marker_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/marker_stop.png -------------------------------------------------------------------------------- /resources/images/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/mouse.png -------------------------------------------------------------------------------- /resources/images/next_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/next_frame.png -------------------------------------------------------------------------------- /resources/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/pause.png -------------------------------------------------------------------------------- /resources/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/play.png -------------------------------------------------------------------------------- /resources/images/previous_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/previous_frame.png -------------------------------------------------------------------------------- /resources/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/redo.png -------------------------------------------------------------------------------- /resources/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/remove.png -------------------------------------------------------------------------------- /resources/images/scalable/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/scalable/audio.svg -------------------------------------------------------------------------------- /resources/images/scalable/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/scalable/image.svg -------------------------------------------------------------------------------- /resources/images/scalable/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/scalable/video.svg -------------------------------------------------------------------------------- /resources/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/stop.png -------------------------------------------------------------------------------- /resources/images/trackoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/trackoff.png -------------------------------------------------------------------------------- /resources/images/trackon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/trackon.png -------------------------------------------------------------------------------- /resources/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/undo.png -------------------------------------------------------------------------------- /resources/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/up.png -------------------------------------------------------------------------------- /resources/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/video.png -------------------------------------------------------------------------------- /resources/images/vlmc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/vlmc.ico -------------------------------------------------------------------------------- /resources/images/vlmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/vlmc.png -------------------------------------------------------------------------------- /resources/images/wizard_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/wizard_watermark.png -------------------------------------------------------------------------------- /resources/images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/zoom_in.png -------------------------------------------------------------------------------- /resources/images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/images/zoom_out.png -------------------------------------------------------------------------------- /resources/styleSheets/Style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/styleSheets/Style.qss -------------------------------------------------------------------------------- /resources/styles.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/resources/styles.qrc -------------------------------------------------------------------------------- /ressources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ressources.qrc -------------------------------------------------------------------------------- /share/vlmc.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/share/vlmc.desktop -------------------------------------------------------------------------------- /share/vlmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/share/vlmc.png -------------------------------------------------------------------------------- /src/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Commands/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Commands/Commands.cpp -------------------------------------------------------------------------------- /src/Commands/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Commands/Commands.h -------------------------------------------------------------------------------- /src/Commands/KeyboardShortcutHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Commands/KeyboardShortcutHelper.cpp -------------------------------------------------------------------------------- /src/Commands/KeyboardShortcutHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Commands/KeyboardShortcutHelper.h -------------------------------------------------------------------------------- /src/Commands/commands.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Commands/commands.pri -------------------------------------------------------------------------------- /src/Configuration/SettingValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Configuration/SettingValue.cpp -------------------------------------------------------------------------------- /src/Configuration/SettingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Configuration/SettingValue.h -------------------------------------------------------------------------------- /src/Configuration/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Configuration/SettingsManager.cpp -------------------------------------------------------------------------------- /src/Configuration/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Configuration/SettingsManager.h -------------------------------------------------------------------------------- /src/Configuration/configuration.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Configuration/configuration.pri -------------------------------------------------------------------------------- /src/EffectsEngine/EffectNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectNode.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/EffectNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectNode.h -------------------------------------------------------------------------------- /src/EffectsEngine/EffectNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectNodeFactory.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/EffectNodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectNodeFactory.h -------------------------------------------------------------------------------- /src/EffectsEngine/EffectPluginTypeLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectPluginTypeLoader.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/EffectPluginTypeLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectPluginTypeLoader.h -------------------------------------------------------------------------------- /src/EffectsEngine/EffectPluginTypeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectPluginTypeManager.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/EffectPluginTypeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectPluginTypeManager.h -------------------------------------------------------------------------------- /src/EffectsEngine/EffectsEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectsEngine.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/EffectsEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/EffectsEngine.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPlugin.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPlugin.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPluginCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPluginCreator.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPluginCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/BlitInRectangle/BlitInRectangleEffectPluginCreator.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/BlitInRectangle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/BlitInRectangle/CMakeLists.txt -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/GreenFilterEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/GreenFilterEffect/CMakeLists.txt -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPlugin.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPlugin.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPluginCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPluginCreator.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPluginCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/GreenFilterEffect/GreenFilterEffectPluginCreator.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/InvertRNBEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/InvertRNBEffect/CMakeLists.txt -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPlugin.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPlugin.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPluginCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPluginCreator.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPluginCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/InvertRNBEffect/InvertRNBEffectPluginCreator.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/MixerEffect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/MixerEffect/CMakeLists.txt -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPlugin.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPlugin.h -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPluginCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPluginCreator.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPluginCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/Plugins/src/MixerEffect/MixerEffectPluginCreator.h -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/IEffectNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/IEffectNode.h -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/IEffectPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/IEffectPlugin.h -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/IEffectPluginCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/IEffectPluginCreator.h -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/InSlot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/InSlot.hpp -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/LightVideoFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/LightVideoFrame.cpp -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/LightVideoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/LightVideoFrame.h -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/OutSlot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/OutSlot.hpp -------------------------------------------------------------------------------- /src/EffectsEngine/PluginsAPI/PluginsAPI.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/PluginsAPI/PluginsAPI.pri -------------------------------------------------------------------------------- /src/EffectsEngine/SemanticObjectManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/SemanticObjectManager.hpp -------------------------------------------------------------------------------- /src/EffectsEngine/SimpleObjectsReferencer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/EffectsEngine/SimpleObjectsReferencer.hpp -------------------------------------------------------------------------------- /src/Gui/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/About.cpp -------------------------------------------------------------------------------- /src/Gui/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/About.h -------------------------------------------------------------------------------- /src/Gui/AudioSpectrumDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/AudioSpectrumDrawer.cpp -------------------------------------------------------------------------------- /src/Gui/AudioSpectrumDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/AudioSpectrumDrawer.h -------------------------------------------------------------------------------- /src/Gui/ClickableLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ClickableLabel.cpp -------------------------------------------------------------------------------- /src/Gui/ClickableLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ClickableLabel.h -------------------------------------------------------------------------------- /src/Gui/ClipProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ClipProperty.cpp -------------------------------------------------------------------------------- /src/Gui/ClipProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ClipProperty.h -------------------------------------------------------------------------------- /src/Gui/DockWidgetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/DockWidgetManager.cpp -------------------------------------------------------------------------------- /src/Gui/DockWidgetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/DockWidgetManager.h -------------------------------------------------------------------------------- /src/Gui/FileInfoListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/FileInfoListModel.cpp -------------------------------------------------------------------------------- /src/Gui/FileInfoListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/FileInfoListModel.h -------------------------------------------------------------------------------- /src/Gui/Gui.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/Gui.pri -------------------------------------------------------------------------------- /src/Gui/LCDTimecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/LCDTimecode.cpp -------------------------------------------------------------------------------- /src/Gui/LCDTimecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/LCDTimecode.h -------------------------------------------------------------------------------- /src/Gui/LanguageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/LanguageHelper.cpp -------------------------------------------------------------------------------- /src/Gui/LanguageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/LanguageHelper.h -------------------------------------------------------------------------------- /src/Gui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/MainWindow.cpp -------------------------------------------------------------------------------- /src/Gui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/MainWindow.h -------------------------------------------------------------------------------- /src/Gui/PreviewRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/PreviewRuler.cpp -------------------------------------------------------------------------------- /src/Gui/PreviewRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/PreviewRuler.h -------------------------------------------------------------------------------- /src/Gui/PreviewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/PreviewWidget.cpp -------------------------------------------------------------------------------- /src/Gui/PreviewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/PreviewWidget.h -------------------------------------------------------------------------------- /src/Gui/TagWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/TagWidget.cpp -------------------------------------------------------------------------------- /src/Gui/TagWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/TagWidget.h -------------------------------------------------------------------------------- /src/Gui/Transcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/Transcode.cpp -------------------------------------------------------------------------------- /src/Gui/Transcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/Transcode.h -------------------------------------------------------------------------------- /src/Gui/UndoStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/UndoStack.cpp -------------------------------------------------------------------------------- /src/Gui/UndoStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/UndoStack.h -------------------------------------------------------------------------------- /src/Gui/WorkflowFileRendererDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/WorkflowFileRendererDialog.cpp -------------------------------------------------------------------------------- /src/Gui/WorkflowFileRendererDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/WorkflowFileRendererDialog.h -------------------------------------------------------------------------------- /src/Gui/export/RendererSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/export/RendererSettings.cpp -------------------------------------------------------------------------------- /src/Gui/export/RendererSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/export/RendererSettings.h -------------------------------------------------------------------------------- /src/Gui/export/RendererSettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/export/RendererSettings.ui -------------------------------------------------------------------------------- /src/Gui/import/ImportController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ImportController.cpp -------------------------------------------------------------------------------- /src/Gui/import/ImportController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ImportController.h -------------------------------------------------------------------------------- /src/Gui/import/ImportMediaCellView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ImportMediaCellView.cpp -------------------------------------------------------------------------------- /src/Gui/import/ImportMediaCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ImportMediaCellView.h -------------------------------------------------------------------------------- /src/Gui/import/ImportMediaListController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ImportMediaListController.cpp -------------------------------------------------------------------------------- /src/Gui/import/ImportMediaListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ImportMediaListController.h -------------------------------------------------------------------------------- /src/Gui/import/ui/ImportController.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/import/ui/ImportController.ui -------------------------------------------------------------------------------- /src/Gui/library/ClipListViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ClipListViewController.cpp -------------------------------------------------------------------------------- /src/Gui/library/ClipListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ClipListViewController.h -------------------------------------------------------------------------------- /src/Gui/library/ListViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ListViewController.cpp -------------------------------------------------------------------------------- /src/Gui/library/ListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ListViewController.h -------------------------------------------------------------------------------- /src/Gui/library/MediaCellView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/MediaCellView.cpp -------------------------------------------------------------------------------- /src/Gui/library/MediaCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/MediaCellView.h -------------------------------------------------------------------------------- /src/Gui/library/MediaLibraryWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/MediaLibraryWidget.cpp -------------------------------------------------------------------------------- /src/Gui/library/MediaLibraryWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/MediaLibraryWidget.h -------------------------------------------------------------------------------- /src/Gui/library/MediaListViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/MediaListViewController.cpp -------------------------------------------------------------------------------- /src/Gui/library/MediaListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/MediaListViewController.h -------------------------------------------------------------------------------- /src/Gui/library/StackViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/StackViewController.cpp -------------------------------------------------------------------------------- /src/Gui/library/StackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/StackViewController.h -------------------------------------------------------------------------------- /src/Gui/library/StackViewNavController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/StackViewNavController.cpp -------------------------------------------------------------------------------- /src/Gui/library/StackViewNavController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/StackViewNavController.h -------------------------------------------------------------------------------- /src/Gui/library/StackViewNavController.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/StackViewNavController.ui -------------------------------------------------------------------------------- /src/Gui/library/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ViewController.h -------------------------------------------------------------------------------- /src/Gui/library/ui/MediaCellView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ui/MediaCellView.ui -------------------------------------------------------------------------------- /src/Gui/library/ui/StackViewNavController.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/library/ui/StackViewNavController.ui -------------------------------------------------------------------------------- /src/Gui/settings/BoolWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/BoolWidget.cpp -------------------------------------------------------------------------------- /src/Gui/settings/BoolWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/BoolWidget.h -------------------------------------------------------------------------------- /src/Gui/settings/DoubleWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/DoubleWidget.cpp -------------------------------------------------------------------------------- /src/Gui/settings/DoubleWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/DoubleWidget.h -------------------------------------------------------------------------------- /src/Gui/settings/ISettingsCategorieWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/ISettingsCategorieWidget.h -------------------------------------------------------------------------------- /src/Gui/settings/IntWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/IntWidget.cpp -------------------------------------------------------------------------------- /src/Gui/settings/IntWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/IntWidget.h -------------------------------------------------------------------------------- /src/Gui/settings/KeyboardShortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/KeyboardShortcut.cpp -------------------------------------------------------------------------------- /src/Gui/settings/KeyboardShortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/KeyboardShortcut.h -------------------------------------------------------------------------------- /src/Gui/settings/KeyboardShortcutInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/KeyboardShortcutInput.cpp -------------------------------------------------------------------------------- /src/Gui/settings/KeyboardShortcutInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/KeyboardShortcutInput.h -------------------------------------------------------------------------------- /src/Gui/settings/LanguageWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/LanguageWidget.cpp -------------------------------------------------------------------------------- /src/Gui/settings/LanguageWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/LanguageWidget.h -------------------------------------------------------------------------------- /src/Gui/settings/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/Panel.cpp -------------------------------------------------------------------------------- /src/Gui/settings/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/Panel.h -------------------------------------------------------------------------------- /src/Gui/settings/PreferenceWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/PreferenceWidget.cpp -------------------------------------------------------------------------------- /src/Gui/settings/PreferenceWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/PreferenceWidget.h -------------------------------------------------------------------------------- /src/Gui/settings/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/Settings.cpp -------------------------------------------------------------------------------- /src/Gui/settings/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/Settings.h -------------------------------------------------------------------------------- /src/Gui/settings/StringWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/StringWidget.cpp -------------------------------------------------------------------------------- /src/Gui/settings/StringWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/settings/StringWidget.h -------------------------------------------------------------------------------- /src/Gui/timeline/AbstractGraphicsMediaItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/AbstractGraphicsMediaItem.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/AbstractGraphicsMediaItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/AbstractGraphicsMediaItem.h -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsAudioItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsAudioItem.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsAudioItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsAudioItem.h -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsCursorItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsCursorItem.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsCursorItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsCursorItem.h -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsMovieItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsMovieItem.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsMovieItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsMovieItem.h -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsTrack.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/GraphicsTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/GraphicsTrack.h -------------------------------------------------------------------------------- /src/Gui/timeline/Timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/Timeline.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/Timeline.h -------------------------------------------------------------------------------- /src/Gui/timeline/TracksControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksControls.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/TracksControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksControls.h -------------------------------------------------------------------------------- /src/Gui/timeline/TracksRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksRuler.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/TracksRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksRuler.h -------------------------------------------------------------------------------- /src/Gui/timeline/TracksScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksScene.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/TracksScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksScene.h -------------------------------------------------------------------------------- /src/Gui/timeline/TracksView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksView.cpp -------------------------------------------------------------------------------- /src/Gui/timeline/TracksView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/timeline/TracksView.h -------------------------------------------------------------------------------- /src/Gui/ui/About.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/About.ui -------------------------------------------------------------------------------- /src/Gui/ui/ClipProperty.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/ClipProperty.ui -------------------------------------------------------------------------------- /src/Gui/ui/FileBrowser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/FileBrowser.ui -------------------------------------------------------------------------------- /src/Gui/ui/LibraryWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/LibraryWidget.ui -------------------------------------------------------------------------------- /src/Gui/ui/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/MainWindow.ui -------------------------------------------------------------------------------- /src/Gui/ui/PreviewWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/PreviewWidget.ui -------------------------------------------------------------------------------- /src/Gui/ui/TagWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/TagWidget.ui -------------------------------------------------------------------------------- /src/Gui/ui/Timeline.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/Timeline.ui -------------------------------------------------------------------------------- /src/Gui/ui/WorkflowFileRendererDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/WorkflowFileRendererDialog.ui -------------------------------------------------------------------------------- /src/Gui/ui/transcode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/ui/transcode.ui -------------------------------------------------------------------------------- /src/Gui/widgets/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/widgets/CrashHandler.cpp -------------------------------------------------------------------------------- /src/Gui/widgets/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/widgets/CrashHandler.h -------------------------------------------------------------------------------- /src/Gui/widgets/CrashHandler.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/widgets/CrashHandler.ui -------------------------------------------------------------------------------- /src/Gui/widgets/TrackControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/widgets/TrackControls.cpp -------------------------------------------------------------------------------- /src/Gui/widgets/TrackControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/widgets/TrackControls.h -------------------------------------------------------------------------------- /src/Gui/widgets/TrackControls.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/widgets/TrackControls.ui -------------------------------------------------------------------------------- /src/Gui/wizard/GeneralPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/GeneralPage.cpp -------------------------------------------------------------------------------- /src/Gui/wizard/GeneralPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/GeneralPage.h -------------------------------------------------------------------------------- /src/Gui/wizard/OpenPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/OpenPage.cpp -------------------------------------------------------------------------------- /src/Gui/wizard/OpenPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/OpenPage.h -------------------------------------------------------------------------------- /src/Gui/wizard/PageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/PageFactory.h -------------------------------------------------------------------------------- /src/Gui/wizard/ProjectWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/ProjectWizard.cpp -------------------------------------------------------------------------------- /src/Gui/wizard/ProjectWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/ProjectWizard.h -------------------------------------------------------------------------------- /src/Gui/wizard/VideoPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/VideoPage.cpp -------------------------------------------------------------------------------- /src/Gui/wizard/VideoPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/VideoPage.h -------------------------------------------------------------------------------- /src/Gui/wizard/WelcomePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/WelcomePage.cpp -------------------------------------------------------------------------------- /src/Gui/wizard/WelcomePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/WelcomePage.h -------------------------------------------------------------------------------- /src/Gui/wizard/ui/GeneralPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/ui/GeneralPage.ui -------------------------------------------------------------------------------- /src/Gui/wizard/ui/OpenPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/ui/OpenPage.ui -------------------------------------------------------------------------------- /src/Gui/wizard/ui/VideoPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/ui/VideoPage.ui -------------------------------------------------------------------------------- /src/Gui/wizard/ui/WelcomePage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Gui/wizard/ui/WelcomePage.ui -------------------------------------------------------------------------------- /src/LibVLCpp/LibVLCpp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/LibVLCpp.pri -------------------------------------------------------------------------------- /src/LibVLCpp/VLCInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCInstance.cpp -------------------------------------------------------------------------------- /src/LibVLCpp/VLCInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCInstance.h -------------------------------------------------------------------------------- /src/LibVLCpp/VLCMedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCMedia.cpp -------------------------------------------------------------------------------- /src/LibVLCpp/VLCMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCMedia.h -------------------------------------------------------------------------------- /src/LibVLCpp/VLCMediaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCMediaPlayer.cpp -------------------------------------------------------------------------------- /src/LibVLCpp/VLCMediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCMediaPlayer.h -------------------------------------------------------------------------------- /src/LibVLCpp/VLCpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/LibVLCpp/VLCpp.hpp -------------------------------------------------------------------------------- /src/Library/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Library/Library.cpp -------------------------------------------------------------------------------- /src/Library/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Library/Library.h -------------------------------------------------------------------------------- /src/Library/Library.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Library/Library.pri -------------------------------------------------------------------------------- /src/Media/Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Media/Clip.cpp -------------------------------------------------------------------------------- /src/Media/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Media/Clip.h -------------------------------------------------------------------------------- /src/Media/Media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Media/Media.cpp -------------------------------------------------------------------------------- /src/Media/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Media/Media.h -------------------------------------------------------------------------------- /src/Media/Media.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Media/Media.pri -------------------------------------------------------------------------------- /src/Metadata/MetaDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Metadata/MetaDataManager.cpp -------------------------------------------------------------------------------- /src/Metadata/MetaDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Metadata/MetaDataManager.h -------------------------------------------------------------------------------- /src/Metadata/MetaDataWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Metadata/MetaDataWorker.cpp -------------------------------------------------------------------------------- /src/Metadata/MetaDataWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Metadata/MetaDataWorker.h -------------------------------------------------------------------------------- /src/Metadata/Metadata.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Metadata/Metadata.pri -------------------------------------------------------------------------------- /src/Project/ProjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Project/ProjectManager.cpp -------------------------------------------------------------------------------- /src/Project/ProjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Project/ProjectManager.h -------------------------------------------------------------------------------- /src/Project/projectManager.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Project/projectManager.pri -------------------------------------------------------------------------------- /src/Renderer/ClipRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/ClipRenderer.cpp -------------------------------------------------------------------------------- /src/Renderer/ClipRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/ClipRenderer.h -------------------------------------------------------------------------------- /src/Renderer/GenericRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/GenericRenderer.cpp -------------------------------------------------------------------------------- /src/Renderer/GenericRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/GenericRenderer.h -------------------------------------------------------------------------------- /src/Renderer/Renderer.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/Renderer.pri -------------------------------------------------------------------------------- /src/Renderer/WorkflowFileRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/WorkflowFileRenderer.cpp -------------------------------------------------------------------------------- /src/Renderer/WorkflowFileRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/WorkflowFileRenderer.h -------------------------------------------------------------------------------- /src/Renderer/WorkflowRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/WorkflowRenderer.cpp -------------------------------------------------------------------------------- /src/Renderer/WorkflowRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Renderer/WorkflowRenderer.h -------------------------------------------------------------------------------- /src/Tools/BacktraceGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/BacktraceGenerator.h -------------------------------------------------------------------------------- /src/Tools/MemoryPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/MemoryPool.hpp -------------------------------------------------------------------------------- /src/Tools/Pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/Pool.hpp -------------------------------------------------------------------------------- /src/Tools/QSingleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/QSingleton.hpp -------------------------------------------------------------------------------- /src/Tools/Singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/Singleton.hpp -------------------------------------------------------------------------------- /src/Tools/Toggleable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/Toggleable.hpp -------------------------------------------------------------------------------- /src/Tools/Tools.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/Tools.pri -------------------------------------------------------------------------------- /src/Tools/UnixBacktraceGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/UnixBacktraceGenerator.cpp -------------------------------------------------------------------------------- /src/Tools/VlmcDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/VlmcDebug.cpp -------------------------------------------------------------------------------- /src/Tools/VlmcDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/VlmcDebug.h -------------------------------------------------------------------------------- /src/Tools/WaitCondition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/WaitCondition.hpp -------------------------------------------------------------------------------- /src/Tools/Win32BacktraceGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/Win32BacktraceGenerator.cpp -------------------------------------------------------------------------------- /src/Tools/mdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Tools/mdate.h -------------------------------------------------------------------------------- /src/Workflow/AudioClipWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/AudioClipWorkflow.cpp -------------------------------------------------------------------------------- /src/Workflow/AudioClipWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/AudioClipWorkflow.h -------------------------------------------------------------------------------- /src/Workflow/ClipWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/ClipWorkflow.cpp -------------------------------------------------------------------------------- /src/Workflow/ClipWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/ClipWorkflow.h -------------------------------------------------------------------------------- /src/Workflow/ImageClipWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/ImageClipWorkflow.cpp -------------------------------------------------------------------------------- /src/Workflow/ImageClipWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/ImageClipWorkflow.h -------------------------------------------------------------------------------- /src/Workflow/MainWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/MainWorkflow.cpp -------------------------------------------------------------------------------- /src/Workflow/MainWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/MainWorkflow.h -------------------------------------------------------------------------------- /src/Workflow/StackedBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/StackedBuffer.hpp -------------------------------------------------------------------------------- /src/Workflow/TrackHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/TrackHandler.cpp -------------------------------------------------------------------------------- /src/Workflow/TrackHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/TrackHandler.h -------------------------------------------------------------------------------- /src/Workflow/TrackWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/TrackWorkflow.cpp -------------------------------------------------------------------------------- /src/Workflow/TrackWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/TrackWorkflow.h -------------------------------------------------------------------------------- /src/Workflow/VideoClipWorkflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/VideoClipWorkflow.cpp -------------------------------------------------------------------------------- /src/Workflow/VideoClipWorkflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/VideoClipWorkflow.h -------------------------------------------------------------------------------- /src/Workflow/Workflow.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/Workflow/Workflow.pri -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/vlmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/vlmc.cpp -------------------------------------------------------------------------------- /src/vlmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/vlmc.h -------------------------------------------------------------------------------- /src/winvlmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/src/winvlmc.cpp -------------------------------------------------------------------------------- /ts/.gitignore: -------------------------------------------------------------------------------- 1 | *.qm 2 | ressources-ts.qrc 3 | -------------------------------------------------------------------------------- /ts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/CMakeLists.txt -------------------------------------------------------------------------------- /ts/vlmc_ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_ca_ES.ts -------------------------------------------------------------------------------- /ts/vlmc_cs_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_cs_CZ.ts -------------------------------------------------------------------------------- /ts/vlmc_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_es_ES.ts -------------------------------------------------------------------------------- /ts/vlmc_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_fr_FR.ts -------------------------------------------------------------------------------- /ts/vlmc_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_it_IT.ts -------------------------------------------------------------------------------- /ts/vlmc_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_ja_JP.ts -------------------------------------------------------------------------------- /ts/vlmc_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_nl.ts -------------------------------------------------------------------------------- /ts/vlmc_pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_pl_PL.ts -------------------------------------------------------------------------------- /ts/vlmc_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_pt_BR.ts -------------------------------------------------------------------------------- /ts/vlmc_ro_RO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_ro_RO.ts -------------------------------------------------------------------------------- /ts/vlmc_ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_ru_RU.ts -------------------------------------------------------------------------------- /ts/vlmc_sk_SK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_sk_SK.ts -------------------------------------------------------------------------------- /ts/vlmc_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_sv.ts -------------------------------------------------------------------------------- /ts/vlmc_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_uk.ts -------------------------------------------------------------------------------- /ts/vlmc_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLMC/vlmc/HEAD/ts/vlmc_zh_CN.ts --------------------------------------------------------------------------------