NA
This commit is contained in:
parent
578f9754d5
commit
77652b5001
2 changed files with 34 additions and 10 deletions
|
@ -27,6 +27,7 @@ def get_raw(client):
|
||||||
{
|
{
|
||||||
'conditions': [
|
'conditions': [
|
||||||
{'key': 'filename', 'value': '.cr2', 'operator': ''},
|
{'key': 'filename', 'value': '.cr2', 'operator': ''},
|
||||||
|
{'key': 'filename', 'value': '.pef', 'operator': ''},
|
||||||
{'key': 'filename', 'value': '.nef', 'operator': ''},
|
{'key': 'filename', 'value': '.nef', 'operator': ''},
|
||||||
],
|
],
|
||||||
'operator': '|'
|
'operator': '|'
|
||||||
|
@ -45,7 +46,7 @@ def get_raw(client):
|
||||||
'range': [o, o+chunk]
|
'range': [o, o+chunk]
|
||||||
})['data']['items']
|
})['data']['items']
|
||||||
o += chunk
|
o += chunk
|
||||||
files = [f for f in files if f['extension'].lower() in ('cr2', 'nef')]
|
files = [f for f in files if f['extension'].lower() in ('cr2', 'nef', 'pef')]
|
||||||
return files
|
return files
|
||||||
|
|
||||||
def raw_exists(client, oshash):
|
def raw_exists(client, oshash):
|
||||||
|
|
37
mosireen.py
37
mosireen.py
|
@ -3,15 +3,17 @@
|
||||||
|
|
||||||
custom parse_path for pandora_client to parse musereen archive paths in the form
|
custom parse_path for pandora_client to parse musereen archive paths in the form
|
||||||
|
|
||||||
YYYY/MM_YYYY/DD_MM_YYYY/Location 1/Location 2/Subject 1/Cinematographer/Subject 2(optional)/MVI_2036.MOV
|
YYYY/MM_YYYY/DD_MM_YYYY/Location 1/Location 2/Event/Cinematographer/Topic 2(optional)/MVI_2036.MOV
|
||||||
|
|
||||||
'''
|
'''
|
||||||
import re
|
import re
|
||||||
import ox
|
import ox
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
sync_extensions = ['.nef', '.cr2', '.pef']
|
||||||
|
|
||||||
def example_path(client):
|
def example_path(client):
|
||||||
return '\t' + 'YYYY/MM_YYYY/DD_MM_YYYY/Location 1/Location 2/Subject 1/Shooter/Subject 2(optional)/MVI_2036.MOV'
|
return '\t' + 'YYYY/MM_YYYY/DD_MM_YYYY/Location 1/Location 2/Event/Shooter/Topic 2(optional)/MVI_2036.MOV'
|
||||||
|
|
||||||
def parse_path(client, path, context):
|
def parse_path(client, path, context):
|
||||||
'''
|
'''
|
||||||
|
@ -38,13 +40,23 @@ def parse_path(client, path, context):
|
||||||
title = "%s, %s (%s)" % (info['subject1'], info['subject2'], date)
|
title = "%s, %s (%s)" % (info['subject1'], info['subject2'], date)
|
||||||
else:
|
else:
|
||||||
title = "%s (%s)" % (info['subject1'], date)
|
title = "%s (%s)" % (info['subject1'], date)
|
||||||
title = "%s %s at %s, %s" % (title,
|
|
||||||
info['shooter'],info['location2'],info['location1'])
|
while date.endswith('-NA'):
|
||||||
|
date = date[:-3]
|
||||||
|
title = "%s %s at %s, %s" % (title, info['shooter'], info['location2'], info['location1'])
|
||||||
|
title = title.replace(' ', ' ').strip()
|
||||||
|
title = title.replace(' ', ' ').strip()
|
||||||
|
|
||||||
|
topic = [t.strip() for t in topic]
|
||||||
|
shooter = [s.strip() for s in info['shooter'].split(',')]
|
||||||
|
|
||||||
|
location = '%s, %s' % (info['location2'], info['location1'])
|
||||||
|
location = location.strip()
|
||||||
|
|
||||||
r = {
|
r = {
|
||||||
'cinematographer': info['shooter'].split(', '),
|
'cinematographer': shooter,
|
||||||
'date': date,
|
'date': date,
|
||||||
'location': '%s, %s' % (info['location2'], info['location1']),
|
'location': location,
|
||||||
'title': title,
|
'title': title,
|
||||||
'topic': topic
|
'topic': topic
|
||||||
}
|
}
|
||||||
|
@ -60,8 +72,19 @@ def ignore_file(client, path):
|
||||||
'''
|
'''
|
||||||
filename = os.path.basename(path)
|
filename = os.path.basename(path)
|
||||||
if filename.startswith('._') \
|
if filename.startswith('._') \
|
||||||
or filename in ('.DS_Store',) \
|
or filename in (
|
||||||
|
'.DS_Store', 'Thumbs.db',
|
||||||
|
'CINDEX.TMP', 'THUMB.TDT', 'THUMB.TID'
|
||||||
|
) \
|
||||||
or filename.endswith('~') \
|
or filename.endswith('~') \
|
||||||
|
or 'Autosave Vault' in path \
|
||||||
|
or 'CLIPINF/' in path \
|
||||||
|
or 'Final Cut Pro Thumbnail Data' in path \
|
||||||
|
or os.path.splitext(filename.lower())[-1] in (
|
||||||
|
'.thm', '.rtf', '.sfk', '.fcp', '.xmp', '.prproj',
|
||||||
|
'.ctg', '.cpi', '.bdm', '.mpl', '.html', '.txt',
|
||||||
|
'.doc', '.xml', '.psd', '.pds',
|
||||||
|
) \
|
||||||
or not os.path.exists(path) \
|
or not os.path.exists(path) \
|
||||||
or os.stat(path).st_size == 0:
|
or os.stat(path).st_size == 0:
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue