In [1]:
import sys
sys.path.append('../../../../')
import os
from moviegoer.tables import load_film_object, film_id_and_scene_id_from_scene_directory
In [2]:
film_id, scene_id = film_id_and_scene_id_from_scene_directory()
scene_id
Out[2]:
'd_4656_4705'
In [3]:
film_obj = load_film_object(film_id)
scene_obj = film_obj.scene_object(scene_id)
scene_obj.print_context_clues()
*Plot Context*
Context Themes: Counter({'drinking': 13})
Establishing Shot Locations: Counter({'bus': 68, 'building': 3})
Descriptors: ['indoors', 'sitting']
Held Items: Counter({'cup of coffee': 9, 'coffee cup': 1})
Active Actions: Counter({'drinking': 13, 'lit': 6, 'having': 2, 'making': 1})
Right Wearing: Counter({'yellow jacket': 14})
In [4]:
scene_obj.display_anchor_shots()
In [5]:
scene_obj.display_scene_frames_large()
In [6]:
scene_obj.print_info()
*Scene Information*
Scene ID: d_4656_4705
Start Frame: 4656~50
End Frame: 4705~75
Scene Time: 01:17:36 - 01:18:25
Scene Runtime: 0:00:50

*Technical Details*
Aspect Ratio: 2.39
Avg. Shot Duration: 14.14
Avg. Brightness: 60
Avg. Contrast: 56

*Dialogue Cadence*
Sentences Per Minute: 18
Words Per Sentence 7.40
Questions Per Minute: 1.19
Pct. Questions: 7%

*Emotion*
Laughs Per Minute: 0.00
Profanity Per Minute: 0.00
Words Per Profanity: 0
Exclamations Per Minute: 0.00

In [7]:
scene_obj.display_cutaway_shots()
In [8]:
scene_obj.display_qna_frames()
In [9]:
scene_obj.display_first_p_sentence_frames()
In [10]:
scene_obj.display_second_p_address_frames()
In [11]:
scene_obj.display_exclamations()
In [12]:
scene_obj.display_laughs()
Out[12]:
[]
In [13]:
scene_obj.display_unintelligible_language()
In [14]:
scene_obj.display_long_take_shots()
Out[14]:
[]
In [15]:
scene_obj.display_color_shots()