2015-10-05 08:36:06 +02:00
|
|
|
"""
|
|
|
|
Author: Jaisen Mathai <jaisen@jmathai.com>
|
|
|
|
Video package that handles all video operations
|
|
|
|
"""
|
2015-10-02 09:20:27 +02:00
|
|
|
|
2015-10-05 08:36:06 +02:00
|
|
|
# load modules
|
2015-10-12 09:37:57 +02:00
|
|
|
from distutils.spawn import find_executable
|
2015-10-20 10:17:09 +02:00
|
|
|
import tempfile
|
2015-10-02 09:20:27 +02:00
|
|
|
from sys import argv
|
2015-10-12 09:37:57 +02:00
|
|
|
from datetime import datetime
|
|
|
|
|
2015-10-02 09:20:27 +02:00
|
|
|
import mimetypes
|
|
|
|
import os
|
|
|
|
import re
|
2015-10-20 10:17:09 +02:00
|
|
|
import shutil
|
2015-10-02 09:20:27 +02:00
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
|
2015-10-28 08:19:21 +01:00
|
|
|
from elodie import constants
|
2015-10-22 03:40:50 +02:00
|
|
|
from elodie import plist_parser
|
2015-10-20 10:17:09 +02:00
|
|
|
from media import Media
|
2015-10-02 09:20:27 +02:00
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
|
2015-10-07 08:47:51 +02:00
|
|
|
class Video(Media):
|
2015-11-19 11:31:32 +01:00
|
|
|
__name__ = 'Video'
|
2016-01-02 08:23:06 +01:00
|
|
|
extensions = ('avi', 'm4v', 'mov', 'mp4', '3gp')
|
2015-10-05 08:10:46 +02:00
|
|
|
|
2015-10-05 08:36:06 +02:00
|
|
|
"""
|
|
|
|
@param, source, string, The fully qualified path to the video file
|
|
|
|
"""
|
2015-10-02 09:20:27 +02:00
|
|
|
def __init__(self, source=None):
|
2015-10-07 08:47:51 +02:00
|
|
|
super(Video, self).__init__(source)
|
2015-10-02 09:20:27 +02:00
|
|
|
|
2015-11-02 11:11:53 +01:00
|
|
|
"""
|
|
|
|
Get path to executable avmetareadwrite binary.
|
|
|
|
We wrap this since we call it in a few places and we do a fallback.
|
|
|
|
|
|
|
|
@returns, None or string
|
|
|
|
"""
|
|
|
|
def get_avmetareadwrite(self):
|
|
|
|
avmetareadwrite = find_executable('avmetareadwrite')
|
|
|
|
if(avmetareadwrite is None):
|
|
|
|
avmetareadwrite = '/usr/bin/avmetareadwrite'
|
2016-01-02 08:23:06 +01:00
|
|
|
if(not os.path.isfile(avmetareadwrite) or not os.access(avmetareadwrite, os.X_OK)): # noqa
|
2015-11-02 11:11:53 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
return avmetareadwrite
|
|
|
|
|
2015-10-20 10:17:09 +02:00
|
|
|
"""
|
|
|
|
Get latitude or longitude of photo from EXIF
|
|
|
|
|
|
|
|
@returns, time object or None for non-video files or 0 timestamp
|
|
|
|
"""
|
|
|
|
def get_coordinate(self, type='latitude'):
|
|
|
|
exif_data = self.get_exif()
|
|
|
|
if(exif_data is None):
|
|
|
|
return None
|
|
|
|
|
|
|
|
coords = re.findall('(GPS %s +: .+)' % type.capitalize(), exif_data)
|
|
|
|
if(coords is None or len(coords) == 0):
|
|
|
|
return None
|
|
|
|
|
|
|
|
coord_string = coords[0]
|
|
|
|
coordinate = re.findall('([0-9.]+)', coord_string)
|
|
|
|
direction = re.search('[NSEW]$', coord_string)
|
|
|
|
if(coordinate is None or direction is None):
|
|
|
|
return None
|
|
|
|
|
|
|
|
direction = direction.group(0)
|
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
decimal_degrees = float(coordinate[0]) + float(coordinate[1])/60 + float(coordinate[2])/3600 # noqa
|
2015-10-20 10:17:09 +02:00
|
|
|
if(direction == 'S' or direction == 'W'):
|
|
|
|
decimal_degrees = decimal_degrees * -1
|
|
|
|
|
|
|
|
return decimal_degrees
|
|
|
|
|
|
|
|
"""
|
|
|
|
Get the date which the video was taken.
|
|
|
|
The date value returned is defined by the min() of mtime and ctime.
|
|
|
|
|
|
|
|
@returns, time object or None for non-video files or 0 timestamp
|
|
|
|
"""
|
|
|
|
def get_date_taken(self):
|
|
|
|
if(not self.is_valid()):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source = self.source
|
|
|
|
# We need to parse a string from EXIF into a timestamp.
|
2016-01-02 08:23:06 +01:00
|
|
|
# We use date.strptime -> .timetuple -> time.mktime to do the
|
|
|
|
# conversion in the local timezone
|
2015-11-29 08:58:20 +01:00
|
|
|
# If the time is not found in EXIF we update EXIF
|
2016-01-02 08:23:06 +01:00
|
|
|
seconds_since_epoch = min(os.path.getmtime(source), os.path.getctime(source)) # noqa
|
2015-11-29 08:58:20 +01:00
|
|
|
time_found_in_exif = False
|
2015-10-20 10:17:09 +02:00
|
|
|
exif_data = self.get_exif()
|
|
|
|
for key in ['Creation Date', 'Media Create Date']:
|
|
|
|
date = re.search('%s +: +([0-9: ]+)' % key, exif_data)
|
|
|
|
if(date is not None):
|
|
|
|
date_string = date.group(1)
|
|
|
|
try:
|
2016-01-02 08:23:06 +01:00
|
|
|
exif_seconds_since_epoch = time.mktime(
|
|
|
|
datetime.strptime(
|
|
|
|
date_string,
|
|
|
|
'%Y:%m:%d %H:%M:%S'
|
|
|
|
).timetuple()
|
|
|
|
)
|
2015-11-29 08:58:20 +01:00
|
|
|
if(exif_seconds_since_epoch < seconds_since_epoch):
|
|
|
|
seconds_since_epoch = exif_seconds_since_epoch
|
|
|
|
time_found_in_exif = True
|
|
|
|
break
|
2015-10-20 10:17:09 +02:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if(seconds_since_epoch == 0):
|
|
|
|
return None
|
|
|
|
|
|
|
|
return time.gmtime(seconds_since_epoch)
|
2016-01-02 08:23:06 +01:00
|
|
|
|
2015-10-05 08:36:06 +02:00
|
|
|
"""
|
|
|
|
Get the duration of a video in seconds.
|
|
|
|
Uses ffmpeg/ffprobe
|
|
|
|
|
|
|
|
@returns, string or None for a non-video file
|
|
|
|
"""
|
2015-10-07 08:47:51 +02:00
|
|
|
def get_duration(self):
|
2015-10-02 09:20:27 +02:00
|
|
|
if(not self.is_valid()):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source = self.source
|
2016-01-02 08:23:06 +01:00
|
|
|
result = subprocess.Popen(
|
|
|
|
['ffprobe', source],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT
|
|
|
|
)
|
2015-10-02 09:20:27 +02:00
|
|
|
for key in result.stdout.readlines():
|
|
|
|
if 'Duration' in key:
|
2016-01-02 08:23:06 +01:00
|
|
|
return re.search(
|
|
|
|
'(\d{2}:\d{2}.\d{2})',
|
|
|
|
key
|
|
|
|
).group(1).replace('.', ':')
|
2015-10-05 08:36:06 +02:00
|
|
|
return None
|
2015-10-02 09:20:27 +02:00
|
|
|
|
2015-10-20 10:17:09 +02:00
|
|
|
"""
|
|
|
|
Get exif data from video file.
|
2016-01-02 08:23:06 +01:00
|
|
|
Not all video files have exif and this currently relies on
|
|
|
|
the CLI exiftool program
|
2015-10-20 10:17:09 +02:00
|
|
|
|
|
|
|
@returns, string or None if exiftool is not found
|
|
|
|
"""
|
|
|
|
def get_exif(self):
|
2015-11-02 11:11:53 +01:00
|
|
|
exiftool = self.get_exiftool()
|
2015-10-20 10:17:09 +02:00
|
|
|
if(exiftool is None):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source = self.source
|
2016-01-02 08:23:06 +01:00
|
|
|
process_output = subprocess.Popen(
|
|
|
|
['%s "%s"' % (exiftool, source)],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
shell=True
|
|
|
|
)
|
2015-10-20 10:17:09 +02:00
|
|
|
return process_output.stdout.read()
|
|
|
|
|
2015-12-12 10:22:59 +01:00
|
|
|
"""
|
2016-01-02 08:23:06 +01:00
|
|
|
Check the file extension against valid file extensions as
|
|
|
|
returned by self.extensions
|
|
|
|
|
2015-12-12 10:22:59 +01:00
|
|
|
@returns, boolean
|
|
|
|
"""
|
|
|
|
def is_valid(self):
|
|
|
|
source = self.source
|
|
|
|
return os.path.splitext(source)[1][1:].lower() in self.extensions
|
|
|
|
|
2015-10-20 10:17:09 +02:00
|
|
|
"""
|
|
|
|
Set the date/time a photo was taken
|
|
|
|
|
|
|
|
@param, time, datetime, datetime object of when the photo was taken
|
|
|
|
|
|
|
|
@returns, boolean
|
|
|
|
"""
|
2015-11-30 07:01:27 +01:00
|
|
|
def set_date_taken(self, date_taken_as_datetime):
|
2015-10-20 10:17:09 +02:00
|
|
|
if(time is None):
|
|
|
|
return False
|
|
|
|
|
2015-11-30 07:01:27 +01:00
|
|
|
source = self.source
|
|
|
|
|
|
|
|
result = self.__update_using_plist(time=date_taken_as_datetime)
|
2016-01-02 08:23:06 +01:00
|
|
|
if(result is True):
|
|
|
|
os.utime(
|
|
|
|
source,
|
|
|
|
(
|
|
|
|
int(time.time()),
|
|
|
|
time.mktime(date_taken_as_datetime.timetuple())
|
|
|
|
)
|
|
|
|
)
|
2015-11-30 07:01:27 +01:00
|
|
|
|
2015-10-22 03:40:50 +02:00
|
|
|
return result
|
2015-10-20 10:17:09 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
Set lat/lon for a video
|
|
|
|
|
|
|
|
@param, latitude, float, Latitude of the file
|
|
|
|
@param, longitude, float, Longitude of the file
|
|
|
|
|
|
|
|
@returns, boolean
|
|
|
|
"""
|
|
|
|
def set_location(self, latitude, longitude):
|
|
|
|
if(latitude is None or longitude is None):
|
|
|
|
return False
|
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
result = self.__update_using_plist(latitude=latitude, longitude=longitude) # noqa
|
2015-10-20 10:17:09 +02:00
|
|
|
return result
|
|
|
|
|
2015-10-28 08:19:21 +01:00
|
|
|
"""
|
|
|
|
Set title for a video
|
|
|
|
|
|
|
|
@param, title, string, Title for the file
|
|
|
|
|
|
|
|
@returns, boolean
|
|
|
|
"""
|
|
|
|
|
|
|
|
def set_title(self, title):
|
|
|
|
if(title is None):
|
|
|
|
return False
|
|
|
|
|
|
|
|
result = self.__update_using_plist(title=title)
|
|
|
|
return result
|
2015-10-20 10:30:22 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
Updates video metadata using avmetareadwrite.
|
|
|
|
This method is a does a lot more than it should.
|
|
|
|
The general steps are...
|
|
|
|
1) Check if avmetareadwrite is installed
|
|
|
|
2) Export a plist file to a temporary location from the source file
|
|
|
|
3) Regex replace values in the plist file
|
2016-01-02 08:23:06 +01:00
|
|
|
4) Update the source file using the updated plist and save it to a
|
|
|
|
temporary location
|
2015-10-20 10:30:22 +02:00
|
|
|
5) Validate that the metadata in the updated temorary movie is valid
|
2016-01-02 08:23:06 +01:00
|
|
|
6) Copystat permission and time bits from the source file to the
|
|
|
|
temporary movie
|
2015-10-20 10:30:22 +02:00
|
|
|
7) Move the temporary file to overwrite the source file
|
|
|
|
|
|
|
|
@param, latitude, float, Latitude of the file
|
|
|
|
@param, longitude, float, Longitude of the file
|
|
|
|
|
|
|
|
@returns, boolean
|
|
|
|
"""
|
2015-10-20 10:17:09 +02:00
|
|
|
def __update_using_plist(self, **kwargs):
|
2016-01-02 08:23:06 +01:00
|
|
|
if(
|
|
|
|
'latitude' not in kwargs and
|
|
|
|
'longitude' not in kwargs and
|
|
|
|
'time' not in kwargs and
|
|
|
|
'title' not in kwargs
|
|
|
|
):
|
|
|
|
if(constants.debug is True):
|
2015-10-28 08:19:21 +01:00
|
|
|
print 'No lat/lon passed into __create_plist'
|
2015-10-20 10:17:09 +02:00
|
|
|
return False
|
|
|
|
|
2015-11-02 11:11:53 +01:00
|
|
|
avmetareadwrite = self.get_avmetareadwrite()
|
2015-10-20 10:17:09 +02:00
|
|
|
if(avmetareadwrite is None):
|
2016-01-02 08:23:06 +01:00
|
|
|
if(constants.debug is True):
|
2015-10-28 08:19:21 +01:00
|
|
|
print 'Could not find avmetareadwrite'
|
2015-10-20 10:17:09 +02:00
|
|
|
return False
|
|
|
|
|
|
|
|
source = self.source
|
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
# First we need to write the plist for an existing file
|
|
|
|
# to a temporary location
|
2015-10-20 10:17:09 +02:00
|
|
|
with tempfile.NamedTemporaryFile() as plist_temp:
|
2016-01-02 08:23:06 +01:00
|
|
|
# We need to write the plist file in a child process
|
|
|
|
# but also block for it to be complete.
|
2015-10-20 10:17:09 +02:00
|
|
|
# http://stackoverflow.com/a/5631819/1318758
|
2016-01-02 08:23:06 +01:00
|
|
|
avmetareadwrite_generate_plist_command = '%s -p "%s" "%s"' % (
|
|
|
|
avmetareadwrite,
|
|
|
|
plist_temp.name,
|
|
|
|
source
|
|
|
|
)
|
|
|
|
write_process = subprocess.Popen(
|
|
|
|
[avmetareadwrite_generate_plist_command],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
shell=True
|
|
|
|
)
|
2015-10-20 10:17:09 +02:00
|
|
|
streamdata = write_process.communicate()[0]
|
|
|
|
if(write_process.returncode != 0):
|
2016-01-02 08:23:06 +01:00
|
|
|
if(constants.debug is True):
|
2015-10-28 08:19:21 +01:00
|
|
|
print 'Failed to generate plist file'
|
2015-10-20 10:17:09 +02:00
|
|
|
return False
|
|
|
|
|
2015-10-22 03:40:50 +02:00
|
|
|
plist = plist_parser.Plist(plist_temp.name)
|
2016-01-02 08:23:06 +01:00
|
|
|
# Depending on the kwargs that were passed in we regex
|
|
|
|
# the plist_text before we write it back.
|
2015-10-22 03:40:50 +02:00
|
|
|
plist_should_be_written = False
|
|
|
|
if('latitude' in kwargs and 'longitude' in kwargs):
|
|
|
|
latitude = str(abs(kwargs['latitude'])).lstrip('0')
|
|
|
|
longitude = kwargs['longitude']
|
|
|
|
|
|
|
|
# Add a literal '+' to the lat/lon if it is positive.
|
|
|
|
# Do this first because we convert longitude to a string below.
|
|
|
|
lat_sign = '+' if latitude > 0 else '-'
|
|
|
|
# We need to zeropad the longitude.
|
|
|
|
# No clue why - ask Apple.
|
2016-01-02 08:23:06 +01:00
|
|
|
# We set the sign to + or - and then we take the absolute value
|
|
|
|
# and fill it.
|
2015-10-22 03:40:50 +02:00
|
|
|
lon_sign = '+' if longitude > 0 else '-'
|
2016-01-02 08:23:06 +01:00
|
|
|
longitude_str = '{:9.5f}'.format(abs(longitude)).replace(' ', '0') # noqa
|
|
|
|
lat_lon_str = '%s%s%s%s' % (
|
|
|
|
lat_sign,
|
|
|
|
latitude,
|
|
|
|
lon_sign,
|
|
|
|
longitude_str
|
|
|
|
)
|
2015-10-22 03:40:50 +02:00
|
|
|
|
|
|
|
plist.update_key('common/location', lat_lon_str)
|
|
|
|
plist_should_be_written = True
|
|
|
|
|
|
|
|
if('time' in kwargs):
|
|
|
|
# The time formats can be YYYY-mm-dd or YYYY-mm-dd hh:ii:ss
|
|
|
|
time_parts = str(kwargs['time']).split(' ')
|
|
|
|
ymd, hms = [None, None]
|
|
|
|
if(len(time_parts) >= 1):
|
|
|
|
ymd = [int(x) for x in time_parts[0].split('-')]
|
|
|
|
|
|
|
|
if(len(time_parts) == 2):
|
|
|
|
hms = [int(x) for x in time_parts[1].split(':')]
|
|
|
|
|
|
|
|
if(hms is not None):
|
2016-01-02 08:23:06 +01:00
|
|
|
d = datetime(ymd[0], ymd[1], ymd[2], hms[0], hms[1], hms[2]) # noqa
|
2015-10-22 03:40:50 +02:00
|
|
|
else:
|
|
|
|
d = datetime(ymd[0], ymd[1], ymd[2], 12, 00, 00)
|
|
|
|
|
|
|
|
offset = time.strftime("%z", time.gmtime(time.time()))
|
2016-01-02 08:23:06 +01:00
|
|
|
time_string = d.strftime('%Y-%m-%dT%H:%M:%S{}'.format(offset)) # noqa
|
2015-10-22 03:40:50 +02:00
|
|
|
plist.update_key('common/creationDate', time_string)
|
|
|
|
plist_should_be_written = True
|
|
|
|
|
2015-10-28 08:19:21 +01:00
|
|
|
if('title' in kwargs):
|
|
|
|
if(len(kwargs['title']) > 0):
|
|
|
|
plist.update_key('common/title', kwargs['title'])
|
|
|
|
plist_should_be_written = True
|
2015-10-22 03:40:50 +02:00
|
|
|
|
|
|
|
if(plist_should_be_written is True):
|
|
|
|
plist_final = plist_temp.name
|
|
|
|
plist.write_file(plist_final)
|
|
|
|
else:
|
2016-01-02 08:23:06 +01:00
|
|
|
if(constants.debug is True):
|
2015-10-28 08:19:21 +01:00
|
|
|
print 'Nothing to update, plist unchanged'
|
2015-10-20 10:17:09 +02:00
|
|
|
return False
|
|
|
|
|
|
|
|
# We create a temporary file to save the modified file to.
|
2016-01-02 08:23:06 +01:00
|
|
|
# If the modification is successful we will update the
|
|
|
|
# existing file.
|
|
|
|
# We can't call self.get_metadata else we will run into
|
|
|
|
# infinite loops
|
2015-11-29 08:58:20 +01:00
|
|
|
# metadata = self.get_metadata()
|
2015-10-20 10:17:09 +02:00
|
|
|
temp_movie = None
|
|
|
|
with tempfile.NamedTemporaryFile() as temp_file:
|
2015-11-29 08:58:20 +01:00
|
|
|
temp_movie = '%s.%s' % (temp_file.name, self.get_extension())
|
2015-10-20 10:17:09 +02:00
|
|
|
|
|
|
|
# We need to block until the child process completes.
|
|
|
|
# http://stackoverflow.com/a/5631819/1318758
|
2016-01-02 08:23:06 +01:00
|
|
|
avmetareadwrite_command = '%s -a %s "%s" "%s"' % (
|
|
|
|
avmetareadwrite,
|
|
|
|
plist_final,
|
|
|
|
source,
|
|
|
|
temp_movie
|
|
|
|
)
|
|
|
|
update_process = subprocess.Popen(
|
|
|
|
[avmetareadwrite_command],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
shell=True
|
|
|
|
)
|
2015-10-20 10:17:09 +02:00
|
|
|
streamdata = update_process.communicate()[0]
|
|
|
|
if(update_process.returncode != 0):
|
2016-01-02 08:23:06 +01:00
|
|
|
if(constants.debug is True):
|
|
|
|
print '%s did not complete successfully' % avmetareadwrite_command # noqa
|
2015-10-20 10:17:09 +02:00
|
|
|
return False
|
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
# Before we do anything destructive we confirm that the
|
|
|
|
# file is in tact.
|
2015-10-20 10:30:22 +02:00
|
|
|
check_media = Video(temp_movie)
|
|
|
|
check_metadata = check_media.get_metadata()
|
2016-01-02 08:23:06 +01:00
|
|
|
if(
|
|
|
|
(
|
|
|
|
'latitude' in kwargs and
|
|
|
|
'longitude' in kwargs and
|
|
|
|
check_metadata['latitude'] is None and
|
|
|
|
check_metadata['longitude'] is None
|
|
|
|
) or (
|
|
|
|
'time' in kwargs and
|
|
|
|
check_metadata['date_taken'] is None
|
|
|
|
)
|
|
|
|
):
|
|
|
|
if(constants.debug is True):
|
2015-10-28 08:19:21 +01:00
|
|
|
print 'Something went wrong updating video metadata'
|
2015-10-20 10:17:09 +02:00
|
|
|
return False
|
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
# Copy file information from original source to temporary file
|
|
|
|
# before copying back over
|
2015-10-20 10:17:09 +02:00
|
|
|
shutil.copystat(source, temp_movie)
|
2015-12-01 09:39:05 +01:00
|
|
|
stat = os.stat(source)
|
2015-10-20 10:17:09 +02:00
|
|
|
shutil.move(temp_movie, source)
|
2015-12-01 09:39:05 +01:00
|
|
|
os.utime(source, (stat.st_atime, stat.st_mtime))
|
|
|
|
|
2015-10-20 10:17:09 +02:00
|
|
|
return True
|
|
|
|
|
2015-10-05 08:36:06 +02:00
|
|
|
"""
|
|
|
|
Static method to access static __valid_extensions variable.
|
|
|
|
|
|
|
|
@returns, tuple
|
|
|
|
"""
|
2015-10-05 08:10:46 +02:00
|
|
|
@classmethod
|
|
|
|
def get_valid_extensions(Video):
|
2015-12-12 10:22:59 +01:00
|
|
|
return Video.extensions
|
2015-10-05 08:10:46 +02:00
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
|
2015-10-02 09:20:27 +02:00
|
|
|
class Transcode(object):
|
|
|
|
# Constructor takes a video object as it's parameter
|
|
|
|
def __init__(self, video=None):
|
|
|
|
self.video = video
|