Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| c3tracker:setup [2025/01/31 19:59] – kunsi | c3tracker:setup [2026/08/19 14:36] (current) – commanderred | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | == Project setup | + | ## Project setup |
| * Create tracker project (you can also clone a matching project to have prefilled properties) | * Create tracker project (you can also clone a matching project to have prefilled properties) | ||
| Line 8: | Line 8: | ||
| - | ==== optimal properties from current project | + | #### optimal properties from current project |
| Replace `camp2023` with your chosen tracker project slug. | Replace `camp2023` with your chosen tracker project slug. | ||
| - | | + | ``` |
| - | Meta.Album | + | Meta.Acronym |
| - | Meta.License | + | Meta.Album |
| - | Meta.Year | + | Meta.License |
| + | Meta.Year | ||
| | | ||
| - | | + | Processing.Auphonic.Enable |
| - | Processing.BasePath | + | Processing.BasePath |
| - | Processing.MasterMe.Enable | + | Processing.MasterMe.Enable |
| - | Processing.Path.Intros | + | Processing.Path.Intros |
| - | Processing.Path.Outro | + | Processing.Path.Outro |
| | | ||
| - | Publishing.Upload.SkipSlaves | + | Publishing.UploadTarget |
| - | | + | Publishing.Tags |
| - | Publishing.Tags | + | Publishing.Voctoweb.Enable |
| - | Publishing.Voctoweb.Enable | + | Publishing.Voctoweb.Path |
| - | Publishing.Voctoweb.Path | + | Publishing.Voctoweb.Slug |
| - | Publishing.Voctoweb.Slug | + | Publishing.Voctoweb.Thumbpath |
| - | Publishing.Voctoweb.Thumbpath | + | Publishing.YouTube.Category |
| - | Publishing.YouTube.Category | + | Publishing.YouTube.Enable |
| - | Publishing.YouTube.Enable | + | Publishing.YouTube.Playlists |
| - | Publishing.YouTube.Playlists | + | Publishing.YouTube.Privacy |
| - | Publishing.YouTube.Privacy | + | Publishing.YouTube.Token |
| - | Publishing.YouTube.Token | + | |
| | | ||
| - | | + | Record.Container |
| - | Record.EndPadding | + | Record.EndPadding |
| - | Record.Slides | + | Record.Slides |
| - | Record.StartPadding | + | Record.StartPadding |
| - | + | ``` | |
| - | + | ||
| - | === Worker Filter Examples | + | |
| + | ### Worker Filter Examples | ||
| + | | ||
| + | # get all non-master tickets | ||
| EncodingProfile.IsMaster=no | EncodingProfile.IsMaster=no | ||
| + | | ||
| + | # get all master tickets | ||
| EncodingProfile.IsMaster=yes | EncodingProfile.IsMaster=yes | ||
| + | | ||
| + | # get all recording tickets | ||
| EncodingProfile.IsMaster= | EncodingProfile.IsMaster= | ||
| + | | ||
| + | # get all tickets in this room. | ||
| Fahrplan.Room=Servus.at Lab | Fahrplan.Room=Servus.at Lab | ||
| - | Please note that the conditions in the " | + | Please note that the conditions in the " |
| Specifying a property with an empty value, which is often done for `EncodingProfile.IsMaster`, | Specifying a property with an empty value, which is often done for `EncodingProfile.IsMaster`, | ||
| - | == Pipeline setup during event | + | |
| + | |||
| + | {{.: | ||
| + | ## Pipeline setup during event | ||
| During event setup of the pipeline, you have to decide if you want leave the MPEG TS snippets only on the [[hardware: | During event setup of the pipeline, you have to decide if you want leave the MPEG TS snippets only on the [[hardware: | ||
| - | === Simple: single-room setup (Variant | + | ### Simple: single-room setup (Variant |
| {{drawio> | {{drawio> | ||
| - | This variant is only practical if you have only one room, or at least one release encoder (aka [[hardware: | + | This variant is practical if you have only one room, or at least one release encoder (aka [[hardware: |
| When using this variant with multiple rooms in one Tracker project (like at JEV22), you also have to set room filters in the tracker worker queues. | When using this variant with multiple rooms in one Tracker project (like at JEV22), you also have to set room filters in the tracker worker queues. | ||
| Line 81: | Line 91: | ||
| <panel type=" | <panel type=" | ||
| - | === centralised storage (rsync) (Variant | + | ### centralised storage (rsync) (Variant |
| {{drawio> | {{drawio> | ||
| - | The first variant is typically used for events with more than one room. For bigger events we use the dedicated [[hardware: | + | This variant is typically used for events with more than one room. |
| - | For each encoderX start rsync on the central storage: `sudo systemctl start rsync-from-encoder@encoderX.lan.c3voc.de` | + | For bigger events we use the dedicated [[hardware:event-storage|storage]] server in the event server rack, for smaller events one of the minions is typically sufficient. If you use a minion as storage machine, you might want to configure `10.73.0.2` (aka `storage.lan.c3voc.de`) as secondary IP address to make things easier: |
| - | Then, start tracker workers on storage: `sudo systemctl start crs-worker.target` (only needed if you don't use `storage.lan.c3voc.de` - worker scripts get started automatically) | + | |
| - | ==== Minion setup | ||
| - | To allow the encoding workers to do their job, they need to mount the storage first: `sudo crs-mount <storage | + | Each recording encoder exposes |
| - | After mounting, you can start the tracker encoding workers: `sudo systemctl start crs-encoding.service` | ||
| - | The minion | + | For each encoderX start rsync on the storage machine: |
| + | |||
| + | sudo systemctl start rsync-from-encoder@encoderX.lan.c3voc.de | ||
| + | |||
| + | If you use a minion | ||
| + | |||
| + | sudo systemctl | ||
| | | ||
| - | ==== Cube as worker | + | which starts |
| + | |||
| + | - crs-recording-scheduler (A) | ||
| + | - crs-mount4cut.service | ||
| + | - crs-cut-postprocessor | ||
| + | - crs-encoding0, | ||
| + | - crs-postencoding | ||
| + | - crs-postprocessing | ||
| + | |||
| + | |||
| + | |||
| + | #### Minion | ||
| + | |||
| + | To allow get additional release encoding workers on the (other) minions, you need to connect to these an mount the storage machine first: | ||
| + | |||
| + | ssh minionX.lan.c3voc.de | ||
| + | sudo crs-mount <storage location> | ||
| + | |||
| + | After mounting, you can start the tracker encoding workers: | ||
| + | |||
| + | sudo systemctl start crs-encoding0.service | ||
| + | |||
| + | The virtual minion' | ||
| + | |||
| + | |||
| + | #### Encoder PCs as release encoding workers | ||
| + | |||
| + | At small events, when all talks are finished for today, you can use the recording encoder PCs to encode master MP4 files. | ||
| + | |||
| + | First – stop voctocore: | ||
| - | At small events, when the talks are finished for today, you can use the recording cubes to encode master MP4 files. | + | sudo systemctl stop voctomix2-voctocore |
| - | First: Stop voctocore. | ||
| The rest is very similar to above, but with different mounts so `/ | The rest is very similar to above, but with different mounts so `/ | ||
| Line 116: | Line 158: | ||
| | | ||
| - | === decentralised pipeline aka "even more samba" (Variant | + | ### decentralised pipeline aka "even more samba" (Variant |
| - | <panel type=" | + | <panel type=" |
| - | Similar to variant | + | Similar to variant |
| Tracker filters have to be set only for the recording cubes, minions do not require any filters (but on smaller events without many minions, a '' | Tracker filters have to be set only for the recording cubes, minions do not require any filters (but on smaller events without many minions, a '' | ||
| - | On recording | + | On recording |
| * '' | * '' | ||
| * '' | * '' | ||
| Line 147: | Line 189: | ||
| * '' | * '' | ||
| - | ==== Old example with systemd units and case 1 and 5, which was used during jev22 in Munich: | + | |
| + | #### Old example with systemd units and case 1 and 5, which was used during jev22 in Munich: | ||
| {{drawio> | {{drawio> | ||
| optional: configure `10.73.0.2` (aka `storage.lan.c3voc.de`) on the master minion as secondary ip | optional: configure `10.73.0.2` (aka `storage.lan.c3voc.de`) on the master minion as secondary ip | ||
| + | |||
| + | sudo ip a add dev br0 10.73.200.24/ | ||
| on recording cubes, mount or copy the intros from their source – here `storage.lan.c3voc.de` | on recording cubes, mount or copy the intros from their source – here `storage.lan.c3voc.de` | ||
| Line 162: | Line 207: | ||
| # check if everything is running as expected – you might have to disable/ | # check if everything is running as expected – you might have to disable/ | ||
| sudo systemctl status -n 0 crs-* | sudo systemctl status -n 0 crs-* | ||
| + | |||
| on master minion (in this example `storage.lan.c3voc.de`) | on master minion (in this example `storage.lan.c3voc.de`) | ||
| Line 193: | Line 239: | ||
| - | ==== Old example with custom screenrc and case 5 and 6: | + | #### Old example with custom screenrc and case 5 and 6: |
| on recording cube, without intros either copy or mount the intros from their source | on recording cube, without intros either copy or mount the intros from their source | ||