c3tracker:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
c3tracker:start [2020/12/06 17:09] andic3tracker:start [2022/02/27 16:25] (current) andi
Line 1: Line 1:
-C3 Ticket Tracker+CRS Ticket Tracker
  
-The C3 Ticket Tracker is the central managing component in our [[docu:overview#postprocessing|postprocessing]] pipeline, releasing the final recordings. The tracker is a PHP web application and distributes tasks in form of '//tickets//' to various //workers//. The workers – written in Perl, Python, or PHP – advance the state and update the ticket's properties via tracker's XML RPC API. The core system was initially written by FeM for 27C3 in 2010, and was released under the Apache License 2.0 end of 2017. Our instance is deployed at https://tracker.c3voc.de.+The Ticket Tracker is a web platform tracking process of video recording and ingest sources and video encoding progressIt guides users through manual processes like editing and checking and provides an API for scripts doing post processing and encoding. 
 + 
 +The tracker is a PHP web application and distributes tasks in form of '//tickets//' to various //workers//. The worker scripts – written in Perl, Python, or PHP – advance the state and update the ticket's properties via tracker's XML RPC API.  
 + 
 +The core system was initially written by [[:FeM]] for 27C3 in 2010, and was released under the Apache License 2.0 end of 2017. Our instance is deployed at https://tracker.c3voc.de.
  
 source code: source code:
Line 17: Line 21:
 * [[https://wiki.fem.tu-ilmenau.de/streaming/projekte/c3/28c3/crs/pipeline | old FeM tracker doku (probably outdated but still usefull]] * [[https://wiki.fem.tu-ilmenau.de/streaming/projekte/c3/28c3/crs/pipeline | old FeM tracker doku (probably outdated but still usefull]]
  
 +
 +== Concepts
 +
 +The C3 Ticket Tracker enables the (semi-)automated recording, editing & release of multilingual videos. In order to complete a release successfully, certain project settings must be configured and a few of the state transitions must be operated manually:
 +
 +=== Ticket types and hierarchy
 +
 +One of the really good features of the C3 tracker is that propertyies are inherited through the hierarchy:
 +
 +* Project settings (Conference or Series)
 +    * Meta ticket (Parent with Fahrplan-ID & -Metadata)
 +        * Recording ticket (Language, etc)
 +           - Main encoding ticket (MP4)
 +           - additional encoding tickets, e.g. WebM, MP3, Opus, SD formats, etc.
 +
 +=== Ticket states
 +
 +
 +For each ticket type, the tracker has a predefined set of states, which can be enabled and disabled on an per project basis. Here is an example workflow with only one manual `checking` step:
 +
 +{{drawio>c3tracker:states}}
  
  
Line 90: Line 115:
 == Trackerfahrer Scripts == Trackerfahrer Scripts
  
-``` +see [[scripts]]
-export VOC_WORKSPACE=~/voc +
-export VOC_CUTTING_TOOL=shotcut +
- +
-function voc_check() { +
- if -z "$0" ]; then +
- echo "usage: ${FUNCNAME[0]} ID" +
- return 1 +
- fi +
- if [ ! -L "$VOC_WORKSPACE/check" ]; then +
- echo "run voc_eventprep first!" +
- return 1 +
- fi +
- cd ~/voc +
- mpv "check/${1}-hd.mp4" +
- cd - +
-+
- +
-function voc_cut() { +
-    if [ -z "$0" ]; then +
-        echo "usage: ${FUNCNAME[0]} ID" +
-        return 1 +
-    fi +
-    if [ ! -L "$VOC_WORKSPACE/cut" ]; then +
-        echo "run voc_eventprep first!" +
-        return 1 +
-    fi +
-    cd ~/voc +
-    case "$VOC_CUTTING_TOOL" in +
-        shotcut) +
-            cp cut/**/${1}/project_shotcut.mlt /tmp +
-            ln -vs "$(realpath cut/**/${1}/uncut.ts)" /tmp +
-            shotcut /tmp/project_shotcut.mlt +
-            rm /tmp/uncut.ts +
-            cp /tmp/project_shotcut.mlt cut/**/${1}/ +
-            rm /tmp/project_shotcut.mlt +
-            ;; +
-        kdenlive) +
-            kdenlive cut/**/${1}/project.kdenlive +
-            ;; +
-        *) +
-            cd - +
-            echo "invalid cutting tool configured" +
-            return 1 +
-    esac +
-    cat cut/**/${1}/*frame +
-    cd - +
-+
- +
-function voc_eventprep() { +
- if [ -z "$1" ]; then +
- echo "usage: ${FUNCNAME[0]} acronym" +
- return 1 +
- fi +
- if [ ! -d "$VOC_WORKSPACE" ]; then +
- mkdir -p "$VOC_WORKSPACE" +
- fi +
- rm -f ~/voc/{cut,check} +
- ln -s "/video/fuse/$1" ~/voc/cut +
- ln -s "/video/encoded/$1" ~/voc/check +
-+
- +
-function voc_mount() { +
- if [ ! -d "/video" ]; then +
- echo "/video missing, please create" +
- return 1 +
- fi +
- sudo mount -t cifs //storage.lan.c3voc.de/video /video -o password=dummy -o uid=$UID +
- sudo mount -t cifs //storage.lan.c3voc.de/fuse /video/fuse -o password=dummy -o uid=$UID +
-+
-``` +
  
 == Ticket Properties == Ticket Properties
  
-^ Property Name                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ^ Example Value                                                                             ^ Comment                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | +see [[properties]]
-^ Meta                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |||           | +
-| Meta.Album                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | Easterhegg 2015                                                                           | will be placed in encoded files metadata                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |           | +
-| Meta.License                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | Licensed to the public under http://creativecommons.org/licenses/by/3.0/de                | will be placed in encoded files metadata                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |           | +
-| Meta.Year                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | 2015                                                                                      | will be placed in encoded files metadata                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |           | +
-^ Processing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |||           | +
-| Processing.Auphonic.Enable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | yes                                                                                       | use Auphonic for this project?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |           | +
-| Processing.Auphonic.Preset                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | BNz7qqLTumDNDh3qjo2S95                                                                    | GUID of auphonic preset, please check!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |           | +
-| Processing.Auphonic.Token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | <token>                                                                                   | OAuth 2.0 bearer token of Auphonic ([[https://auphonic.com/api-docs/authentication.html#oauth|generate manually]])                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |           | +
-| Processing.Auphonic.SpeedLimit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | 2000                                                                                      | upload limit for Auphonic uploads in kBytes/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | +
-| Processing.Auphonic.ReuseProduction                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | yes                                                                                       | reuse the already produced audio file from authonic when reencoding the video (length needs to match)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| Processing.Loudnorm.Enable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | yes                                                                                       | Enable loudness normalization filter of FFmpeg. Only works on Debian Stretch (FFmpeg > 3.x) and if Auphonic is disabled!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |           | +
-| ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////Processing.File.Intro////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////      | /video/eh15/intros/1234.ts                                                                | Intro file location determined automatically, this is set by script C                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////Processing.File.Outro////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////      | /video/eh15/intros/outro.ts                                                               | Outro file location determined automatically, this is set by script C                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| Processing.BasePath                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | /video/                                                                                   | Define a base path where all other subdirectories are "guessed" by convention. Note this does NOT include the Intro(s) and Outro(s) property, as it is considered an error if those files are missing, therefore it can not be guessed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | +
-| Processing.Path.Capture                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | /video/CRS/pieces/Saal/                                                                   | where are the pieces from the capture process?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |           | +
-| <del>Processing.Path.Exmljob</del>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | Remove this property when you see it!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | +
-| Processing.Path.Intros                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | /video/eh15/intros/                                                                       | where are the intro files?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |           | +
-| ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////Processing.Duration.Intro////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////  | 5.4                                                                                       | Duration of the Intro(s) in seconds, this value is used to trim the audio-only files, so that they do not start with several seconds of silence. This value is now set ****************************************************************************************************************************************************************************************************************************************************************automatically**************************************************************************************************************************************************************************************************************************************************************** by a worker script!  |           | +
-| Processing.Intro.DurationNonAlpha                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | 14.4                                                                                      | If using alpha intros, set the duration of the opaque part of the intro. This is the duration in seconds from the beginning of the intro that is NOT blended over the main content. This is for the video as well as the audio tracks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |           | +
-| Processing.Outro.DurationAlpha                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | 3.88                                                                                      | If using alpha outros, set the duration of the alpha part at the beginning of the outro. For this duration in seconds, the end of the main content (up to the cutout point) is overlayed with the outro video and audio track(s).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | +
-| Processing.Path.Output                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | /video/eh15/encoded/                                                                      | where shall the finished encodings show up? NOTE: this is also the directory where master encodings are taken from by the slave profiles, e.g. MP3 audio-only                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       | +
-| Processing.Path.Outro                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | /video/eh15/intros/outro.ts                                                               | where is the outro file? (if directory, a file named <frab-id>.{dv,ts} is searched first)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | +
-| Processing.Path.Raw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | /video/fuse/                                                                              | where are the fuse mounts for cutting created?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |           | +
-| Processing.Path.Repair                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | /video/eh15/repair/                                                                       | where to look for manually repaired files? (pretty unimportant for regular operation)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| Processing.Path.Tmp                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | /video/eh15/tmp                                                                           | where is a writable tmp-dir (shared among all encoders!)?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | +
-| Processing.Video.AspectRatio                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | 16:9                                                                                      | Usually ****************************************************************************************************************************************************************************************************************************************************************not needed****************************************************************************************************************************************************************************************************************************************************************, HD only exists in 16:9 anyway.                                                                                                                                                        |           | +
-^ Project                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |^                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Project.Slug                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | eh15                                                                                      | this property already exists in every project, it is only neccessary as an explicit property e.g. if two projects with same slug shall exist                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |           | +
-^ Publishing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |^ Parameters for script-H publishing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |           | +
-| Publishing.Base.Url                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | http://live.ber.c3voc.de/releases/eh15/                                                   | where does media pull the release files from?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       | +
-| Publishing.Url.Secret                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | 436B4233DB874E1E1C93510892E3D                                                             | secret string used for generation of secure links (need to be set in the nginx config, too)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | +
-| Publishing.Url.Lifetime                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | 3600                                                                                      | controls how log the generatet links are valid (in seconds since the last page reload)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |           | +
-| Publishing.Voctoweb.Enable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | yes                                                                                       | wether files should be released on voctoweb (this is ANDed with Publishing.Voctoweb.EnableProfile from encoding profiles)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | +
-| Publishing.Voctoweb.Url                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | http://media.ccc.de/browse/conferences/eh2015/                                            | where does the conference show up on voctoweb?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |           | +
-| Publishing.Voctoweb.Tags                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | foo, bar, baz                                                                             | tags that only appear on voctoweb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | +
-| Publishing.Path                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | /srv/releases/eh15/                                                                       | where in the filesystem of the release machine are the release files?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| Publishing.Tags                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | foo, bar, baz                                                                             | tags that will be used for all publishing targets                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | +
-| Publishing.UploadOptions                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | -i /video/upload-key                                                                      | extra options for the postprocessing scp script. Warning: they are intentionally not quoted before integrating them into the cmdline!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| Publishing.Upload.SkipSlaves                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | speedy,tweety                                                                             | Comma-separated list of hostnames that share storage with publishing server. If this property is set, the upload script will not process any slave tickets on the given hosts but just set them to done. This is required if master encoding is done on event and slave encoding on other machines that share the storage with the releasing worker.                                                                                                                                                                                                                                                                                                                                                                                      |           | +
-| Publishing.UploadTarget                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | voc@live.ber.c3voc.de:/srv/releases/eh15/                                                 | target for postprocessing scp script                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |           | +
-| Publishing.YouTube.Enable                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | yes                                                                                       | wether master files should be released on youtube or not (this is ANDed with Publishing.YouTube.EnableProfile from encoding profiles)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | +
-| Publishing.YouTube.Privacy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | public, private or unlisted                                                               see [[youtube#fuer_das_voc|Youtube]]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | +
-| Publishing.YouTube.Tags                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | eh15,easterhegg,ccc,easterhegg2015,don't kehr,Braunschweig                                | :::                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | +
-| Publishing.YouTube.Token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | <token>                                                                                   | :::                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | +
-| Publishing.YouTube.Playlists                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | optional, see [[youtube#fuer_das_voc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | Youtube] +
-| Publishing.YouTube.TitlePrefixSpeakers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | yes                                                                                       | when this is set, prepend up to x people to title, where x is defined by the integer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |           | +
-^ Fahrplan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | +
-| Fahrplan.Abstract                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | The combination of the ongoing technological revolution, globalisation and what are more  |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Date                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | 2018-12-27                                                                                |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.DateTime                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | 2018-12-27T11:30:00+0100                                                                  |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Day                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | +
-| Fahrplan.Duration                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | 01:00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | +
-| Fahrplan.GUID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | 9dde571b-4d49-4b44-8329-42e354bcc24b                                                      |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.ID                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | 10021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | +
-| Fahrplan.Language                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | en                                                                                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Person%%_%%list                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | Guy Standing                                                                              |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Persons                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | Guy Standing                                                                              |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Recording.Optout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | 0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | +
-| Fahrplan.Room                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | Adams                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | +
-| Fahrplan.Slug                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | 35c3-10021-the_precariat_a_disruptive_class_for_disruptive_times                          |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Start                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | 11:30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         | +
-| Fahrplan.Subtitle                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          | Why and How the Precariat will define the Global Transformation to save our planet.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | +
-| Fahrplan.Title                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | The Precariat: A Disruptive Class for Disruptive Times.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       | +
-| Fahrplan.Track                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | Ethics, Society & Politics                                                                |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     | +
-| Fahrplan.Type                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | lecture                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       | +
-| Fahrplan.URL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | https://fahrplan.events.ccc.de/congress/2018/Fahrplan/events/10021.html                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       | +
-| ****Recording****                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |                                                                                           | Include slides as a second video track in the master and h264 encodings                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | +
-| Recording.Slides                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | yes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |+
  • c3tracker/start.1607270946.txt.gz
  • Last modified: 2020/12/06 17:09
  • by andi