├── AvsP.ico ├── README.md ├── avisynth.py ├── avisynth_c.h ├── avisynth_cffi.py ├── avs ├── capi.h ├── config.h └── types.h ├── avsp.py ├── cfunc.py ├── cfunc ├── Pre-Compiled.txt ├── x64 │ └── cfunc.pyd └── x86 │ └── cfunc.pyd ├── changelog.txt ├── copying.txt ├── cpuid.py ├── dpi.py ├── filterdb.dat ├── func.py ├── global_vars.py ├── help ├── About.html ├── Download.html ├── Macros.html ├── Overview.html ├── Text.html ├── Translation.html ├── UserSliders.html ├── Video.html ├── images │ ├── avsp_autocomplete.jpg │ ├── avsp_calltip.jpg │ ├── avsp_calltip2.jpg │ ├── avsp_calltip3.jpg │ ├── avsp_cropeditor.jpg │ ├── avsp_customizevideostatusbar.jpg │ ├── avsp_exportfilters.jpg │ ├── avsp_openwith.jpg │ ├── avsp_optionsfilters.jpg │ ├── avsp_optionsfilters2.jpg │ ├── avsp_optionsfonts.jpg │ ├── avsp_optionsgeneral.jpg │ ├── avsp_templates.jpg │ ├── avsp_toggletagafter.jpg │ ├── avsp_toggletagbefore.jpg │ ├── avsp_toggletagvideo.jpg │ ├── avsp_toolbar.jpg │ ├── avsp_trimeditor.jpg │ ├── avsp_usersliderafter.jpg │ ├── avsp_usersliderbefore.jpg │ ├── avsp_usersliderdialog.jpg │ ├── avsp_usersliderdialog2.jpg │ ├── avsp_usersliderseparator.jpg │ ├── avsp_userslidervideo.jpg │ ├── avsp_videobookmarks.jpg │ ├── avsp_videopreview.jpg │ ├── donation.gif │ └── logos │ │ ├── 1.gif │ │ └── img_background.gif ├── index.html └── stylesheets │ ├── default.css │ ├── rest2web.css │ └── voidspace_docutils2.css ├── i18n.py ├── icons.py ├── license_cpuid ├── macros ├── Bookmarks at Intervals.py ├── Bookmarks to Chapter.py ├── Bookmarks to Trims.py ├── ConditionalReader file from bookmarks.py ├── CopyPixelinfo.py ├── DeleteFrame.py ├── DuplicateFrame.py ├── Example (Resize) │ ├── [01].py │ ├── [02].py │ ├── [03].py │ ├── [04].py │ ├── [10] ---.py │ ├── [11].py │ ├── [12].py │ ├── [13].py │ ├── [14].py │ ├── [20] ---.py │ ├── [21] Customized.py │ ├── [30] ---.py │ ├── [31] rrr bilinear.py │ ├── [32] rrr bicubic.py │ ├── [33] rrr lanczos.py │ ├── [34] RRR spline36.py │ ├── [40] ---.py │ ├── [41] ccc create new tab.py │ └── [42] CCC force mod 2.py ├── Examples │ ├── [0] Template example.py │ ├── [1] Batch example.py │ ├── [2] Image processing.py │ ├── [3] ---.py │ ├── [3] Manual Telecide.py │ ├── [4] Secondary preview.py │ ├── [5] Encoding example.py │ ├── [6] Encoding example 2.py │ └── [7] Optimize Sliders.py ├── Extra │ ├── DeleteEncodings.py │ └── Save Image_rgb48.py ├── Import bookmarks from file.py ├── Open Image Sequence.py ├── Preview from current point.py ├── PreviewEncode.py ├── Random Clip Order.py ├── Run analysis pass.py ├── Save Image Sequence.py ├── Selected trims to selections.py ├── Shift Bookmarks Div 2.py ├── Shift Bookmarks by frames.py ├── startup.txt └── startup_avs.txt ├── previewFilterExample.avs ├── previewFilterExample.txt ├── pyavs.py ├── pyavs_avifile.py ├── readme_Audio.txt ├── readme_D3D_Window.txt ├── readme_FastClip.txt ├── readme_FullscreenZoom.txt ├── readme_LocateFrame.txt ├── readme_NumberWheel.txt ├── readme_ScriptSelector.txt ├── readme_SplitClip.txt ├── readme_Tablist.txt ├── readme_applyFilters.txt ├── readme_d2v_based_template.txt ├── readme_resampleFilter.txt ├── readme_threads.txt ├── run.py ├── setup.py ├── tools ├── MP3Info.py ├── ToolsMenu.py ├── avs2avi_gui.py ├── encoder_gui.py ├── ffmpeg.presets.default ├── resize_calc.py └── x264.presets.default ├── translations ├── translation_fra.py ├── translation_ger.py ├── translation_jpn.py ├── translation_por.py ├── translation_readme.txt ├── translation_rus.py └── translation_spa.py ├── utils.py └── wxp.py /AvsP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/AvsP.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/README.md -------------------------------------------------------------------------------- /avisynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avisynth.py -------------------------------------------------------------------------------- /avisynth_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avisynth_c.h -------------------------------------------------------------------------------- /avisynth_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avisynth_cffi.py -------------------------------------------------------------------------------- /avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avs/capi.h -------------------------------------------------------------------------------- /avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avs/config.h -------------------------------------------------------------------------------- /avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avs/types.h -------------------------------------------------------------------------------- /avsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/avsp.py -------------------------------------------------------------------------------- /cfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/cfunc.py -------------------------------------------------------------------------------- /cfunc/Pre-Compiled.txt: -------------------------------------------------------------------------------- 1 | cfunc.py compiled private build -------------------------------------------------------------------------------- /cfunc/x64/cfunc.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/cfunc/x64/cfunc.pyd -------------------------------------------------------------------------------- /cfunc/x86/cfunc.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/cfunc/x86/cfunc.pyd -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/changelog.txt -------------------------------------------------------------------------------- /copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/copying.txt -------------------------------------------------------------------------------- /cpuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/cpuid.py -------------------------------------------------------------------------------- /dpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/dpi.py -------------------------------------------------------------------------------- /filterdb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/filterdb.dat -------------------------------------------------------------------------------- /func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/func.py -------------------------------------------------------------------------------- /global_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/global_vars.py -------------------------------------------------------------------------------- /help/About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/About.html -------------------------------------------------------------------------------- /help/Download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/Download.html -------------------------------------------------------------------------------- /help/Macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/Macros.html -------------------------------------------------------------------------------- /help/Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/Overview.html -------------------------------------------------------------------------------- /help/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/Text.html -------------------------------------------------------------------------------- /help/Translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/Translation.html -------------------------------------------------------------------------------- /help/UserSliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/UserSliders.html -------------------------------------------------------------------------------- /help/Video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/Video.html -------------------------------------------------------------------------------- /help/images/avsp_autocomplete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_autocomplete.jpg -------------------------------------------------------------------------------- /help/images/avsp_calltip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_calltip.jpg -------------------------------------------------------------------------------- /help/images/avsp_calltip2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_calltip2.jpg -------------------------------------------------------------------------------- /help/images/avsp_calltip3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_calltip3.jpg -------------------------------------------------------------------------------- /help/images/avsp_cropeditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_cropeditor.jpg -------------------------------------------------------------------------------- /help/images/avsp_customizevideostatusbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_customizevideostatusbar.jpg -------------------------------------------------------------------------------- /help/images/avsp_exportfilters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_exportfilters.jpg -------------------------------------------------------------------------------- /help/images/avsp_openwith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_openwith.jpg -------------------------------------------------------------------------------- /help/images/avsp_optionsfilters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_optionsfilters.jpg -------------------------------------------------------------------------------- /help/images/avsp_optionsfilters2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_optionsfilters2.jpg -------------------------------------------------------------------------------- /help/images/avsp_optionsfonts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_optionsfonts.jpg -------------------------------------------------------------------------------- /help/images/avsp_optionsgeneral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_optionsgeneral.jpg -------------------------------------------------------------------------------- /help/images/avsp_templates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_templates.jpg -------------------------------------------------------------------------------- /help/images/avsp_toggletagafter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_toggletagafter.jpg -------------------------------------------------------------------------------- /help/images/avsp_toggletagbefore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_toggletagbefore.jpg -------------------------------------------------------------------------------- /help/images/avsp_toggletagvideo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_toggletagvideo.jpg -------------------------------------------------------------------------------- /help/images/avsp_toolbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_toolbar.jpg -------------------------------------------------------------------------------- /help/images/avsp_trimeditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_trimeditor.jpg -------------------------------------------------------------------------------- /help/images/avsp_usersliderafter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_usersliderafter.jpg -------------------------------------------------------------------------------- /help/images/avsp_usersliderbefore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_usersliderbefore.jpg -------------------------------------------------------------------------------- /help/images/avsp_usersliderdialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_usersliderdialog.jpg -------------------------------------------------------------------------------- /help/images/avsp_usersliderdialog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_usersliderdialog2.jpg -------------------------------------------------------------------------------- /help/images/avsp_usersliderseparator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_usersliderseparator.jpg -------------------------------------------------------------------------------- /help/images/avsp_userslidervideo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_userslidervideo.jpg -------------------------------------------------------------------------------- /help/images/avsp_videobookmarks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_videobookmarks.jpg -------------------------------------------------------------------------------- /help/images/avsp_videopreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/avsp_videopreview.jpg -------------------------------------------------------------------------------- /help/images/donation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/donation.gif -------------------------------------------------------------------------------- /help/images/logos/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/logos/1.gif -------------------------------------------------------------------------------- /help/images/logos/img_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/images/logos/img_background.gif -------------------------------------------------------------------------------- /help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/index.html -------------------------------------------------------------------------------- /help/stylesheets/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/stylesheets/default.css -------------------------------------------------------------------------------- /help/stylesheets/rest2web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/stylesheets/rest2web.css -------------------------------------------------------------------------------- /help/stylesheets/voidspace_docutils2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/help/stylesheets/voidspace_docutils2.css -------------------------------------------------------------------------------- /i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/i18n.py -------------------------------------------------------------------------------- /icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/icons.py -------------------------------------------------------------------------------- /license_cpuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/license_cpuid -------------------------------------------------------------------------------- /macros/Bookmarks at Intervals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Bookmarks at Intervals.py -------------------------------------------------------------------------------- /macros/Bookmarks to Chapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Bookmarks to Chapter.py -------------------------------------------------------------------------------- /macros/Bookmarks to Trims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Bookmarks to Trims.py -------------------------------------------------------------------------------- /macros/ConditionalReader file from bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/ConditionalReader file from bookmarks.py -------------------------------------------------------------------------------- /macros/CopyPixelinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/CopyPixelinfo.py -------------------------------------------------------------------------------- /macros/DeleteFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/DeleteFrame.py -------------------------------------------------------------------------------- /macros/DuplicateFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/DuplicateFrame.py -------------------------------------------------------------------------------- /macros/Example (Resize)/[01].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[01].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[02].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[02].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[03].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[03].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[04].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[04].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[10] ---.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[11].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[11].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[12].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[12].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[13].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[13].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[14].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[14].py -------------------------------------------------------------------------------- /macros/Example (Resize)/[20] ---.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[21] Customized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[21] Customized.py -------------------------------------------------------------------------------- /macros/Example (Resize)/[30] ---.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[31] rrr bilinear.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[32] rrr bicubic.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[33] rrr lanczos.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[34] RRR spline36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Example (Resize)/[34] RRR spline36.py -------------------------------------------------------------------------------- /macros/Example (Resize)/[40] ---.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[41] ccc create new tab.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Example (Resize)/[42] CCC force mod 2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Examples/[0] Template example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[0] Template example.py -------------------------------------------------------------------------------- /macros/Examples/[1] Batch example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[1] Batch example.py -------------------------------------------------------------------------------- /macros/Examples/[2] Image processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[2] Image processing.py -------------------------------------------------------------------------------- /macros/Examples/[3] ---.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/Examples/[3] Manual Telecide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[3] Manual Telecide.py -------------------------------------------------------------------------------- /macros/Examples/[4] Secondary preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[4] Secondary preview.py -------------------------------------------------------------------------------- /macros/Examples/[5] Encoding example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[5] Encoding example.py -------------------------------------------------------------------------------- /macros/Examples/[6] Encoding example 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[6] Encoding example 2.py -------------------------------------------------------------------------------- /macros/Examples/[7] Optimize Sliders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Examples/[7] Optimize Sliders.py -------------------------------------------------------------------------------- /macros/Extra/DeleteEncodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Extra/DeleteEncodings.py -------------------------------------------------------------------------------- /macros/Extra/Save Image_rgb48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Extra/Save Image_rgb48.py -------------------------------------------------------------------------------- /macros/Import bookmarks from file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Import bookmarks from file.py -------------------------------------------------------------------------------- /macros/Open Image Sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Open Image Sequence.py -------------------------------------------------------------------------------- /macros/Preview from current point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Preview from current point.py -------------------------------------------------------------------------------- /macros/PreviewEncode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/PreviewEncode.py -------------------------------------------------------------------------------- /macros/Random Clip Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Random Clip Order.py -------------------------------------------------------------------------------- /macros/Run analysis pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Run analysis pass.py -------------------------------------------------------------------------------- /macros/Save Image Sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Save Image Sequence.py -------------------------------------------------------------------------------- /macros/Selected trims to selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Selected trims to selections.py -------------------------------------------------------------------------------- /macros/Shift Bookmarks Div 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Shift Bookmarks Div 2.py -------------------------------------------------------------------------------- /macros/Shift Bookmarks by frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/Shift Bookmarks by frames.py -------------------------------------------------------------------------------- /macros/startup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/startup.txt -------------------------------------------------------------------------------- /macros/startup_avs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/macros/startup_avs.txt -------------------------------------------------------------------------------- /previewFilterExample.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/previewFilterExample.avs -------------------------------------------------------------------------------- /previewFilterExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/previewFilterExample.txt -------------------------------------------------------------------------------- /pyavs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/pyavs.py -------------------------------------------------------------------------------- /pyavs_avifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/pyavs_avifile.py -------------------------------------------------------------------------------- /readme_Audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_Audio.txt -------------------------------------------------------------------------------- /readme_D3D_Window.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_D3D_Window.txt -------------------------------------------------------------------------------- /readme_FastClip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_FastClip.txt -------------------------------------------------------------------------------- /readme_FullscreenZoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_FullscreenZoom.txt -------------------------------------------------------------------------------- /readme_LocateFrame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_LocateFrame.txt -------------------------------------------------------------------------------- /readme_NumberWheel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_NumberWheel.txt -------------------------------------------------------------------------------- /readme_ScriptSelector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_ScriptSelector.txt -------------------------------------------------------------------------------- /readme_SplitClip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_SplitClip.txt -------------------------------------------------------------------------------- /readme_Tablist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_Tablist.txt -------------------------------------------------------------------------------- /readme_applyFilters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_applyFilters.txt -------------------------------------------------------------------------------- /readme_d2v_based_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_d2v_based_template.txt -------------------------------------------------------------------------------- /readme_resampleFilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_resampleFilter.txt -------------------------------------------------------------------------------- /readme_threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/readme_threads.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/setup.py -------------------------------------------------------------------------------- /tools/MP3Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/MP3Info.py -------------------------------------------------------------------------------- /tools/ToolsMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/ToolsMenu.py -------------------------------------------------------------------------------- /tools/avs2avi_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/avs2avi_gui.py -------------------------------------------------------------------------------- /tools/encoder_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/encoder_gui.py -------------------------------------------------------------------------------- /tools/ffmpeg.presets.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/ffmpeg.presets.default -------------------------------------------------------------------------------- /tools/resize_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/resize_calc.py -------------------------------------------------------------------------------- /tools/x264.presets.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/tools/x264.presets.default -------------------------------------------------------------------------------- /translations/translation_fra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_fra.py -------------------------------------------------------------------------------- /translations/translation_ger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_ger.py -------------------------------------------------------------------------------- /translations/translation_jpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_jpn.py -------------------------------------------------------------------------------- /translations/translation_por.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_por.py -------------------------------------------------------------------------------- /translations/translation_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_readme.txt -------------------------------------------------------------------------------- /translations/translation_rus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_rus.py -------------------------------------------------------------------------------- /translations/translation_spa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/translations/translation_spa.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/utils.py -------------------------------------------------------------------------------- /wxp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gispos/AvsPmod/HEAD/wxp.py --------------------------------------------------------------------------------