From 9982b4544130f88c8c4e7b984ef5a647adce923e Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Tue, 8 Oct 2019 23:34:15 -0700 Subject: [PATCH] Renamed a field to maintain compat --- ptulsconv/commands.py | 2 +- ptulsconv/transformations.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ptulsconv/commands.py b/ptulsconv/commands.py index d87a86e..cb7ba6e 100644 --- a/ptulsconv/commands.py +++ b/ptulsconv/commands.py @@ -24,7 +24,7 @@ def fmp_dump(data, output): (['R'], 'Reason', str), (['Rq'], 'Requested by', str), (['Spot'], 'Spot', str), - (['event_name', 'Line'], 'Line', str), + (['PT.Clip.Name', 'Line'], 'Line', str), (['Shot'], 'Shot', str), (['Note'], 'Note', str), (['Mins'], 'Time Budget Mins', float), diff --git a/ptulsconv/transformations.py b/ptulsconv/transformations.py index 6d03460..4a662d1 100644 --- a/ptulsconv/transformations.py +++ b/ptulsconv/transformations.py @@ -152,7 +152,7 @@ class TagInterpreter(Transformation): event['PT.Track.Name'] = track_tags['line'] event['PT.Session.Name'] = title_tags['line'] event['PT.Clip.Number'] = clip['event'] - event['event_name'] = clip_tags['line'] + event['PT.Clip.Name'] = clip_tags['line'] event['PT.Clip.Start'] = clip['start_time'] event['PT.Clip.Finish'] = clip['end_time'] event['PT.Clip.Start_Frames'] = clip_start