modusa 0.3.80__py3-none-any.whl → 0.3.82__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.
@@ -3,7 +3,7 @@
3
3
  import numpy as np
4
4
  from IPython.display import display, HTML, Audio
5
5
 
6
- def play(y: np.ndarray, sr: float, t0: float = 0.0, regions = None, title = None) -> None:
6
+ def play(y: np.ndarray, sr: float, title = None, t0: float = 0.0, regions = None) -> None:
7
7
  """
8
8
  Plays audio clips for given regions in Jupyter Notebooks.
9
9
 
@@ -14,6 +14,8 @@ def play(y: np.ndarray, sr: float, t0: float = 0.0, regions = None, title = None
14
14
  - Mono (1D) numpy array.
15
15
  sr: float
16
16
  - Sampling rate of the audio.
17
+ title : str | None
18
+ - Title to display above audio players.
17
19
  t0: float
18
20
  - Starting timestamp, incase the audio is cropped
19
21
  - Default: 0.0 → Starts from 0.0 sec
@@ -21,15 +23,13 @@ def play(y: np.ndarray, sr: float, t0: float = 0.0, regions = None, title = None
21
23
  - Regions to extract and play (in sec), e.g. [(0, 10.2, "tag")]
22
24
  - If there is only one region, a tuple should also work. e.g. (0, 10.2, "tag")
23
25
  - Default: None → The entire song is selected.
24
- title : str | None
25
- - Title to display above audio players.
26
26
 
27
27
  Returns
28
28
  -------
29
29
  None
30
30
  """
31
31
  if title:
32
- display(HTML(f"<h4>{title}</h4>"))
32
+ display(HTML(f"<p style='font-size:15px; font-weight:600; text-decoration: underline;'>{title}</p>"))
33
33
 
34
34
  clip_tags = []
35
35
  timings = []
modusa/tools/plotter.py CHANGED
@@ -280,7 +280,7 @@ class Fig:
280
280
  curr_row[0].grid(True, linestyle='--', linewidth=0.7, color="lightgray" ,alpha=0.6)
281
281
 
282
282
 
