-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65b213f
commit 37149e1
Showing
12 changed files
with
79 additions
and
49 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Reveal Actions in Finder - V1.0 2018-12-15 | ||
Reveal Actions in Finder - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -16,11 +16,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/DevRevealActionsInFinder.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/DevRevealActionsInFinder.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
""" | ||
|
@@ -35,7 +35,7 @@ def Command(): | |
import os | ||
import subprocess | ||
|
||
dir = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions' | ||
dir = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions' | ||
|
||
# Make the output filename | ||
dest = dir + os.sep | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Reveal Scripts in Finder - V1.0 2018-12-15 | ||
Reveal Scripts in Finder - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -16,11 +16,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/DevRevealScriptsInFinder.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/DevRevealScriptsInFinder.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
""" | ||
|
@@ -35,7 +35,7 @@ def Command(): | |
import os | ||
import subprocess | ||
|
||
dir = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts' | ||
dir = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts' | ||
|
||
# Make the output filename | ||
dest = dir + os.sep | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Encode Movie MP4 Script - V1.0 2018-12-15 | ||
"""Encode Movie MP4 Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -14,22 +14,22 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/EncodeMovieMP4.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/EncodeMovieMP4.py | ||
Step 3. Copy the provided Apple Compressor encoding presets folder named "compressor" to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor | ||
The compressor folder is used as a container to neat and tidily hold your exported ".cmprstng" file. | ||
Step 4. Scroll down in this document and update that filepath and the name of the Apple Compressor exported ".cmprstng" preset file you want to use with the current "achEncodeMovie.py" script. | ||
# Compressor preset | ||
settings = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor/MP4.cmprstng' | ||
settings = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor/MP4.cmprstng' | ||
Step 5. Restart SilhouetteFX to re-load the active scripts, and start creating new art, new possibilities, and making new creative visions come to life! | ||
|
@@ -93,7 +93,7 @@ def EncodeMovie(path): | |
dir = os.path.dirname(path) | ||
|
||
# Compressor preset | ||
settings = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor/MP4.cmprstng' | ||
settings = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor/MP4.cmprstng' | ||
|
||
# Compressor Job name | ||
batch = 'sfx+' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Encode Movie ProRes Script - V1.0 2018-12-15 | ||
"""Encode Movie ProRes Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -14,22 +14,22 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/EncodeMovieProRes.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/EncodeMovieProRes.py | ||
Step 3. Copy the provided Apple Compressor encoding presets folder named "compressor" to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor | ||
The compressor folder is used as a container to neat and tidily hold your exported ".cmprstng" file. | ||
Step 4. Scroll down in this document and update that filepath and the name of the Apple Compressor exported ".cmprstng" preset file you want to use with the current "achEncodeMovie.py" script. | ||
# Compressor preset | ||
settings = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor/ProRes.cmprstng' | ||
settings = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor/ProRes.cmprstng' | ||
Step 5. Restart SilhouetteFX to re-load the active scripts, and start creating new art, new possibilities, and making new creative visions come to life! | ||
|
@@ -93,7 +93,7 @@ def EncodeMovie(path): | |
dir = os.path.dirname(path) | ||
|
||
# Compressor preset | ||
settings = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor/ProRes.cmprstng' | ||
settings = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor/ProRes.cmprstng' | ||
|
||
# Compressor Job name | ||
batch = 'sfx+' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Encode Movie YouTube Low Quality Preview Script - V1.0 2018-12-15 | ||
"""Encode Movie YouTube Low Quality Preview Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -32,22 +32,22 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/EncodeMovieYouTubeLowQualityPreview.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/EncodeMovieYouTubeLowQualityPreview.py | ||
Step 3. Copy the provided Apple Compressor encoding presets folder named "compressor" to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/compressor | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/compressor | ||
The compressor folder is used as a container to neat and tidily hold your exported ".cmprstng" file. | ||
Step 4. Scroll down in this document and update that filepath and the name of the Apple Compressor exported ".cmprstng" preset file you want to use with the current "achEncodeMovie.py" script. | ||
# Compressor preset | ||
settings = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/compressor/YouTubeLowQualityPrevie.cmprstng' | ||
settings = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/compressor/YouTubeLowQualityPrevie.cmprstng' | ||
Step 5. Restart SilhouetteFX to re-load the active scripts, and start creating new art, new possibilities, and making new creative visions come to life! | ||
|
@@ -111,7 +111,7 @@ def EncodeMovie(path): | |
dir = os.path.dirname(path) | ||
|
||
# Compressor preset | ||
settings = '/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/compressor/YouTubeLowQualityPreview.cmprstng' | ||
settings = '/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/compressor/YouTubeLowQualityPreview.cmprstng' | ||
|
||
# Compressor Job name | ||
batch = 'sfx+' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Affinity Photo Script - V1.0 2018-12-15 | ||
Affinity Photo Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -17,11 +17,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/achSendToAffinityPhoto.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/achSendToAffinityPhoto.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
DJV Script - V1.0 2018-12-15 | ||
DJV Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -17,11 +17,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/achSendToDJV.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/achSendToDJV.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Output to Source - V1.0 2018-12-15 | ||
Output to Source - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -17,11 +17,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/ToolsOutputToSource.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/ToolsOutputToSource.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Reveal in Finder Script - V1.0 2018-12-15 | ||
Reveal in Finder Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -15,11 +15,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/ToolsRevealInFinder.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/ToolsRevealInFinder.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
""" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
SplitEXR Script - V1.0 2018-12-15 | ||
SplitEXR Script - V1.1 2019-11-26 | ||
By Andrew Hazelden <[email protected]> | ||
---------------------------------------------- | ||
|
@@ -17,11 +17,11 @@ | |
Step 1. Open the Silhouette Script Actions folder using the following terminal command: | ||
open "/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/" | ||
open "/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/" | ||
Step 2. Install this Python script by copying it to: | ||
/Applications/SilhouetteFX/Silhouette v7/Silhouette.app/Contents/Resources/scripts/actions/ToolsSplitEXR.py | ||
/Applications/SilhouetteFX/Silhouette v7.5/Silhouette.app/Contents/Resources/scripts/actions/ToolsSplitEXR.py | ||
Step 3. Restart SilhouetteFX to re-load the active scripts. | ||
|
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