tictacsync 0.8a0__tar.gz → 0.82a0__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tictacsync
3
- Version: 0.8a0
3
+ Version: 0.82a0
4
4
  Summary: command for syncing audio video recordings
5
5
  Home-page: https://tictacsync.org/
6
6
  Author: Raymond Lutz
@@ -21,7 +21,7 @@ setup(
21
21
  'numpy>=1.24.3',
22
22
  'rich>=10.12.0',
23
23
  'lmfit',
24
- 'skimage',
24
+ 'scikit-image',
25
25
  'scipy>=1.10.1',
26
26
  ],
27
27
  python_requires='>=3.10',
@@ -32,7 +32,7 @@ setup(
32
32
  'multi2polywav = tictacsync.multi2polywav:main',
33
33
  ]
34
34
  },
35
- version = '0.8a',
35
+ version = '0.82a',
36
36
  description = "command for syncing audio video recordings",
37
37
  long_description_content_type='text/markdown',
38
38
  long_description = long_descr,
@@ -126,7 +126,7 @@ def main():
126
126
  logger.add(sys.stderr, level="DEBUG")
127
127
  # logger.add(sys.stdout, filter="__main__")
128
128
  # logger.add(sys.stdout, filter="yaltc")
129
- # logger.add(sys.stdout, filter=lambda r: r["function"] == "_read_sound_find_TicTacCode")
129
+ # logger.add(sys.stdout, filter=lambda r: r["function"] == "build_audio_and_write_video")
130
130
  # logger.add(sys.stdout, filter=lambda r: r["function"] == "_detect_sync_pulse_position")
131
131
  # logger.add(sys.stdout, filter=lambda r: r["function"] == "_get_device_mix")
132
132
  # logger.add(sys.stdout, filter=lambda r: r["function"] == "_sox_mix_files")
@@ -888,6 +888,8 @@ class AudioStitcherVideoMerger:
888
888
  self.videoclip.synced_audio = \
889
889
  _sox_keep(concatenate_audio_file, [sox_kept_channel])
890
890
  self._merge_audio_and_video()
891
+ if asked_ISOs:
892
+ print('WARNING: you asked for ISO files but found one audio channel only...')
891
893
  return #########################################################
892
894
  #
893
895
  # if not returned yet from fct, either multitracks and/or multi
@@ -916,6 +918,7 @@ class AudioStitcherVideoMerger:
916
918
  # [(dev1, [mono1_ch1, mono1_ch2]), (dev2, [mono2_ch1, mono2_ch2)]] in
917
919
  # devices_and_monofiles:
918
920
  if asked_ISOs:
921
+ logger.debug('will output ISO files...')
919
922
  devices_and_monofiles = [(device, _split_channels(multi_chan_audio))
920
923
  for device, multi_chan_audio
921
924
  in merged_audio_files_by_device]
@@ -31,6 +31,7 @@ except:
31
31
 
32
32
  TEENSY_MAX_LAG = 128/44100 # sec, duration of a default length audio block
33
33
 
34
+ # see extract_seems_TicTacCode() for duration criterion values
34
35
 
35
36
  CACHING = True
36
37
  DEL_TEMP = False
@@ -266,7 +267,7 @@ class Decoder:
266
267
  # extra_window_duration = SOUND_EXTRACT_LENGTH - 1
267
268
  # eff_w = total_w - extra_window_duration
268
269
  # logger.debug('effective_word_duration %f (two regions)'%eff_w)
269
- if not 0.5 < total_w < 0.655:
270
+ if not 0.5 < total_w < 0.656:
270
271
  failing_comment = 'two regions duration %f not in [0.50 0.655]\n%s'%(total_w, widths)
271
272
  # fig, ax = plt.subplots()
272
273
  # p(ax, sound_extract_one_bit)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tictacsync
3
- Version: 0.8a0
3
+ Version: 0.82a0
4
4
  Summary: command for syncing audio video recordings
5
5
  Home-page: https://tictacsync.org/
6
6
  Author: Raymond Lutz
@@ -5,5 +5,5 @@ matplotlib>=3.7.1
5
5
  numpy>=1.24.3
6
6
  rich>=10.12.0
7
7
  lmfit
8
- skimage
8
+ scikit-image
9
9
  scipy>=1.10.1
File without changes
File without changes
File without changes