283
- def add_matrix(self, M, y=None, x=None, c="viridis", o="upper", label=None, ylabel=None, ylim=None, yticks=None, yticklabels=None, xticks=None, xticklabels=None, cbar=True, grid=True, ax=None):
283
+ def add_matrix(self, M, y=None, x=None, c="viridis", o="upper", label=None, ylabel=None, ylim=None, yticks=None, yticklabels=None, xticks=None, xticklabels=None, cbar=True, grid=True, alpha=1, ax=None):
284
284
  """
285
285
  Add matrix to the figure.
286
286
 
@@ -323,6 +323,10 @@ class Fig:
323
323
  grid: bool
324
324
  - Do you want the grid?
325
325
  - Default: True
326
+ alpha: float (0 to 1)
327
+ - Transparency level
328
+ - 1 being opaque and 0 being completely transparent
329
+ - Default: 1
326
330
  ax: int
327
331
  - Which specific axis to plot (1, 2, 3, ...)
328
332
  - None
@@ -338,7 +342,7 @@ class Fig:
338
342
 
339
343
  extent = self._calculate_extent(x, y, o)
340
344
 
341
- im = curr_row[0].imshow(M, aspect="auto", origin=o, cmap=c, extent=extent, alpha=0.6)
345
+ im = curr_row[0].imshow(M, aspect="auto", origin=o, cmap=c, extent=extent, alpha=alpha)
342
346
 
343
347
  if ylabel is not None: curr_row[0].set_ylabel(ylabel)
344
348
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: modusa
3
- Version: 0.3.80
3
+ Version: 0.3.82
4
4
  Summary: A modular signal analysis python library.
5
5
  Author-Email: Ankit Anand <ankit0.anand0@gmail.com>
6
6
  License: MIT
@@ -1,7 +1,7 @@
1
- modusa-0.3.80.dist-info/METADATA,sha256=RH0yMKWIxss4p3Kh9nn4_hq4OIGKF6xw8Rg9U_Jn4Gs,1436
2
- modusa-0.3.80.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
- modusa-0.3.80.dist-info/entry_points.txt,sha256=fmKpleVXj6CdaBVL14WoEy6xx7JQCs85jvzwTi3lePM,73
4
- modusa-0.3.80.dist-info/licenses/LICENSE.md,sha256=JTaXAjx5awk76VArKCx5dUW8vmLEWsL_ZlR7-umaHbA,1078
1
+ modusa-0.3.82.dist-info/METADATA,sha256=17Ns53oU10lBKyqHrnPGqm_UgBLKcJM_I2G9zN093nk,1436
2
+ modusa-0.3.82.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
+ modusa-0.3.82.dist-info/entry_points.txt,sha256=fmKpleVXj6CdaBVL14WoEy6xx7JQCs85jvzwTi3lePM,73
4
+ modusa-0.3.82.dist-info/licenses/LICENSE.md,sha256=JTaXAjx5awk76VArKCx5dUW8vmLEWsL_ZlR7-umaHbA,1078
5
5
  modusa/.DS_Store,sha256=_gm6qJREwfMi8dE7n5S89_RG46u5t3xHyD-smNhtNoM,6148
6
6
  modusa/__init__.py,sha256=NePOWbyJftN9eKV6VEzS8QBMY5SCym9DzUCrVcVZ7kY,283
7
7
  modusa/config.py,sha256=bTqK4t00FZqERVITrxW_q284aDDJAa9aMSfFknfR-oU,280
@@ -46,12 +46,12 @@ modusa/tools/_plotter_old.py,sha256=KGow7mihA2H1WNq7s5bpivhCgGo2qVIeDaO6iabpsrg,
46
46
  modusa/tools/ann_loader.py,sha256=GWiX7v4CxyAECthmtBAaSMMqsjo1YaVfRA9u-CtTTFM,1718
47
47
  modusa/tools/audio_converter.py,sha256=415qBoPm2sBIuBSI7m1XBKm0AbmVmPydIPPr-uO8D3c,1778
48
48
  modusa/tools/audio_loader.py,sha256=n9Q9t_GmlE8AtioVwRcXX3rnd6PkbGTx-hAoNgUnNOQ,2780
49
- modusa/tools/audio_player.py,sha256=GP04TWW4jBwQBjANkfR_cJtEy7cIhvbu8RTwnf9hD6E,2817
49
+ modusa/tools/audio_player.py,sha256=jPXIYTNTLprW7HUmETIxw_xoSamaF71Eankncp-pgjc,2884
50
50
  modusa/tools/audio_recorder.py,sha256=K_LGqsPdjTdf3figEZTSQLmgMzYWgz18HTO8C1j5fE4,2788
51
51
  modusa/tools/audio_saver.py,sha256=ldzfr_AydsHTnKbxmBLJblN-hLzTmOlppOm306xI4Ug,510
52
52
  modusa/tools/base.py,sha256=C0ESJ0mIfjjRlAkRbSetNtMoOfS6IrHBjexRp3l_Mh4,1293
53
53
  modusa/tools/math_ops.py,sha256=ZZ7U4DgqT7cOeE7_Lzi_Qq-48WYfwR9_osbZwTmE9eg,8690
54
- modusa/tools/plotter.py,sha256=veUqjODlTdgbZkNj3hIOcGFwBonPx6EOHk4ESK2IpCI,23660
54
+ modusa/tools/plotter.py,sha256=AZz7y0lkZ-zYxGVjeGghTFI7RIxWHiqX-26mKm781gA,23790
55
55
  modusa/tools/youtube_downloader.py,sha256=hB_X8-7nOHXOlxg6vv3wyhBLoAsWyomrULP6_uCQL7s,1698
56
56
  modusa/utils/.DS_Store,sha256=nLXMwF7QJNuglLI_Gk74F7vl5Dyus2Wd74Mgowijmdo,6148
57
57
  modusa/utils/__init__.py,sha256=1oLL20yLB1GL9IbFiZD8OReDqiCpFr-yetIR6x1cNkI,23
@@ -60,4 +60,4 @@ modusa/utils/excp.py,sha256=L9vhaGjKpv9viJYdmC9n5ndmk2GVbUBuFyZyhAQZmWY,906
60
60
  modusa/utils/logger.py,sha256=K0rsnObeNKCxlNeSnVnJeRhgfmob6riB2uyU7h3dDmA,571
61
61
  modusa/utils/np_func_cat.py,sha256=TyIFgRc6bARRMDnZxlVURO5Z0I-GWhxRONYyIv-Vwxs,1007
62
62
  modusa/utils/plot.py,sha256=s_vNdxvKfwxEngvJPgrF1PcmxZNnNaaXPViHWjyjJ-c,5335
63
- modusa-0.3.80.dist-info/RECORD,,
63
+ modusa-0.3.82.dist-info/RECORD,,