tictacsync 0.96a0__tar.gz → 0.98a0__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.

Files changed (21) hide show
  1. {tictacsync-0.96a0/tictacsync.egg-info → tictacsync-0.98a0}/PKG-INFO +7 -4
  2. {tictacsync-0.96a0 → tictacsync-0.98a0}/README.md +6 -3
  3. {tictacsync-0.96a0 → tictacsync-0.98a0}/setup.py +2 -1
  4. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/device_scanner.py +209 -117
  5. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/entry.py +192 -90
  6. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/multi2polywav.py +2 -2
  7. tictacsync-0.98a0/tictacsync/remrgmx.py +120 -0
  8. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/timeline.py +195 -103
  9. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/yaltc.py +17 -20
  10. {tictacsync-0.96a0 → tictacsync-0.98a0/tictacsync.egg-info}/PKG-INFO +7 -4
  11. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync.egg-info/requires.txt +1 -0
  12. tictacsync-0.96a0/tictacsync/remrgmx.py +0 -28
  13. {tictacsync-0.96a0 → tictacsync-0.98a0}/LICENSE +0 -0
  14. {tictacsync-0.96a0 → tictacsync-0.98a0}/setup.cfg +0 -0
  15. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/__init__.py +0 -0
  16. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync/remergemix.py +0 -0
  17. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync.egg-info/SOURCES.txt +0 -0
  18. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync.egg-info/dependency_links.txt +0 -0
  19. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync.egg-info/entry_points.txt +0 -0
  20. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync.egg-info/not-zip-safe +0 -0
  21. {tictacsync-0.96a0 → tictacsync-0.98a0}/tictacsync.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tictacsync
3
- Version: 0.96a0
3
+ Version: 0.98a0
4
4
  Summary: command for syncing audio video recordings
5
5
  Home-page: https://tictacsync.org/
6
6
  Author: Raymond Lutz
@@ -58,7 +58,7 @@ Then pip install the syncing program:
58
58
  This should install python dependencies _and_ the `tictacsync` command.
59
59
  ## Usage
60
60
 
