def self.recording_within_time(start_time, end_time)
    rel_query = scoped
    if start_time.kind_of?(Time)
      sqlite_calculation = "time(recorded_date, '+' || duration_seconds || ' seconds') >= :start_time"
      formatted_start_time = start_time.utc.strftime('%H:%M:%S')