├── .github └── workflows │ └── MOVMetaEdit_Checks.yml ├── .gitignore ├── .lgtm.yml ├── History_CLI.txt ├── History_GUI.txt ├── LICENSE ├── License.html ├── Project ├── GNU │ ├── CLI │ │ ├── AddThisToRoot_CLI_compile.sh │ │ ├── Makefile.am │ │ ├── autogen │ │ ├── autogen.sh │ │ ├── configure.ac │ │ └── test │ │ │ ├── test.sh │ │ │ ├── test1.md5sums │ │ │ ├── test1.txt │ │ │ ├── test10.md5sums │ │ │ ├── test10.txt │ │ │ ├── test2.md5sums │ │ │ ├── test2.txt │ │ │ ├── test3.md5sums │ │ │ ├── test3.txt │ │ │ ├── test4.md5sums │ │ │ ├── test4.txt │ │ │ ├── test5.md5sums │ │ │ ├── test5.txt │ │ │ ├── test6.md5sums │ │ │ ├── test6.txt │ │ │ ├── test7.md5sums │ │ │ ├── test7.txt │ │ │ ├── test8.md5sums │ │ │ ├── test8.txt │ │ │ ├── test9.md5sums │ │ │ └── test9.txt │ ├── PKGBUILD │ ├── movmetaedit.dsc │ └── movmetaedit.spec ├── MSVC2022 │ ├── CLI │ │ ├── MOVMetaEdit_CLI.vcxproj │ │ └── MOVMetaEdit_CLI.vcxproj.filters │ └── MOVMetaEdit.sln ├── Mac │ ├── BR_extension_CLI.sh │ ├── BR_extension_GUI.sh │ ├── Info.plist │ ├── Logo_White.icns │ ├── Osascript_CLI.sh │ ├── Osascript_GUI.sh │ └── mkdmg.sh ├── Qt │ ├── AddThisToRoot_GUI_compile.sh │ ├── movmetaedit-gui.desktop │ ├── movmetaedit-gui.kde3.desktop │ ├── movmetaedit-gui.kde4.desktop │ ├── movmetaedit-gui.metainfo.xml │ ├── movmetaedit-gui.pro │ ├── movmetaedit-gui.rc │ └── prepare └── version.txt ├── README.md ├── Source ├── CLI │ ├── Config.h │ ├── Help.cpp │ └── Help.h ├── Common │ ├── AdID.cpp │ ├── AdID.h │ ├── Mac_Helpers.h │ ├── Mac_Helpers.mm │ ├── config.h │ ├── mp4 │ │ ├── mp4_.cpp │ │ ├── mp4_.h │ │ ├── mp4_free.cpp │ │ ├── mp4_mdat.cpp │ │ ├── mp4_moov.cpp │ │ ├── mp4_moov_meta.cpp │ │ ├── mp4_moov_meta_hdlr.cpp │ │ ├── mp4_moov_meta_ilst.cpp │ │ ├── mp4_moov_meta_keys.cpp │ │ ├── mp4_moov_trak.cpp │ │ ├── mp4_moov_trak_mdia.cpp │ │ ├── mp4_moov_trak_mdia_mdhd.cpp │ │ ├── mp4_moov_trak_mdia_minf.cpp │ │ ├── mp4_moov_trak_mdia_minf_gmhd.cpp │ │ ├── mp4_moov_trak_mdia_minf_gmhd_tmcd.cpp │ │ ├── mp4_moov_trak_mdia_minf_smhd.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxxSound.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxxUnknown.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxxVideo.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_chan.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_clap.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_clli.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_colr.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_fiel.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_gama.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_mdcv.cpp │ │ ├── mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_pasp.cpp │ │ ├── mp4_moov_trak_mdia_minf_vmhd.cpp │ │ ├── mp4_moov_trak_tapt.cpp │ │ ├── mp4_moov_trak_tapt_xxxx.cpp │ │ ├── mp4_moov_trak_tkhd.cpp │ │ ├── mp4_moov_trak_tref.cpp │ │ └── mp4_moov_trak_tref_tmcd.cpp │ ├── mp4_Base.cpp │ ├── mp4_Base.h │ ├── mp4_Base_parsing.cpp │ ├── mp4_Handler.cpp │ └── mp4_Handler.h ├── GUI │ └── Qt │ │ ├── aboutdialog.cpp │ │ ├── aboutdialog.h │ │ ├── aboutdialog.ui │ │ ├── channeldialog.cpp │ │ ├── channeldialog.h │ │ ├── channeldialog.ui │ │ ├── chantablewidget.cpp │ │ ├── chantablewidget.h │ │ ├── core.cpp │ │ ├── core.h │ │ ├── helpdialog.cpp │ │ ├── helpdialog.h │ │ ├── helpdialog.ui │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── tablewidget.cpp │ │ ├── tablewidget.h │ │ ├── techtablewidget.cpp │ │ └── techtablewidget.h ├── Install │ ├── MOV_MetaEdit_GUI_Windows_i386.nsi │ └── MOV_MetaEdit_GUI_Windows_x64.nsi ├── Resource │ ├── Documentation │ │ ├── Contact.html │ │ ├── Description.html │ │ ├── Technical.html │ │ ├── UniversalAdID.html │ │ ├── UniversalAdID_WithError.png │ │ └── index.html │ ├── Image │ │ ├── About.png │ │ ├── About.svg │ │ ├── Ad-iD.png │ │ ├── File_Close.png │ │ ├── File_Close.svg │ │ ├── File_Open_Directory.png │ │ ├── File_Open_Directory.svg │ │ ├── File_Open_File.svg │ │ ├── File_Open_Files.png │ │ ├── File_Save.png │ │ ├── File_Save.svg │ │ ├── Help.png │ │ ├── Help.svg │ │ ├── Icon.icns │ │ ├── Icon.ico │ │ ├── Icon.png │ │ ├── MOVMetaEdit.svg │ │ ├── Options_Prefs.png │ │ ├── Options_Prefs.svg │ │ ├── View_AdId.png │ │ ├── View_Technical.png │ │ └── Windows_Finish.bmp │ └── Resource.qrc ├── ThirdParty │ ├── json │ │ └── json.hpp │ └── tfsxml │ │ ├── tfsxml.c │ │ └── tfsxml.h ├── ZenLib │ ├── BitStream.h │ ├── BitStream_Fast.h │ ├── BitStream_LE.h │ ├── Conf.cpp │ ├── Conf.h │ ├── Conf_Internal.h │ ├── CriticalSection.cpp │ ├── CriticalSection.h │ ├── Dir.cpp │ ├── Dir.h │ ├── File.cpp │ ├── File.h │ ├── FileName.cpp │ ├── FileName.h │ ├── InfoMap.cpp │ ├── InfoMap.h │ ├── MemoryDebug.cpp │ ├── MemoryDebug.h │ ├── MemoryUtils.h │ ├── OS_Utils.cpp │ ├── OS_Utils.h │ ├── PreComp.cpp │ ├── PreComp.h │ ├── Thread.cpp │ ├── Thread.h │ ├── Trace.h │ ├── Translation.cpp │ ├── Translation.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Ztring.cpp │ ├── Ztring.h │ ├── ZtringList.cpp │ ├── ZtringList.h │ ├── ZtringListList.cpp │ ├── ZtringListList.h │ ├── ZtringListListF.cpp │ ├── ZtringListListF.h │ ├── int128s.cpp │ ├── int128s.h │ ├── int128u.cpp │ └── int128u.h ├── movedit_atomread.cpp ├── movedit_atomread.h ├── movedit_main.cpp ├── movedit_structure.cpp └── movedit_structure.h └── debian ├── changelog ├── compat ├── control ├── copyright ├── movmetaedit-gui.dirs ├── movmetaedit-gui.install ├── movmetaedit.dirs ├── movmetaedit.install ├── rules └── source └── format /.github/workflows/MOVMetaEdit_Checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/.github/workflows/MOVMetaEdit_Checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /History_CLI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/History_CLI.txt -------------------------------------------------------------------------------- /History_GUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/History_GUI.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/LICENSE -------------------------------------------------------------------------------- /License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/License.html -------------------------------------------------------------------------------- /Project/GNU/CLI/AddThisToRoot_CLI_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/AddThisToRoot_CLI_compile.sh -------------------------------------------------------------------------------- /Project/GNU/CLI/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/Makefile.am -------------------------------------------------------------------------------- /Project/GNU/CLI/autogen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/autogen -------------------------------------------------------------------------------- /Project/GNU/CLI/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/autogen.sh -------------------------------------------------------------------------------- /Project/GNU/CLI/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/configure.ac -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test.sh -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test1.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test1.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test1.txt: -------------------------------------------------------------------------------- 1 | movmetaedit --adid ADID01234567 Files/*/* 2 | -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test10.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test10.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test10.txt -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test2.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test2.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test2.txt -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test3.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test3.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test3.txt -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test4.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test4.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test4.txt: -------------------------------------------------------------------------------- 1 | movmetaedit --par 9:10 Files/*/* 2 | -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test5.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test5.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test5.txt: -------------------------------------------------------------------------------- 1 | movmetaedit --width-scale 0.9 Files/*/* 2 | -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test6.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test6.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test6.txt: -------------------------------------------------------------------------------- 1 | movmetaedit -par 9:10 --width-scale 0.9 Files/*/* 2 | -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test7.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test7.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test7.txt -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test8.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test8.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test8.txt -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test9.md5sums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test9.md5sums -------------------------------------------------------------------------------- /Project/GNU/CLI/test/test9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/CLI/test/test9.txt -------------------------------------------------------------------------------- /Project/GNU/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/PKGBUILD -------------------------------------------------------------------------------- /Project/GNU/movmetaedit.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/movmetaedit.dsc -------------------------------------------------------------------------------- /Project/GNU/movmetaedit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/GNU/movmetaedit.spec -------------------------------------------------------------------------------- /Project/MSVC2022/CLI/MOVMetaEdit_CLI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/MSVC2022/CLI/MOVMetaEdit_CLI.vcxproj -------------------------------------------------------------------------------- /Project/MSVC2022/CLI/MOVMetaEdit_CLI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/MSVC2022/CLI/MOVMetaEdit_CLI.vcxproj.filters -------------------------------------------------------------------------------- /Project/MSVC2022/MOVMetaEdit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/MSVC2022/MOVMetaEdit.sln -------------------------------------------------------------------------------- /Project/Mac/BR_extension_CLI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Mac/BR_extension_CLI.sh -------------------------------------------------------------------------------- /Project/Mac/BR_extension_GUI.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | ./GUI_Compile.sh 4 | -------------------------------------------------------------------------------- /Project/Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Mac/Info.plist -------------------------------------------------------------------------------- /Project/Mac/Logo_White.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Mac/Logo_White.icns -------------------------------------------------------------------------------- /Project/Mac/Osascript_CLI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Mac/Osascript_CLI.sh -------------------------------------------------------------------------------- /Project/Mac/Osascript_GUI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Mac/Osascript_GUI.sh -------------------------------------------------------------------------------- /Project/Mac/mkdmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Mac/mkdmg.sh -------------------------------------------------------------------------------- /Project/Qt/AddThisToRoot_GUI_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/AddThisToRoot_GUI_compile.sh -------------------------------------------------------------------------------- /Project/Qt/movmetaedit-gui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/movmetaedit-gui.desktop -------------------------------------------------------------------------------- /Project/Qt/movmetaedit-gui.kde3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/movmetaedit-gui.kde3.desktop -------------------------------------------------------------------------------- /Project/Qt/movmetaedit-gui.kde4.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/movmetaedit-gui.kde4.desktop -------------------------------------------------------------------------------- /Project/Qt/movmetaedit-gui.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/movmetaedit-gui.metainfo.xml -------------------------------------------------------------------------------- /Project/Qt/movmetaedit-gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/movmetaedit-gui.pro -------------------------------------------------------------------------------- /Project/Qt/movmetaedit-gui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/movmetaedit-gui.rc -------------------------------------------------------------------------------- /Project/Qt/prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Project/Qt/prepare -------------------------------------------------------------------------------- /Project/version.txt: -------------------------------------------------------------------------------- 1 | 25.09 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/README.md -------------------------------------------------------------------------------- /Source/CLI/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/CLI/Config.h -------------------------------------------------------------------------------- /Source/CLI/Help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/CLI/Help.cpp -------------------------------------------------------------------------------- /Source/CLI/Help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/CLI/Help.h -------------------------------------------------------------------------------- /Source/Common/AdID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/AdID.cpp -------------------------------------------------------------------------------- /Source/Common/AdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/AdID.h -------------------------------------------------------------------------------- /Source/Common/Mac_Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/Mac_Helpers.h -------------------------------------------------------------------------------- /Source/Common/Mac_Helpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/Mac_Helpers.mm -------------------------------------------------------------------------------- /Source/Common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/config.h -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_.h -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_free.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_mdat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_mdat.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_meta.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_meta_hdlr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_meta_hdlr.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_meta_ilst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_meta_ilst.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_meta_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_meta_keys.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_mdhd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_mdhd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_gmhd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_gmhd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_gmhd_tmcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_gmhd_tmcd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_smhd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_smhd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxxSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxxSound.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxxUnknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxxUnknown.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxxVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxxVideo.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_chan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_chan.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_clap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_clap.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_clli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_clli.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_colr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_colr.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_fiel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_fiel.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_gama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_gama.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_mdcv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_mdcv.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_pasp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_stbl_stsd_xxxx_pasp.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_mdia_minf_vmhd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_mdia_minf_vmhd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_tapt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_tapt.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_tapt_xxxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_tapt_xxxx.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_tkhd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_tkhd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_tref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_tref.cpp -------------------------------------------------------------------------------- /Source/Common/mp4/mp4_moov_trak_tref_tmcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4/mp4_moov_trak_tref_tmcd.cpp -------------------------------------------------------------------------------- /Source/Common/mp4_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4_Base.cpp -------------------------------------------------------------------------------- /Source/Common/mp4_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4_Base.h -------------------------------------------------------------------------------- /Source/Common/mp4_Base_parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4_Base_parsing.cpp -------------------------------------------------------------------------------- /Source/Common/mp4_Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4_Handler.cpp -------------------------------------------------------------------------------- /Source/Common/mp4_Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Common/mp4_Handler.h -------------------------------------------------------------------------------- /Source/GUI/Qt/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/aboutdialog.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/aboutdialog.h -------------------------------------------------------------------------------- /Source/GUI/Qt/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/aboutdialog.ui -------------------------------------------------------------------------------- /Source/GUI/Qt/channeldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/channeldialog.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/channeldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/channeldialog.h -------------------------------------------------------------------------------- /Source/GUI/Qt/channeldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/channeldialog.ui -------------------------------------------------------------------------------- /Source/GUI/Qt/chantablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/chantablewidget.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/chantablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/chantablewidget.h -------------------------------------------------------------------------------- /Source/GUI/Qt/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/core.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/core.h -------------------------------------------------------------------------------- /Source/GUI/Qt/helpdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/helpdialog.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/helpdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/helpdialog.h -------------------------------------------------------------------------------- /Source/GUI/Qt/helpdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/helpdialog.ui -------------------------------------------------------------------------------- /Source/GUI/Qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/main.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/mainwindow.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/mainwindow.h -------------------------------------------------------------------------------- /Source/GUI/Qt/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/mainwindow.ui -------------------------------------------------------------------------------- /Source/GUI/Qt/tablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/tablewidget.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/tablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/tablewidget.h -------------------------------------------------------------------------------- /Source/GUI/Qt/techtablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/techtablewidget.cpp -------------------------------------------------------------------------------- /Source/GUI/Qt/techtablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/GUI/Qt/techtablewidget.h -------------------------------------------------------------------------------- /Source/Install/MOV_MetaEdit_GUI_Windows_i386.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Install/MOV_MetaEdit_GUI_Windows_i386.nsi -------------------------------------------------------------------------------- /Source/Install/MOV_MetaEdit_GUI_Windows_x64.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Install/MOV_MetaEdit_GUI_Windows_x64.nsi -------------------------------------------------------------------------------- /Source/Resource/Documentation/Contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Documentation/Contact.html -------------------------------------------------------------------------------- /Source/Resource/Documentation/Description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Documentation/Description.html -------------------------------------------------------------------------------- /Source/Resource/Documentation/Technical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Documentation/Technical.html -------------------------------------------------------------------------------- /Source/Resource/Documentation/UniversalAdID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Documentation/UniversalAdID.html -------------------------------------------------------------------------------- /Source/Resource/Documentation/UniversalAdID_WithError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Documentation/UniversalAdID_WithError.png -------------------------------------------------------------------------------- /Source/Resource/Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Documentation/index.html -------------------------------------------------------------------------------- /Source/Resource/Image/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/About.png -------------------------------------------------------------------------------- /Source/Resource/Image/About.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/About.svg -------------------------------------------------------------------------------- /Source/Resource/Image/Ad-iD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Ad-iD.png -------------------------------------------------------------------------------- /Source/Resource/Image/File_Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Close.png -------------------------------------------------------------------------------- /Source/Resource/Image/File_Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Close.svg -------------------------------------------------------------------------------- /Source/Resource/Image/File_Open_Directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Open_Directory.png -------------------------------------------------------------------------------- /Source/Resource/Image/File_Open_Directory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Open_Directory.svg -------------------------------------------------------------------------------- /Source/Resource/Image/File_Open_File.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Open_File.svg -------------------------------------------------------------------------------- /Source/Resource/Image/File_Open_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Open_Files.png -------------------------------------------------------------------------------- /Source/Resource/Image/File_Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Save.png -------------------------------------------------------------------------------- /Source/Resource/Image/File_Save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/File_Save.svg -------------------------------------------------------------------------------- /Source/Resource/Image/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Help.png -------------------------------------------------------------------------------- /Source/Resource/Image/Help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Help.svg -------------------------------------------------------------------------------- /Source/Resource/Image/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Icon.icns -------------------------------------------------------------------------------- /Source/Resource/Image/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Icon.ico -------------------------------------------------------------------------------- /Source/Resource/Image/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Icon.png -------------------------------------------------------------------------------- /Source/Resource/Image/MOVMetaEdit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/MOVMetaEdit.svg -------------------------------------------------------------------------------- /Source/Resource/Image/Options_Prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Options_Prefs.png -------------------------------------------------------------------------------- /Source/Resource/Image/Options_Prefs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Options_Prefs.svg -------------------------------------------------------------------------------- /Source/Resource/Image/View_AdId.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/View_AdId.png -------------------------------------------------------------------------------- /Source/Resource/Image/View_Technical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/View_Technical.png -------------------------------------------------------------------------------- /Source/Resource/Image/Windows_Finish.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Image/Windows_Finish.bmp -------------------------------------------------------------------------------- /Source/Resource/Resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/Resource/Resource.qrc -------------------------------------------------------------------------------- /Source/ThirdParty/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ThirdParty/json/json.hpp -------------------------------------------------------------------------------- /Source/ThirdParty/tfsxml/tfsxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ThirdParty/tfsxml/tfsxml.c -------------------------------------------------------------------------------- /Source/ThirdParty/tfsxml/tfsxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ThirdParty/tfsxml/tfsxml.h -------------------------------------------------------------------------------- /Source/ZenLib/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/BitStream.h -------------------------------------------------------------------------------- /Source/ZenLib/BitStream_Fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/BitStream_Fast.h -------------------------------------------------------------------------------- /Source/ZenLib/BitStream_LE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/BitStream_LE.h -------------------------------------------------------------------------------- /Source/ZenLib/Conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Conf.cpp -------------------------------------------------------------------------------- /Source/ZenLib/Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Conf.h -------------------------------------------------------------------------------- /Source/ZenLib/Conf_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Conf_Internal.h -------------------------------------------------------------------------------- /Source/ZenLib/CriticalSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/CriticalSection.cpp -------------------------------------------------------------------------------- /Source/ZenLib/CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/CriticalSection.h -------------------------------------------------------------------------------- /Source/ZenLib/Dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Dir.cpp -------------------------------------------------------------------------------- /Source/ZenLib/Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Dir.h -------------------------------------------------------------------------------- /Source/ZenLib/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/File.cpp -------------------------------------------------------------------------------- /Source/ZenLib/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/File.h -------------------------------------------------------------------------------- /Source/ZenLib/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/FileName.cpp -------------------------------------------------------------------------------- /Source/ZenLib/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/FileName.h -------------------------------------------------------------------------------- /Source/ZenLib/InfoMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/InfoMap.cpp -------------------------------------------------------------------------------- /Source/ZenLib/InfoMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/InfoMap.h -------------------------------------------------------------------------------- /Source/ZenLib/MemoryDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/MemoryDebug.cpp -------------------------------------------------------------------------------- /Source/ZenLib/MemoryDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/MemoryDebug.h -------------------------------------------------------------------------------- /Source/ZenLib/MemoryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/MemoryUtils.h -------------------------------------------------------------------------------- /Source/ZenLib/OS_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/OS_Utils.cpp -------------------------------------------------------------------------------- /Source/ZenLib/OS_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/OS_Utils.h -------------------------------------------------------------------------------- /Source/ZenLib/PreComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/PreComp.cpp -------------------------------------------------------------------------------- /Source/ZenLib/PreComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/PreComp.h -------------------------------------------------------------------------------- /Source/ZenLib/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Thread.cpp -------------------------------------------------------------------------------- /Source/ZenLib/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Thread.h -------------------------------------------------------------------------------- /Source/ZenLib/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Trace.h -------------------------------------------------------------------------------- /Source/ZenLib/Translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Translation.cpp -------------------------------------------------------------------------------- /Source/ZenLib/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Translation.h -------------------------------------------------------------------------------- /Source/ZenLib/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Utils.cpp -------------------------------------------------------------------------------- /Source/ZenLib/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Utils.h -------------------------------------------------------------------------------- /Source/ZenLib/Ztring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Ztring.cpp -------------------------------------------------------------------------------- /Source/ZenLib/Ztring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/Ztring.h -------------------------------------------------------------------------------- /Source/ZenLib/ZtringList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/ZtringList.cpp -------------------------------------------------------------------------------- /Source/ZenLib/ZtringList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/ZtringList.h -------------------------------------------------------------------------------- /Source/ZenLib/ZtringListList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/ZtringListList.cpp -------------------------------------------------------------------------------- /Source/ZenLib/ZtringListList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/ZtringListList.h -------------------------------------------------------------------------------- /Source/ZenLib/ZtringListListF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/ZtringListListF.cpp -------------------------------------------------------------------------------- /Source/ZenLib/ZtringListListF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/ZtringListListF.h -------------------------------------------------------------------------------- /Source/ZenLib/int128s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/int128s.cpp -------------------------------------------------------------------------------- /Source/ZenLib/int128s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/int128s.h -------------------------------------------------------------------------------- /Source/ZenLib/int128u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/int128u.cpp -------------------------------------------------------------------------------- /Source/ZenLib/int128u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/ZenLib/int128u.h -------------------------------------------------------------------------------- /Source/movedit_atomread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/movedit_atomread.cpp -------------------------------------------------------------------------------- /Source/movedit_atomread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/movedit_atomread.h -------------------------------------------------------------------------------- /Source/movedit_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/movedit_main.cpp -------------------------------------------------------------------------------- /Source/movedit_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/movedit_structure.cpp -------------------------------------------------------------------------------- /Source/movedit_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/Source/movedit_structure.h -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/movmetaedit-gui.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/movmetaedit-gui.dirs -------------------------------------------------------------------------------- /debian/movmetaedit-gui.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/movmetaedit-gui.install -------------------------------------------------------------------------------- /debian/movmetaedit.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | usr/share/doc/movmetaedit 3 | -------------------------------------------------------------------------------- /debian/movmetaedit.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/movmetaedit.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MediaArea/MOVMetaEdit/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | --------------------------------------------------------------------------------