This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
import os | |
import subprocess | |
bl_info = { | |
"name": "Edit Source Externally", | |
"description": "Open VSE audio/video source with an external program.", | |
"author": "Joe Button", | |
"version": (1, 0), | |
"blender": (2, 73, 0), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
''' | |
Project Purpose: | |
Extract markers and time codes from Final Cut Pro X's FCPXML 1.3 formatted files | |
Pass an XML element into Marker.scanForMarker(). If markers are found, they are inserted as markers and subtitles in Blender. | |
''' | |
import bpy, sys, datetime | |
from xml.etree.ElementTree import parse | |
# Converts the '64bit/32bits' timecode format into seconds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE fcpxml> | |
<fcpxml version="1.0"> | |
<project> | |
<resources> | |
<format id="f1" frameDuration="1/29s" width="640.000000" height="480.000000"/> | |
<asset id="r1" name="1985-11-10-Berkeley_part_2.m4v" uid="O2wWMxasJdyRavHND5dJ" src="video/1985/1985-11-10-Berkeley_part_2.m4v" start="0/29s" duration="136647/29s" hasVideo="1" hasAudio="1" audioSources="1" audioChannels="2" audioRate="48000.000000"/> | |
</resources> | |
<clip name="1985-11-10-Berkeley_part_2.m4v" start="0/29s" duration="136647/29s" format="f1"> | |
<video ref="r1" start="0/29s" duration="136647/29s" offset="0/29s"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "Add Camera to View", | |
"category": "3D View", | |
"description": """Adding camera to view with ctrl+shift+D""", | |
"author": "Dmitry aka Rockbard", | |
"version": (1, 0), | |
"blender": (2, 79, 0), | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "Areatype Trim", | |
"description":"This example adds a button which toggles a split of an area with another.", | |
"author":"dustractor, tintwotin, Snuq, Stephen Graham", | |
"version":(0,2), | |
"blender":(2,79,0), | |
"location":"Button prepended to the header of the sequencer.", | |
"warning":"", | |
"wiki_url":"", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
class SEQUENCE_MT_true_fullscreen(bpy.types.Operator): | |
"""True fullscreen preview""" | |
bl_label = "True Fullscreen" | |
bl_idname = "sequencer.true_fullscreen" | |
runs = 0 | |
original_area = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ##### BEGIN GPL LICENSE BLOCK ##### | |
# | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU General Public License | |
# as published by the Free Software Foundation; either version 2 | |
# of the License, or (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
OlderNewer