@arcanewizards/timecode-toolbox 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +77 -0
- package/dist/components/frontend/index.js +184 -184
- package/dist/components/frontend/index.mjs +33 -33
- package/dist/entrypoint.js +235 -235
- package/dist/entrypoint.js.map +4 -4
- package/dist/frontend.js +235 -235
- package/dist/frontend.js.map +4 -4
- package/dist/index.js +56 -57
- package/dist/index.mjs +27 -28
- package/dist/start.js +56 -57
- package/dist/start.mjs +27 -28
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
Timecode Toolbox
|
|
3
|
+
</h1>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<img src="https://arcanewizards.com/static/icon-timecode-toolbox.svg" height="200" alt="App Icon"/>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
Timecode Toolbox is a free & open-source app that allows you to easily monitor,
|
|
10
|
+
generate and convert timecode signals of different types.
|
|
11
|
+
|
|
12
|
+
<h2 align="center">
|
|
13
|
+
Download latest desktop release
|
|
14
|
+
</h2>
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<a href="https://arcanewizards.com/download/timecode-toolbox/latest/macos-arm64"><img src="https://arcanewizards.com/download/timecode-toolbox/latest/macos-arm64/button" height="50" alt="Download MacOS (Apple Silicon / ARM) Desktop App"/></a>
|
|
18
|
+
|
|
19
|
+
<a href="https://arcanewizards.com/download/timecode-toolbox/latest/macos-x64"><img src="https://arcanewizards.com/download/timecode-toolbox/latest/macos-x64/button" height="50" alt="Download MacOS (Intel / x64) Desktop App"/></a>
|
|
20
|
+
|
|
21
|
+
<a href="https://arcanewizards.com/download/timecode-toolbox/latest/windows-x64"><img src="https://arcanewizards.com/download/timecode-toolbox/latest/windows-x64/button" height="50" alt="Download Windows (x64) Desktop App"/></a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
## Headless / CLI Version
|
|
25
|
+
|
|
26
|
+
This application can be installed and run via NPM, allowing the application UI to be accessed via a browser on any device on the same network.
|
|
27
|
+
|
|
28
|
+
For example, you can have Timecode Toolbox running on a server in a rack, on a Mac Mini, or even a Raspberry PI.
|
|
29
|
+
|
|
30
|
+
Make sure you have Node v22 or higher installed, and then use `npx` to download and install the desired version:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
npx @arcanewizards/timecode-toolbox@latest
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Or use `pnpm`, `npm`, or `yarn` to install the package `@arcanewizards/timecode-toolbox` globally,
|
|
37
|
+
and then run the app:
|
|
38
|
+
|
|
39
|
+
```sh
|
|
40
|
+
npm install -g @arcanewizards/timecode-toolbox@latest
|
|
41
|
+
timecode-toolbox
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Features
|
|
45
|
+
|
|
46
|
+
### Supported Protocols
|
|
47
|
+
|
|
48
|
+
The following protocols are currently supported:
|
|
49
|
+
|
|
50
|
+
- ArtNet Timecode (Input & Output)
|
|
51
|
+
- TCNet / Pioneer Pro DJ Link via ShowKontrol / Bridge (Input Only)
|
|
52
|
+
|
|
53
|
+
We plan to also soon implement the following:
|
|
54
|
+
|
|
55
|
+
- MIDI Timecode
|
|
56
|
+
|
|
57
|
+
### Clock Playback with Custom Speeds
|
|
58
|
+
|
|
59
|
+
Add as many clock-based timecode generators as you like,
|
|
60
|
+
and specify non-standard playback speeds to simulate what would happen
|
|
61
|
+
when DJs adjust the temp of their tracks live.
|
|
62
|
+
|
|
63
|
+
### Custom labels & Colors
|
|
64
|
+
|
|
65
|
+
Name your inputs, outputs and generators however you like,
|
|
66
|
+
and customize their interface colors to easily tell them apart.
|
|
67
|
+
|
|
68
|
+
### Pop-Out Windows
|
|
69
|
+
|
|
70
|
+
Need to focus on one timecoded in-particular?
|
|
71
|
+
Open any timecode in it's own dedicated window that can me maximized or moved
|
|
72
|
+
around to your liking.
|
|
73
|
+
|
|
74
|
+
### Delay Adjustment
|
|
75
|
+
|
|
76
|
+
Adjust incoming or outgoing timecodes to account for any delay on the network or
|
|
77
|
+
or anywhere in your media pipeline.
|