61
- Download multiple sample files [here](https://nuage.lutz.quebec/s/nY54nQyxmZbTLti/download/dailies.zip) (625 MB, sorry) unzip and run:
61
+ Download multiple sample files [here](https://nuage.lutz.quebec/s/NpjzXH5R7DrQEWS/download/dailies.zip) (625 MB, sorry) unzip and run:
62
62
 
63
63
  > tictacsync dailies/loose
64
64
  The program `tictacsync` will recursively scan the directory given as argument, find all audio that coincide with any video and merge them into a subfolder named `SyncedMedia`. When the argument is an unique media file (not a directory), no syncing will occur but the decoded starting time will be printed to stdout:
@@ -73,19 +73,22 @@ The program `tictacsync` will recursively scan the directory given as argument,
73
73
  If shooting multicam, put clips in their respective directories (using the camera name as folder name) _and_ the audio under their own directory. `tictacsync` will detect that structured input and will generate multicam folders ready to be imported into your NLE (for now only DaVinci Resolve has been validated).
74
74
 
75
75
  ## Options
76
+ #### `-v`
76
77
 
77
78
  For a very verbose output add the `-v` flag:
78
79
 
79
80
  > tictacsync -v dailies/loose/MVI_0024.MP4
80
-
81
+ #### `--terse`
81
82
  For a one line output (or to suppress the progress bars) use the `--terse` flag:
82
83
 
83
84
  > tictacsync --terse dailies/loose/MVI_0024.MP4
84
85
  dailies/loose/MVI_0024.MP4 UTC:2024-03-12 23:07:01.4281 pulse: 27450 in chan 0
86
+ #### `--isos`
85
87
 
86
- To also produce _synced_ ISO audio files, specify `--isos` . A directory named `ISOs` will contain _for each synced video_ a set of ISO audio files of exact same length, padded or trimmed to coincide with the video track. After re-editing and re-mixing a `remergemix` command will resync the new audio with the video and _the new sound track will be updated on your NLE timeline_, at least in Kdenlive...
88
+ Specifying `--isos` produces _synced_ ISO audio files: for each synced \<video-clip\> a directory named `<video-clip>_ISO` will contain a set of ISO audio files each of exact same length, padded or trimmed to coincide with the video start. After re-editing and re-mixing in your DAW of choice a `remergemix` command will resync the new audio with the video and _the new sound track will be updated on your NLE timeline_, _automagically_ on some NLEs or on command for [Davinci Resolve](https://www.niwa.nu/dr-scripts/).
87
89
 
88
90
  > tictacsync --isos dailies/structured
91
+ #### `-p`
89
92
 
90
93
  When called with the `-p` flag, zoomable plots will be produced for diagnostic purpose (close the plotting window for the 2nd one) and the decoded starting time will be output to stdin:
91
94
 
@@ -35,7 +35,7 @@ Then pip install the syncing program:
35
35
  This should install python dependencies _and_ the `tictacsync` command.
36
36
  ## Usage
37
37
 
38
- Download multiple sample files [here](https://nuage.lutz.quebec/s/nY54nQyxmZbTLti/download/dailies.zip) (625 MB, sorry) unzip and run:
38
+ Download multiple sample files [here](https://nuage.lutz.quebec/s/NpjzXH5R7DrQEWS/download/dailies.zip) (625 MB, sorry) unzip and run:
39
39
 
40
40
  > tictacsync dailies/loose
41
41
  The program `tictacsync` will recursively scan the directory given as argument, find all audio that coincide with any video and merge them into a subfolder named `SyncedMedia`. When the argument is an unique media file (not a directory), no syncing will occur but the decoded starting time will be printed to stdout:
@@ -50,19 +50,22 @@ The program `tictacsync` will recursively scan the directory given as argument,
50
50
  If shooting multicam, put clips in their respective directories (using the camera name as folder name) _and_ the audio under their own directory. `tictacsync` will detect that structured input and will generate multicam folders ready to be imported into your NLE (for now only DaVinci Resolve has been validated).
51
51
 
52
52
  ## Options
53
+ #### `-v`
53
54
 
54
55
  For a very verbose output add the `-v` flag:
55
56
 
56
57
  > tictacsync -v dailies/loose/MVI_0024.MP4
57
-
58
+ #### `--terse`
58
59
  For a one line output (or to suppress the progress bars) use the `--terse` flag:
59
60
 
60
61
  > tictacsync --terse dailies/loose/MVI_0024.MP4
61
62
  dailies/loose/MVI_0024.MP4 UTC:2024-03-12 23:07:01.4281 pulse: 27450 in chan 0
63
+ #### `--isos`
62
64
 
63
- To also produce _synced_ ISO audio files, specify `--isos` . A directory named `ISOs` will contain _for each synced video_ a set of ISO audio files of exact same length, padded or trimmed to coincide with the video track. After re-editing and re-mixing a `remergemix` command will resync the new audio with the video and _the new sound track will be updated on your NLE timeline_, at least in Kdenlive...
65
+ Specifying `--isos` produces _synced_ ISO audio files: for each synced \<video-clip\> a directory named `<video-clip>_ISO` will contain a set of ISO audio files each of exact same length, padded or trimmed to coincide with the video start. After re-editing and re-mixing in your DAW of choice a `remergemix` command will resync the new audio with the video and _the new sound track will be updated on your NLE timeline_, _automagically_ on some NLEs or on command for [Davinci Resolve](https://www.niwa.nu/dr-scripts/).
64
66
 
65
67
  > tictacsync --isos dailies/structured
68
+ #### `-p`
66
69
 
67
70
  When called with the `-p` flag, zoomable plots will be produced for diagnostic purpose (close the plotting window for the 2nd one) and the decoded starting time will be output to stdin:
68
71
 
@@ -23,6 +23,7 @@ setup(
23
23
  'lmfit',
24
24
  'scikit-image',
25
25
  'scipy>=1.10.1',
26
+ 'platformdirs',
26
27
  ],
27
28
  python_requires='>=3.10',
28
29
  entry_points = {
@@ -32,7 +33,7 @@ setup(
32
33
  'multi2polywav = tictacsync.multi2polywav:main',
33
34
  ]
34
35
  },
35
- version = '0.96a',
36
+ version = '0.98a',
36
37
  description = "command for syncing audio video recordings",
37
38
  long_description_content_type='text/markdown',
38
39
  long_description = long_descr,