describealign 2.0.1__py3-none-any.whl → 2.0.2__py3-none-any.whl
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.
- {describealign-2.0.1.dist-info → describealign-2.0.2.dist-info}/METADATA +1 -1
- describealign-2.0.2.dist-info/RECORD +7 -0
- describealign.py +7 -7
- describealign-2.0.1.dist-info/RECORD +0 -7
- {describealign-2.0.1.dist-info → describealign-2.0.2.dist-info}/WHEEL +0 -0
- {describealign-2.0.1.dist-info → describealign-2.0.2.dist-info}/entry_points.txt +0 -0
- {describealign-2.0.1.dist-info → describealign-2.0.2.dist-info}/licenses/LICENSE +0 -0
- {describealign-2.0.1.dist-info → describealign-2.0.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
describealign.py,sha256=9zYf88jyd8H3apejkBgEjtfsFPbXEEfD1vZLG2mcdWc,91808
|
|
2
|
+
describealign-2.0.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
3
|
+
describealign-2.0.2.dist-info/METADATA,sha256=fgqE7kH58FLJ1L8m4cfwITC_6fGGISiLRNjl1xPml5w,1331
|
|
4
|
+
describealign-2.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5
|
+
describealign-2.0.2.dist-info/entry_points.txt,sha256=7o7N6v3r4vFIH_XBdgk7WWhr-vZ_YitY8JWMdzN5xU0,71
|
|
6
|
+
describealign-2.0.2.dist-info/top_level.txt,sha256=VYHWy4TeimBAF5BQAuDj4adGdLaWs2AoYx6qQjGPJ4M,14
|
|
7
|
+
describealign-2.0.2.dist-info/RECORD,,
|
describealign.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = '2.0.
|
|
1
|
+
__version__ = '2.0.2'
|
|
2
2
|
|
|
3
3
|
# combines videos with matching audio files (e.g. audio descriptions)
|
|
4
4
|
# input: video or folder of videos and an audio file or folder of audio files
|
|
@@ -1132,7 +1132,7 @@ if wx is not None:
|
|
|
1132
1132
|
|
|
1133
1133
|
class DialogSettings(wx.Dialog):
|
|
1134
1134
|
def __init__(self, parent, config_path, is_dark):
|
|
1135
|
-
wx.Dialog.__init__(self, parent, title="Settings - describealign", size=wx.Size(450,
|
|
1135
|
+
wx.Dialog.__init__(self, parent, title="Settings - describealign", size=wx.Size(450,370),
|
|
1136
1136
|
style=wx.DEFAULT_DIALOG_STYLE|wx.TAB_TRAVERSAL)
|
|
1137
1137
|
# setting the GUI dialog's font causes all contained elements to inherit that font by default
|
|
1138
1138
|
self.SetFont(wx.Font(*gui_font))
|
|
@@ -1209,14 +1209,14 @@ if wx is not None:
|
|
|
1209
1209
|
#
|
|
1210
1210
|
self.SetSizer(sizer_dialog)
|
|
1211
1211
|
sizer_dialog.Add(self.text_header, 0, wx.ALL, 5)
|
|
1212
|
-
sizer_dialog.Add(sizer_output_dir,
|
|
1213
|
-
sizer_dialog.Add(sizer_alignment_dir,
|
|
1214
|
-
sizer_dialog.Add(sizer_prepend,
|
|
1215
|
-
sizer_dialog.Add(sizer_stretch_audio_no_pitch_correction_outer,
|
|
1212
|
+
sizer_dialog.Add(sizer_output_dir, 3, wx.LEFT|wx.RIGHT|wx.EXPAND, 2)
|
|
1213
|
+
sizer_dialog.Add(sizer_alignment_dir, 3, wx.LEFT|wx.RIGHT|wx.EXPAND, 2)
|
|
1214
|
+
sizer_dialog.Add(sizer_prepend, 3, wx.LEFT|wx.EXPAND, 5)
|
|
1215
|
+
sizer_dialog.Add(sizer_stretch_audio_no_pitch_correction_outer, 3, wx.LEFT|wx.EXPAND, 5)
|
|
1216
1216
|
sizer_stretch_audio_no_pitch_correction_outer.Add(panel_stretch_audio_no_pitch_correction,
|
|
1217
1217
|
1, wx.LEFT|wx.EXPAND, 5)
|
|
1218
1218
|
sizer_stretch_audio_no_pitch_correction_outer.Add((0, 0), 2, wx.EXPAND, 5) # spacer
|
|
1219
|
-
sizer_dialog.Add(sizer_save_cancel,
|
|
1219
|
+
sizer_dialog.Add(sizer_save_cancel, 5, wx.BOTTOM|wx.EXPAND, 5)
|
|
1220
1220
|
sizer_prepend.Add(self.text_prepend, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5)
|
|
1221
1221
|
sizer_prepend.Add(self.text_ctrl_prepend, 0, wx.ALIGN_CENTER_VERTICAL, 5)
|
|
1222
1222
|
sizer_output_dir.Add(self.static_box_sizer_output, 1, wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL, 5)
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
describealign.py,sha256=MZ06OIh2sBwSw17lNRRzGDpnEReLRzQM-WXV2YmI0O8,91808
|
|
2
|
-
describealign-2.0.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
3
|
-
describealign-2.0.1.dist-info/METADATA,sha256=VLDbu3rGzj_2LKdhKTT2fxNVxbZ3V2Ac3v-BCbTsO14,1331
|
|
4
|
-
describealign-2.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5
|
-
describealign-2.0.1.dist-info/entry_points.txt,sha256=7o7N6v3r4vFIH_XBdgk7WWhr-vZ_YitY8JWMdzN5xU0,71
|
|
6
|
-
describealign-2.0.1.dist-info/top_level.txt,sha256=VYHWy4TeimBAF5BQAuDj4adGdLaWs2AoYx6qQjGPJ4M,14
|
|
7
|
-
describealign-2.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|