├── Bligify.zip ├── ExportEDL.zip ├── Playback_controls_in_VSE_header.zip ├── README.md ├── Sequence_Editing.png ├── Sequence_Editing1.png ├── Subsimport.zip ├── VSE_Easy_Proxy.zip ├── VSE_Quick_Functions.zip ├── VSE_Transform_Tools.zip ├── __init__.py ├── freesound.zip ├── import_edl.zip ├── push_to_talk.zip ├── space_sequencer.zip └── startup.blend /Bligify.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/Bligify.zip -------------------------------------------------------------------------------- /ExportEDL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/ExportEDL.zip -------------------------------------------------------------------------------- /Playback_controls_in_VSE_header.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/Playback_controls_in_VSE_header.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sequence_Editing 2 | A Sequence Editing workspace for Blender with add-ons included.For Blender 2.80-2.91(Transform Tools will not work in 2.92) 3 | 4 | 5 | # Screenshot 6 | ![alt text](https://github.com/tin2tin/Sequence_Editing/blob/main/Sequence_Editing.png?raw=true) 7 | 8 | 9 | # Install: 10 | [![](http://img.youtube.com/vi/ufSyony6eRE/0.jpg)](http://www.youtube.com/watch?v=ufSyony6eRE "") 11 | - Download: Code - Download Zip 12 | - Unzip 13 | - Rename the folder inside the zip to Script_Editing - remove '-main' 14 | - Copy the folder into: C:\Program Files\Blender Foundation\Blender 2.90\2.90\scripts\startup\bl_app_templates_system 15 | - Start Blender. 16 | - In the Welcome pop-up select 'Script Editing'. 17 | - In the File menu - Defaults - Load Factory Settings(this is the only way to execute the init file in the workspace template). 18 | 19 | The UI should now look different and the add-ons should be installed and enabled. 20 | 21 | 22 | # Included Add-ons 23 | 24 | Bligify https://github.com/doakey3/Bligify 25 | 26 | EDL Export https://github.com/tin2tin/ExportEDL 27 | 28 | EDL Import https://github.com/tin2tin/import_edl 29 | 30 | Subsimport https://github.com/doakey3/Subsimport 31 | 32 | Vse Easy Proxy https://github.com/cgvirus/blender-vse-easy-proxy Will need ffmpeg path in Preferences. 33 | 34 | Vse Transform Tools https://github.com/doakey3/VSE_Transform_Tools 35 | 36 | Freesound https://github.com/iwkse/freesound Will need API key in Preferences. 37 | 38 | Push To Talk https://github.com/britalmeida/push_to_talk Will need ffmpeg installed. 39 | 40 | Playback Controls In VSE Header, Project settings in Sidebar and VSE Reworked operators in menus. 41 | 42 | -------------------------------------------------------------------------------- /Sequence_Editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/Sequence_Editing.png -------------------------------------------------------------------------------- /Sequence_Editing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/Sequence_Editing1.png -------------------------------------------------------------------------------- /Subsimport.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/Subsimport.zip -------------------------------------------------------------------------------- /VSE_Easy_Proxy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/VSE_Easy_Proxy.zip -------------------------------------------------------------------------------- /VSE_Quick_Functions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/VSE_Quick_Functions.zip -------------------------------------------------------------------------------- /VSE_Transform_Tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/VSE_Transform_Tools.zip -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # ##### BEGIN GPL LICENSE BLOCK ##### 2 | # 3 | # This program is free software; you can redistribute it and/or 4 | # modify it under the terms of the GNU General Public License 5 | # as published by the Free Software Foundation; either version 2 6 | # of the License, or (at your option) any later version. 7 | # 8 | # This program is distributed in the hope that it will be useful, 9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | # GNU General Public License for more details. 12 | # 13 | # You should have received a copy of the GNU General Public License 14 | # along with this program; if not, write to the Free Software Foundation, 15 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 | # 17 | # ##### END GPL LICENSE BLOCK ##### 18 | 19 | import bpy 20 | from bpy.app.handlers import persistent 21 | import os 22 | 23 | @persistent 24 | def load_handler(dummy): 25 | import os 26 | from bpy import context 27 | screen = context.screen 28 | for area in screen.areas: 29 | if area.type == 'FILE_BROWSER': 30 | space = area.spaces.active 31 | params = space.params 32 | params.use_filter_folder = True 33 | 34 | user_prefs = context.preferences 35 | user_prefs.edit.undo_steps = 100 36 | user_prefs.view.show_tooltips_python = True 37 | user_prefs.view.show_developer_ui = True 38 | 39 | path_to_script_dir = os.path.dirname(os.path.abspath(__file__)) 40 | file_list = sorted(os.listdir(path_to_script_dir)) 41 | 42 | script_list = [] 43 | for item in file_list: 44 | if item.endswith(".zip"): 45 | script_list.append(item) 46 | print("Append: " + item) 47 | for file in script_list: 48 | path_to_file = os.path.join(path_to_script_dir, file) 49 | print("Installing: " + path_to_file) 50 | bpy.ops.preferences.addon_install( 51 | overwrite=True, 52 | target="DEFAULT", 53 | filepath=path_to_file, 54 | filter_folder=True, 55 | filter_python=False, 56 | filter_glob="*.py;*.zip", 57 | ) 58 | enableTheseAddons = [ 59 | "space_sequencer", 60 | "Playback_controls_in_VSE_header", 61 | "VSE_Easy_Proxy", 62 | "push_to_talk", 63 | "VSE_Transform_Tools", 64 | "freesound", 65 | "import_edl", 66 | "ExportEDL", 67 | "Subsimport", 68 | "Bligify", 69 | ] 70 | 71 | for string in enableTheseAddons: 72 | name = enableTheseAddons 73 | bpy.ops.preferences.addon_enable(module=string) 74 | 75 | def register(): 76 | bpy.app.handlers.load_factory_startup_post.append(load_handler) 77 | 78 | 79 | def unregister(): 80 | bpy.app.handlers.load_factory_startup_post.remove(load_handler) 81 | -------------------------------------------------------------------------------- /freesound.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/freesound.zip -------------------------------------------------------------------------------- /import_edl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/import_edl.zip -------------------------------------------------------------------------------- /push_to_talk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/push_to_talk.zip -------------------------------------------------------------------------------- /space_sequencer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/space_sequencer.zip -------------------------------------------------------------------------------- /startup.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tin2tin/Sequence_Editing/a97a9027293df3462607f419f43c29b5489e25cb/startup.blend --------------------------------------------------------------------------------