tictacsync 1.0.0a0__tar.gz → 1.0.1a0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tictacsync might be problematic. Click here for more details.
- {tictacsync-1.0.0a0/tictacsync.egg-info → tictacsync-1.0.1a0}/PKG-INFO +1 -1
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/setup.py +1 -1
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/newmix.py +4 -1
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0/tictacsync.egg-info}/PKG-INFO +1 -1
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/LICENSE +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/README.md +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/setup.cfg +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/__init__.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/device_scanner.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/entry.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/multi2polywav.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/remergemix.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/timeline.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync/yaltc.py +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync.egg-info/SOURCES.txt +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync.egg-info/dependency_links.txt +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync.egg-info/entry_points.txt +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync.egg-info/not-zip-safe +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync.egg-info/requires.txt +0 -0
- {tictacsync-1.0.0a0 → tictacsync-1.0.1a0}/tictacsync.egg-info/top_level.txt +0 -0
|
@@ -33,7 +33,7 @@ setup(
|
|
|
33
33
|
'multi2polywav = tictacsync.multi2polywav:main',
|
|
34
34
|
]
|
|
35
35
|
},
|
|
36
|
-
version = '1.0.
|
|
36
|
+
version = '1.0.1-alpha',
|
|
37
37
|
description = "command for syncing audio video recordings",
|
|
38
38
|
long_description_content_type='text/markdown',
|
|
39
39
|
long_description = long_descr,
|
|
@@ -97,7 +97,7 @@ def parse_and_check_arguments():
|
|
|
97
97
|
parser.add_argument('-b',
|
|
98
98
|
nargs=1,
|
|
99
99
|
dest='both_audio_vid',
|
|
100
|
-
help='Directory scanned for both audio and video')
|
|
100
|
+
help='Directory scanned for both audio and video, when tictacsync was used in "alongside mode"')
|
|
101
101
|
parser.add_argument('--dry',
|
|
102
102
|
action='store_true',
|
|
103
103
|
dest='scan_only',
|
|
@@ -133,6 +133,9 @@ def parse_and_check_arguments():
|
|
|
133
133
|
# parser.print_help(sys.stderr)
|
|
134
134
|
# sys.exit(0)
|
|
135
135
|
# list of singletons, so flatten. Keep None and False as is
|
|
136
|
+
if args.scan_only:
|
|
137
|
+
print('Sorry, --dry option not implemented yet, bye.')
|
|
138
|
+
sys.exit(0)
|
|
136
139
|
return args
|
|
137
140
|
|
|
138
141
|
def get_recent_mix(SND_dir, vid):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|