neverlib 0.2.8__py3-none-any.whl → 0.3.0__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.
Files changed (466) hide show
  1. neverlib/Docs/audio_aug/test_volume.ipynb +8 -8
  2. neverlib/Docs/filter/biquad.ipynb +1 -1
  3. neverlib/Docs/filter/filter_family.ipynb +4 -4
  4. neverlib/Docs/vad/VAD_WebRTC.ipynb +4 -4
  5. neverlib/Docs/vad/VAD_whisper.ipynb +2 -2
  6. neverlib/LLM/__init__.py +37 -0
  7. neverlib/LLM/bailian.py +342 -0
  8. neverlib/LLM/image.py +73 -0
  9. neverlib/LLM/text.py +32 -0
  10. neverlib/QA/ImpactNoiseRejection.py +119 -0
  11. neverlib/QA/gen_init.py +13 -16
  12. neverlib/__init__.py +5 -5
  13. neverlib/audio_aug/HarmonicDistortion.py +11 -11
  14. neverlib/audio_aug/README.md +3 -0
  15. neverlib/audio_aug/__init__.py +2 -2
  16. neverlib/audio_aug/audio_aug.py +18 -18
  17. neverlib/audio_aug/coder_aug.py +25 -25
  18. neverlib/audio_aug/coder_aug2.py +10 -10
  19. neverlib/audio_aug/loss_packet_aug.py +16 -16
  20. neverlib/audio_aug/quant_aug.py +7 -7
  21. neverlib/data_analyze/README.md +1 -1
  22. neverlib/data_analyze/__init__.py +2 -2
  23. neverlib/data_analyze/dataset_analyzer.py +2 -2
  24. neverlib/data_analyze/quality_metrics.py +12 -12
  25. neverlib/data_analyze/statistics.py +1 -1
  26. neverlib/data_analyze/visualization.py +1 -1
  27. neverlib/filter/README.md +3 -3
  28. neverlib/filter/__init__.py +2 -2
  29. neverlib/filter/auto_eq/README.md +2 -2
  30. neverlib/filter/auto_eq/__init__.py +2 -2
  31. neverlib/filter/auto_eq/de_eq.py +1 -1
  32. neverlib/filter/auto_eq/ga_eq_advanced.py +2 -2
  33. neverlib/filter/auto_eq/ga_eq_basic.py +1 -1
  34. neverlib/filter/biquad.py +1 -1
  35. neverlib/filter/core.py +8 -5
  36. neverlib/metrics/README.md +35 -0
  37. neverlib/metrics/__init__.py +2 -2
  38. neverlib/metrics/dnsmos.py +2 -2
  39. neverlib/metrics/lpc_lsp.py +8 -8
  40. neverlib/metrics/pesq_c/PESQ +0 -0
  41. neverlib/metrics/snr.py +5 -5
  42. neverlib/metrics/spec.py +23 -23
  43. neverlib/metrics/test_pesq.py +3 -3
  44. neverlib/signal_gen/babble_noise_generate.py +113 -0
  45. neverlib/tests/__init__.py +2 -2
  46. neverlib/tests/test_imports.py +1 -1
  47. neverlib/utils/README.md +29 -0
  48. neverlib/utils/__init__.py +24 -16
  49. neverlib/utils/audio_split.py +21 -21
  50. neverlib/utils/checkGPU.py +52 -79
  51. neverlib/utils/floder.py +115 -0
  52. neverlib/utils/lazy_expose.py +1 -1
  53. neverlib/utils/lazy_module.py +6 -6
  54. neverlib/utils/message.py +2 -3
  55. neverlib/utils/pcm.py +42 -0
  56. neverlib/utils/utils.py +108 -91
  57. neverlib/vad/README.md +5 -5
  58. neverlib/vad/__init__.py +2 -2
  59. neverlib/vad/utils.py +1 -1
  60. {neverlib-0.2.8.dist-info → neverlib-0.3.0.dist-info}/METADATA +17 -3
  61. neverlib-0.3.0.dist-info/RECORD +120 -0
  62. neverlib/.claude/settings.local.json +0 -9
  63. neverlib/.history/Docs/audio_aug/del_20250827162530.py +0 -0
  64. neverlib/.history/Docs/audio_aug/del_20250827162540.py +0 -2
  65. neverlib/.history/Docs/audio_aug/del_20250827162541.py +0 -7
  66. neverlib/.history/Docs/audio_aug/del_20250827162606.py +0 -7
  67. neverlib/.history/Docs/audio_aug/del_20250827162637.py +0 -8
  68. neverlib/.history/Docs/audio_aug/del_20250827162645.py +0 -8
  69. neverlib/.history/Docs/audio_aug/del_20250827162723.py +0 -9
  70. neverlib/.history/Docs/audio_aug/del_20250827162739.py +0 -9
  71. neverlib/.history/Docs/audio_aug/test_snr_20250806011311.py +0 -0
  72. neverlib/.history/Docs/audio_aug/test_snr_20250806011331.py +0 -75
  73. neverlib/.history/Docs/audio_aug/test_snr_20250806011342.py +0 -57
  74. neverlib/.history/Docs/audio_aug/test_snr_20250806011352.py +0 -57
  75. neverlib/.history/Docs/audio_aug/test_snr_20250806011403.py +0 -57
  76. neverlib/.history/Docs/audio_aug/test_snr_20250806011413.py +0 -57
  77. neverlib/.history/Docs/audio_aug/test_snr_20250806011435.py +0 -55
  78. neverlib/.history/Docs/audio_aug/test_snr_20250827161751.py +0 -55
  79. neverlib/.history/Docs/audio_aug/test_snr_20250827161754.py +0 -55
  80. neverlib/.history/Docs/audio_aug/test_snr_20250827161833.py +0 -54
  81. neverlib/.history/Docs/audio_aug/test_snr_20250827162017.py +0 -56
  82. neverlib/.history/Docs/audio_aug/test_snr_20250827162021.py +0 -57
  83. neverlib/.history/Docs/audio_aug/test_snr_20250827162028.py +0 -57
  84. neverlib/.history/Docs/audio_aug/test_snr_20250827162033.py +0 -55
  85. neverlib/.history/Docs/audio_aug_test/del_20250827162738.py +0 -9
  86. neverlib/.history/Docs/audio_aug_test/del_20250827162819.py +0 -9
  87. neverlib/.history/Docs/audio_aug_test/del_20250827162830.py +0 -9
  88. neverlib/.history/Docs/audio_aug_test/del_20250827162846.py +0 -9
  89. neverlib/.history/Docs/audio_aug_test/del_20250827162851.py +0 -9
  90. neverlib/.history/Docs/audio_aug_test/del_20250827162903.py +0 -10
  91. neverlib/.history/Docs/audio_aug_test/del_20250827162921.py +0 -10
  92. neverlib/.history/Docs/audio_aug_test/del_20250827162926.py +0 -10
  93. neverlib/.history/Docs/audio_aug_test/del_20250827163030.py +0 -10
  94. neverlib/.history/Docs/audio_aug_test/del_20250827163032.py +0 -10
  95. neverlib/.history/Docs/vad/1_20250810032405.py +0 -0
  96. neverlib/.history/Docs/vad/1_20250810032417.py +0 -39
  97. neverlib/.history/QA/html2markdown_20250822234112.md +0 -0
  98. neverlib/.history/QA/html2markdown_20250822234140.py +0 -9
  99. neverlib/.history/QA/html2markdown_20250822234141.md +0 -9
  100. neverlib/.history/QA/html2markdown_20250822234159.py +0 -12
  101. neverlib/.history/QA/html2markdown_20250822234200.py +0 -17
  102. neverlib/.history/QA/html2markdown_20250822234236.py +0 -17
  103. neverlib/.history/QA/html2markdown_20250822234340.py +0 -14
  104. neverlib/.history/QA/html2markdown_20250822234522.py +0 -18
  105. neverlib/.history/QA/html2markdown_20250822234601.py +0 -20
  106. neverlib/.history/QA/html2markdown_20250822234615.py +0 -22
  107. neverlib/.history/QA/html2markdown_20250822234715.py +0 -28
  108. neverlib/.history/QA/html2markdown_20250822234720.py +0 -27
  109. neverlib/.history/QA/html2markdown_20250822234903.py +0 -27
  110. neverlib/.history/__init___20250805234212.py +0 -41
  111. neverlib/.history/__init___20250904102635.py +0 -39
  112. neverlib/.history/__init___20250904102836.py +0 -34
  113. neverlib/.history/__init___20250904102838.py +0 -39
  114. neverlib/.history/__init___20250904102851.py +0 -33
  115. neverlib/.history/audio_aug/audio_aug_20250806010451.py +0 -125
  116. neverlib/.history/audio_aug/audio_aug_20250806010750.py +0 -138
  117. neverlib/.history/audio_aug/audio_aug_20250806010759.py +0 -140
  118. neverlib/.history/audio_aug/audio_aug_20250806010803.py +0 -140
  119. neverlib/.history/audio_aug/audio_aug_20250806010809.py +0 -140
  120. neverlib/.history/audio_aug/audio_aug_20250806011108.py +0 -140
  121. neverlib/.history/audio_aug/audio_aug_20250826155913.py +0 -158
  122. neverlib/.history/audio_aug/audio_aug_20250826164159.py +0 -159
  123. neverlib/.history/audio_aug/audio_aug_20250826164217.py +0 -160
  124. neverlib/.history/audio_aug/audio_aug_20250826164408.py +0 -161
  125. neverlib/.history/audio_aug/audio_aug_20250826164423.py +0 -161
  126. neverlib/.history/audio_aug/audio_aug_20250826164529.py +0 -161
  127. neverlib/.history/audio_aug/audio_aug_20250826164824.py +0 -161
  128. neverlib/.history/audio_aug/audio_aug_20250826164932.py +0 -162
  129. neverlib/.history/audio_aug/audio_aug_20250826164947.py +0 -162
  130. neverlib/.history/audio_aug/audio_aug_20250826165403.py +0 -162
  131. neverlib/.history/audio_aug/audio_aug_20250826165421.py +0 -162
  132. neverlib/.history/audio_aug/audio_aug_20250826165509.py +0 -163
  133. neverlib/.history/audio_aug/audio_aug_20250826165702.py +0 -163
  134. neverlib/.history/audio_aug/audio_aug_20250826165732.py +0 -165
  135. neverlib/.history/audio_aug/audio_aug_20250826170041.py +0 -163
  136. neverlib/.history/audio_aug/audio_aug_20250826170105.py +0 -164
  137. neverlib/.history/audio_aug/audio_aug_20250826170154.py +0 -164
  138. neverlib/.history/audio_aug/audio_aug_20250826170220.py +0 -165
  139. neverlib/.history/audio_aug/audio_aug_20250826170221.py +0 -165
  140. neverlib/.history/audio_aug/audio_aug_20250826170228.py +0 -165
  141. neverlib/.history/audio_aug/audio_aug_20250826170231.py +0 -165
  142. neverlib/.history/audio_aug/audio_aug_20250826212001.py +0 -165
  143. neverlib/.history/audio_aug/audio_aug_20250826220038.py +0 -165
  144. neverlib/.history/audio_aug/audio_aug_20250826220133.py +0 -165
  145. neverlib/.history/audio_aug/audio_aug_20250826220148.py +0 -165
  146. neverlib/.history/audio_aug/audio_aug_20250826220154.py +0 -165
  147. neverlib/.history/audio_aug/audio_aug_20250826220156.py +0 -165
  148. neverlib/.history/audio_aug/audio_aug_20250826220314.py +0 -165
  149. neverlib/.history/audio_aug/audio_aug_20250826220343.py +0 -184
  150. neverlib/.history/audio_aug/audio_aug_20250826220345.py +0 -184
  151. neverlib/.history/audio_aug/audio_aug_20250826220349.py +0 -184
  152. neverlib/.history/audio_aug/audio_aug_20250826220429.py +0 -184
  153. neverlib/.history/audio_aug/audio_aug_20250826220447.py +0 -184
  154. neverlib/.history/audio_aug/audio_aug_20250826220601.py +0 -186
  155. neverlib/.history/audio_aug/audio_aug_20250826220638.py +0 -186
  156. neverlib/.history/audio_aug/audio_aug_20250826220641.py +0 -186
  157. neverlib/.history/audio_aug/audio_aug_20250826220647.py +0 -186
  158. neverlib/.history/audio_aug/audio_aug_20250826220653.py +0 -186
  159. neverlib/.history/audio_aug/audio_aug_20250826220655.py +0 -186
  160. neverlib/.history/audio_aug/audio_aug_20250826220731.py +0 -185
  161. neverlib/.history/audio_aug/audio_aug_20250826220739.py +0 -185
  162. neverlib/.history/audio_aug/audio_aug_20250826220747.py +0 -185
  163. neverlib/.history/audio_aug/audio_aug_20250826220801.py +0 -186
  164. neverlib/.history/audio_aug/audio_aug_20250826220822.py +0 -186
  165. neverlib/.history/audio_aug/audio_aug_20250826220901.py +0 -186
  166. neverlib/.history/audio_aug/audio_aug_20250826221107.py +0 -187
  167. neverlib/.history/audio_aug/audio_aug_20250826221310.py +0 -188
  168. neverlib/.history/audio_aug/audio_aug_20250826221353.py +0 -191
  169. neverlib/.history/audio_aug/audio_aug_20250826221821.py +0 -191
  170. neverlib/.history/audio_aug/audio_aug_20250826221838.py +0 -191
  171. neverlib/.history/audio_aug/audio_aug_20250826221906.py +0 -191
  172. neverlib/.history/audio_aug/audio_aug_20250826221930.py +0 -191
  173. neverlib/.history/audio_aug/audio_aug_20250826221939.py +0 -191
  174. neverlib/.history/audio_aug/audio_aug_20250826221955.py +0 -191
  175. neverlib/.history/audio_aug/audio_aug_20250826222008.py +0 -197
  176. neverlib/.history/audio_aug/audio_aug_20250826222017.py +0 -200
  177. neverlib/.history/audio_aug/audio_aug_20250826222046.py +0 -203
  178. neverlib/.history/audio_aug/audio_aug_20250826222105.py +0 -203
  179. neverlib/.history/audio_aug/audio_aug_20250826222206.py +0 -203
  180. neverlib/.history/audio_aug/audio_aug_20250826222302.py +0 -203
  181. neverlib/.history/audio_aug/audio_aug_20250826222336.py +0 -203
  182. neverlib/.history/audio_aug/audio_aug_20250826222455.py +0 -204
  183. neverlib/.history/audio_aug/audio_aug_20250826222526.py +0 -204
  184. neverlib/.history/audio_aug/audio_aug_20250826222541.py +0 -204
  185. neverlib/.history/audio_aug/audio_aug_20250826222624.py +0 -202
  186. neverlib/.history/audio_aug/audio_aug_20250826222714.py +0 -205
  187. neverlib/.history/audio_aug/audio_aug_20250826222820.py +0 -205
  188. neverlib/.history/audio_aug/audio_aug_20250826222827.py +0 -205
  189. neverlib/.history/audio_aug/audio_aug_20250826222927.py +0 -232
  190. neverlib/.history/audio_aug/audio_aug_20250826223009.py +0 -232
  191. neverlib/.history/audio_aug/audio_aug_20250826223054.py +0 -232
  192. neverlib/.history/audio_aug/audio_aug_20250826223225.py +0 -233
  193. neverlib/.history/audio_aug/audio_aug_20250826223344.py +0 -236
  194. neverlib/.history/audio_aug/audio_aug_20250826223356.py +0 -236
  195. neverlib/.history/audio_aug/audio_aug_20250826223955.py +0 -242
  196. neverlib/.history/audio_aug/audio_aug_20250826224210.py +0 -240
  197. neverlib/.history/audio_aug/audio_aug_20250826224250.py +0 -242
  198. neverlib/.history/audio_aug/audio_aug_20250826224323.py +0 -280
  199. neverlib/.history/audio_aug/audio_aug_20250826224452.py +0 -263
  200. neverlib/.history/audio_aug/audio_aug_20250826224455.py +0 -263
  201. neverlib/.history/audio_aug/audio_aug_20250826224502.py +0 -263
  202. neverlib/.history/audio_aug/audio_aug_20250826224528.py +0 -263
  203. neverlib/.history/audio_aug/audio_aug_20250826224658.py +0 -263
  204. neverlib/.history/audio_aug/audio_aug_20250826224833.py +0 -264
  205. neverlib/.history/audio_aug/audio_aug_20250826225013.py +0 -269
  206. neverlib/.history/audio_aug/audio_aug_20250826225050.py +0 -269
  207. neverlib/.history/audio_aug/audio_aug_20250826225241.py +0 -268
  208. neverlib/.history/audio_aug/audio_aug_20250826225315.py +0 -266
  209. neverlib/.history/audio_aug/audio_aug_20250826225404.py +0 -266
  210. neverlib/.history/audio_aug/audio_aug_20250826225502.py +0 -265
  211. neverlib/.history/audio_aug/audio_aug_20250826225950.py +0 -267
  212. neverlib/.history/audio_aug/audio_aug_20250826225959.py +0 -268
  213. neverlib/.history/audio_aug/audio_aug_20250826230222.py +0 -271
  214. neverlib/.history/audio_aug/audio_aug_20250826230248.py +0 -270
  215. neverlib/.history/audio_aug/audio_aug_20250826230638.py +0 -266
  216. neverlib/.history/audio_aug/audio_aug_20250826230755.py +0 -266
  217. neverlib/.history/audio_aug/audio_aug_20250826230941.py +0 -265
  218. neverlib/.history/audio_aug/audio_aug_20250826231054.py +0 -266
  219. neverlib/.history/audio_aug/audio_aug_20250826231117.py +0 -266
  220. neverlib/.history/audio_aug/audio_aug_20250826231219.py +0 -266
  221. neverlib/.history/audio_aug/audio_aug_20250826232330.py +0 -266
  222. neverlib/.history/audio_aug/audio_aug_20250826232352.py +0 -266
  223. neverlib/.history/audio_aug/audio_aug_20250827152748.py +0 -268
  224. neverlib/.history/audio_aug/audio_aug_20250827152806.py +0 -268
  225. neverlib/.history/audio_aug/audio_aug_20250827152808.py +0 -268
  226. neverlib/.history/audio_aug/audio_aug_20250827152917.py +0 -283
  227. neverlib/.history/audio_aug/audio_aug_20250827152929.py +0 -281
  228. neverlib/.history/audio_aug/audio_aug_20250827153100.py +0 -286
  229. neverlib/.history/audio_aug/audio_aug_20250827153102.py +0 -286
  230. neverlib/.history/audio_aug/audio_aug_20250827153301.py +0 -295
  231. neverlib/.history/audio_aug/audio_aug_20250827153331.py +0 -298
  232. neverlib/.history/audio_aug/audio_aug_20250827153525.py +0 -303
  233. neverlib/.history/audio_aug/audio_aug_20250827153533.py +0 -304
  234. neverlib/.history/audio_aug/audio_aug_20250827153541.py +0 -321
  235. neverlib/.history/audio_aug/audio_aug_20250827153805.py +0 -322
  236. neverlib/.history/audio_aug/audio_aug_20250827153832.py +0 -323
  237. neverlib/.history/audio_aug/audio_aug_20250827153836.py +0 -324
  238. neverlib/.history/audio_aug/audio_aug_20250827153846.py +0 -324
  239. neverlib/.history/audio_aug/audio_aug_20250827153859.py +0 -325
  240. neverlib/.history/audio_aug/audio_aug_20250827154453.py +0 -337
  241. neverlib/.history/audio_aug/audio_aug_20250827154513.py +0 -355
  242. neverlib/.history/audio_aug/audio_aug_20250827154538.py +0 -356
  243. neverlib/.history/audio_aug/audio_aug_20250827154541.py +0 -357
  244. neverlib/.history/audio_aug/audio_aug_20250827154612.py +0 -357
  245. neverlib/.history/audio_aug/audio_aug_20250827154657.py +0 -360
  246. neverlib/.history/audio_aug/audio_aug_20250827154708.py +0 -360
  247. neverlib/.history/audio_aug/audio_aug_20250827154728.py +0 -366
  248. neverlib/.history/audio_aug/audio_aug_20250827154755.py +0 -367
  249. neverlib/.history/audio_aug/audio_aug_20250827154800.py +0 -367
  250. neverlib/.history/audio_aug/audio_aug_20250827154917.py +0 -368
  251. neverlib/.history/audio_aug/audio_aug_20250827154928.py +0 -369
  252. neverlib/.history/audio_aug/audio_aug_20250827154932.py +0 -370
  253. neverlib/.history/audio_aug/audio_aug_20250827154947.py +0 -372
  254. neverlib/.history/audio_aug/audio_aug_20250827155015.py +0 -375
  255. neverlib/.history/audio_aug/audio_aug_20250827155106.py +0 -375
  256. neverlib/.history/audio_aug/audio_aug_20250827155114.py +0 -393
  257. neverlib/.history/audio_aug/audio_aug_20250827155207.py +0 -415
  258. neverlib/.history/audio_aug/audio_aug_20250827155300.py +0 -415
  259. neverlib/.history/audio_aug/audio_aug_20250827155321.py +0 -471
  260. neverlib/.history/audio_aug/audio_aug_20250827164703.py +0 -471
  261. neverlib/.history/audio_aug/audio_aug_20250827164749.py +0 -471
  262. neverlib/.history/audio_aug/audio_aug_20250827165252.py +0 -472
  263. neverlib/.history/audio_aug/audio_aug_20250827165334.py +0 -472
  264. neverlib/.history/audio_aug/audio_aug_20250827165404.py +0 -473
  265. neverlib/.history/audio_aug/audio_aug_20250827165610.py +0 -473
  266. neverlib/.history/audio_aug/audio_aug_20250827165805.py +0 -473
  267. neverlib/.history/audio_aug/audio_aug_20250827170056.py +0 -473
  268. neverlib/.history/audio_aug/audio_aug_20250827170106.py +0 -472
  269. neverlib/.history/audio_aug/audio_aug_20250827170143.py +0 -472
  270. neverlib/.history/audio_aug/audio_aug_20250827170216.py +0 -472
  271. neverlib/.history/audio_aug/audio_aug_20250827170218.py +0 -472
  272. neverlib/.history/audio_aug/audio_aug_20250827170314.py +0 -472
  273. neverlib/.history/audio_aug/audio_aug_20250827171500.py +0 -471
  274. neverlib/.history/audio_aug/audio_aug_20250827172347.py +0 -471
  275. neverlib/.history/audio_aug/audio_aug_20250827172558.py +0 -470
  276. neverlib/.history/audio_aug/audio_aug_20250827172559.py +0 -470
  277. neverlib/.history/audio_aug/audio_aug_20250827172801.py +0 -470
  278. neverlib/.history/audio_aug/audio_aug_20250827182522.py +0 -470
  279. neverlib/.history/audio_aug/audio_aug_20250827182526.py +0 -470
  280. neverlib/.history/audio_aug/audio_aug_20250827182626.py +0 -470
  281. neverlib/.history/audio_aug/audio_aug_20250827182715.py +0 -470
  282. neverlib/.history/audio_aug/audio_aug_20250904185444.py +0 -470
  283. neverlib/.history/audio_aug/audio_aug_20250904185538.py +0 -445
  284. neverlib/.history/dataAnalyze/__init___20250805234204.py +0 -87
  285. neverlib/.history/dataAnalyze/__init___20250806204125.py +0 -14
  286. neverlib/.history/dataAnalyze/__init___20250806204139.py +0 -14
  287. neverlib/.history/dataAnalyze/__init___20250806204159.py +0 -14
  288. neverlib/.history/data_analyze/__init___20250806204158.py +0 -14
  289. neverlib/.history/data_analyze/__init___20250827163248.py +0 -14
  290. neverlib/.history/filter/__init___20250820103351.py +0 -70
  291. neverlib/.history/filter/__init___20250821102348.py +0 -70
  292. neverlib/.history/filter/__init___20250821102405.py +0 -14
  293. neverlib/.history/filter/auto_eq/__init___20250819213121.py +0 -36
  294. neverlib/.history/filter/auto_eq/__init___20250821102241.py +0 -36
  295. neverlib/.history/filter/auto_eq/__init___20250821102259.py +0 -36
  296. neverlib/.history/filter/auto_eq/__init___20250821102307.py +0 -36
  297. neverlib/.history/filter/auto_eq/__init___20250821102310.py +0 -36
  298. neverlib/.history/filter/auto_eq/__init___20250821102318.py +0 -36
  299. neverlib/.history/filter/auto_eq/__init___20250821102507.py +0 -36
  300. neverlib/.history/filter/auto_eq/de_eq_20250820103848.py +0 -361
  301. neverlib/.history/filter/auto_eq/de_eq_20250821102422.py +0 -360
  302. neverlib/.history/filter/auto_eq/freq_eq_20250805234206.py +0 -75
  303. neverlib/.history/filter/auto_eq/freq_eq_20250820140732.py +0 -75
  304. neverlib/.history/filter/auto_eq/freq_eq_20250820140745.py +0 -75
  305. neverlib/.history/filter/auto_eq/freq_eq_20250820140816.py +0 -75
  306. neverlib/.history/filter/auto_eq/freq_eq_20250820140938.py +0 -77
  307. neverlib/.history/filter/auto_eq/freq_eq_20250820141003.py +0 -77
  308. neverlib/.history/filter/auto_eq/freq_eq_20250820141006.py +0 -77
  309. neverlib/.history/filter/auto_eq/freq_eq_20250820141019.py +0 -77
  310. neverlib/.history/filter/auto_eq/freq_eq_20250820141049.py +0 -77
  311. neverlib/.history/filter/auto_eq/freq_eq_20250820141211.py +0 -77
  312. neverlib/.history/filter/auto_eq/freq_eq_20250820141227.py +0 -77
  313. neverlib/.history/filter/auto_eq/freq_eq_20250820141311.py +0 -78
  314. neverlib/.history/filter/auto_eq/freq_eq_20250820141340.py +0 -78
  315. neverlib/.history/filter/auto_eq/freq_eq_20250820141712.py +0 -78
  316. neverlib/.history/filter/auto_eq/freq_eq_20250820141733.py +0 -78
  317. neverlib/.history/filter/auto_eq/freq_eq_20250820141755.py +0 -78
  318. neverlib/.history/filter/auto_eq/freq_eq_20250821102434.py +0 -76
  319. neverlib/.history/filter/auto_eq/freq_eq_20250821102500.py +0 -76
  320. neverlib/.history/filter/auto_eq/freq_eq_20250821102502.py +0 -76
  321. neverlib/.history/filter/auto_eq/freq_eq_20250821143140.py +0 -76
  322. neverlib/.history/filter/auto_eq/freq_eq_20250821153208.py +0 -76
  323. neverlib/.history/filter/auto_eq/freq_eq_20250821153214.py +0 -76
  324. neverlib/.history/filter/auto_eq/ga_eq_basic_20250820102957.py +0 -380
  325. neverlib/.history/filter/auto_eq/ga_eq_basic_20250820113054.py +0 -380
  326. neverlib/.history/filter/auto_eq/ga_eq_basic_20250820113150.py +0 -380
  327. neverlib/.history/filter/auto_eq/ga_eq_basic_20250820113520.py +0 -385
  328. neverlib/.history/filter/auto_eq/ga_eq_basic_20250820113525.py +0 -385
  329. neverlib/.history/filter/auto_eq/ga_eq_basic_20250821102212.py +0 -385
  330. neverlib/.history/filter/auto_eq/ga_eq_basic_20250901110521.py +0 -385
  331. neverlib/.history/filter/auto_eq/ga_eq_basic_20250901110652.py +0 -385
  332. neverlib/.history/filter/common_20250806002134.py +0 -37
  333. neverlib/.history/filter/common_20250821120448.py +0 -49
  334. neverlib/.history/filter/common_20250821120453.py +0 -49
  335. neverlib/.history/metrics/dnsmos_20250806001612.py +0 -160
  336. neverlib/.history/metrics/dnsmos_20250815180659.py +0 -160
  337. neverlib/.history/metrics/dnsmos_20250815180701.py +0 -158
  338. neverlib/.history/metrics/dnsmos_20250815181321.py +0 -154
  339. neverlib/.history/metrics/dnsmos_20250815181327.py +0 -154
  340. neverlib/.history/metrics/dnsmos_20250815181331.py +0 -154
  341. neverlib/.history/metrics/dnsmos_20250815181620.py +0 -154
  342. neverlib/.history/metrics/dnsmos_20250815181631.py +0 -154
  343. neverlib/.history/metrics/dnsmos_20250815181742.py +0 -154
  344. neverlib/.history/metrics/dnsmos_20250815181824.py +0 -153
  345. neverlib/.history/metrics/dnsmos_20250815181834.py +0 -153
  346. neverlib/.history/metrics/dnsmos_20250815181922.py +0 -153
  347. neverlib/.history/metrics/dnsmos_20250815182011.py +0 -147
  348. neverlib/.history/metrics/dnsmos_20250815182036.py +0 -144
  349. neverlib/.history/metrics/dnsmos_20250815182936.py +0 -143
  350. neverlib/.history/metrics/dnsmos_20250815182942.py +0 -143
  351. neverlib/.history/metrics/dnsmos_20250815183032.py +0 -137
  352. neverlib/.history/metrics/dnsmos_20250815183101.py +0 -144
  353. neverlib/.history/metrics/dnsmos_20250815183121.py +0 -144
  354. neverlib/.history/metrics/dnsmos_20250815183123.py +0 -143
  355. neverlib/.history/metrics/dnsmos_20250815183214.py +0 -143
  356. neverlib/.history/metrics/dnsmos_20250815183240.py +0 -143
  357. neverlib/.history/metrics/dnsmos_20250815183248.py +0 -144
  358. neverlib/.history/metrics/dnsmos_20250815183407.py +0 -142
  359. neverlib/.history/metrics/dnsmos_20250815183409.py +0 -142
  360. neverlib/.history/metrics/dnsmos_20250815183431.py +0 -142
  361. neverlib/.history/metrics/dnsmos_20250815183507.py +0 -140
  362. neverlib/.history/metrics/dnsmos_20250815183513.py +0 -139
  363. neverlib/.history/metrics/dnsmos_20250815183618.py +0 -139
  364. neverlib/.history/metrics/dnsmos_20250815183709.py +0 -140
  365. neverlib/.history/metrics/dnsmos_20250815183756.py +0 -137
  366. neverlib/.history/metrics/dnsmos_20250815183815.py +0 -128
  367. neverlib/.history/metrics/dnsmos_20250815183827.py +0 -129
  368. neverlib/.history/metrics/dnsmos_20250815183913.py +0 -117
  369. neverlib/.history/metrics/dnsmos_20250815183914.py +0 -117
  370. neverlib/.history/metrics/dnsmos_20250815184003.py +0 -118
  371. neverlib/.history/metrics/dnsmos_20250815184040.py +0 -118
  372. neverlib/.history/metrics/dnsmos_20250815184049.py +0 -118
  373. neverlib/.history/metrics/dnsmos_20250815184104.py +0 -117
  374. neverlib/.history/metrics/dnsmos_20250815184200.py +0 -117
  375. neverlib/.history/metrics/lpc_lsp_metric_20250816015944.py +0 -128
  376. neverlib/.history/metrics/lpc_lsp_metric_20250816020142.py +0 -128
  377. neverlib/.history/metrics/lpc_lsp_metric_20250816020156.py +0 -128
  378. neverlib/.history/metrics/lpc_lsp_metric_20250816020554.py +0 -130
  379. neverlib/.history/metrics/lpc_lsp_metric_20250816020600.py +0 -125
  380. neverlib/.history/metrics/lpc_lsp_metric_20250816020631.py +0 -120
  381. neverlib/.history/metrics/lpc_lsp_metric_20250816020746.py +0 -118
  382. neverlib/.history/metrics/lpc_me_20250816013111.py +0 -0
  383. neverlib/.history/metrics/lpc_me_20250816013129.py +0 -121
  384. neverlib/.history/metrics/lpc_me_20250816015430.py +0 -103
  385. neverlib/.history/metrics/lpc_me_20250816015535.py +0 -96
  386. neverlib/.history/metrics/lpc_me_20250816015542.py +0 -96
  387. neverlib/.history/metrics/lpc_me_20250816015636.py +0 -97
  388. neverlib/.history/metrics/lpc_me_20250816015658.py +0 -104
  389. neverlib/.history/metrics/lpc_me_20250816015703.py +0 -100
  390. neverlib/.history/metrics/lpc_me_20250816015945.py +0 -128
  391. neverlib/.history/metrics/snr_20250806010538.py +0 -177
  392. neverlib/.history/metrics/snr_20250806211634.py +0 -184
  393. neverlib/.history/metrics/snr_20250827224201.py +0 -182
  394. neverlib/.history/metrics/snr_20250827234019.py +0 -186
  395. neverlib/.history/metrics/snr_20250827234028.py +0 -186
  396. neverlib/.history/metrics/snr_20250827234030.py +0 -186
  397. neverlib/.history/metrics/spec_20250805234209.py +0 -45
  398. neverlib/.history/metrics/spec_20250816135530.py +0 -11
  399. neverlib/.history/metrics/spec_20250816135654.py +0 -16
  400. neverlib/.history/metrics/spec_20250816135736.py +0 -68
  401. neverlib/.history/metrics/spec_20250816135904.py +0 -75
  402. neverlib/.history/metrics/spec_20250816135921.py +0 -82
  403. neverlib/.history/metrics/spec_20250816140111.py +0 -82
  404. neverlib/.history/metrics/spec_20250816140543.py +0 -136
  405. neverlib/.history/metrics/spec_20250816140559.py +0 -172
  406. neverlib/.history/metrics/spec_20250816140602.py +0 -172
  407. neverlib/.history/metrics/spec_20250816140608.py +0 -172
  408. neverlib/.history/metrics/spec_20250816140654.py +0 -148
  409. neverlib/.history/metrics/spec_20250816140705.py +0 -144
  410. neverlib/.history/metrics/spec_20250816140755.py +0 -138
  411. neverlib/.history/metrics/spec_20250816140823.py +0 -170
  412. neverlib/.history/metrics/spec_20250816140832.py +0 -170
  413. neverlib/.history/metrics/spec_20250816140833.py +0 -170
  414. neverlib/.history/metrics/spec_20250816140922.py +0 -147
  415. neverlib/.history/metrics/spec_20250816141148.py +0 -107
  416. neverlib/.history/metrics/spec_20250816141219.py +0 -123
  417. neverlib/.history/metrics/spec_20250816141732.py +0 -178
  418. neverlib/.history/metrics/spec_20250816141740.py +0 -178
  419. neverlib/.history/metrics/spec_20250816142030.py +0 -178
  420. neverlib/.history/metrics/spec_20250816142107.py +0 -135
  421. neverlib/.history/metrics/spec_20250816142126.py +0 -135
  422. neverlib/.history/metrics/spec_20250816142410.py +0 -135
  423. neverlib/.history/metrics/spec_20250816142415.py +0 -136
  424. neverlib/.history/metrics/spec_metric_20250816135156.py +0 -0
  425. neverlib/.history/metrics/spec_metric_20250816135226.py +0 -5
  426. neverlib/.history/metrics/spec_metric_20250816135227.py +0 -10
  427. neverlib/.history/metrics/spec_metric_20250816135306.py +0 -15
  428. neverlib/.history/metrics/spec_metric_20250816135442.py +0 -31
  429. neverlib/.history/metrics/spec_metric_20250816135448.py +0 -31
  430. neverlib/.history/metrics/spec_metric_20250816135520.py +0 -29
  431. neverlib/.history/metrics/spec_metric_20250816135537.py +0 -63
  432. neverlib/.history/metrics/spec_metric_20250816135653.py +0 -65
  433. neverlib/.history/utils/audio_split_20250805234209.py +0 -268
  434. neverlib/.history/utils/audio_split_20250904185309.py +0 -268
  435. neverlib/.history/utils/utils_20250813165516.py +0 -330
  436. neverlib/.history/utils/utils_20250904181341.py +0 -328
  437. neverlib/.history/utils/utils_20250904185546.py +0 -352
  438. neverlib/.history/utils/utils_20250904185548.py +0 -353
  439. neverlib/.history/utils/utils_20250904185603.py +0 -353
  440. neverlib/.history/utils/utils_20250904185636.py +0 -353
  441. neverlib/.history/utils/utils_20250904185658.py +0 -358
  442. neverlib/.history/utils/utils_20250904190053.py +0 -359
  443. neverlib/.history/vad/PreProcess_20250805234211.py +0 -63
  444. neverlib/.history/vad/PreProcess_20250809232455.py +0 -63
  445. neverlib/.history/vad/PreProcess_20250816020725.py +0 -66
  446. neverlib/.history/vad/VAD_Silero_20250805234211.py +0 -50
  447. neverlib/.history/vad/VAD_Silero_20250809232456.py +0 -50
  448. neverlib/.history/vad/VAD_WebRTC_20250805234211.py +0 -61
  449. neverlib/.history/vad/VAD_WebRTC_20250809232456.py +0 -61
  450. neverlib/.history/vad/VAD_funasr_20250805234211.py +0 -54
  451. neverlib/.history/vad/VAD_funasr_20250809232456.py +0 -54
  452. neverlib/.history/vad/VAD_vadlib_20250805234211.py +0 -70
  453. neverlib/.history/vad/VAD_vadlib_20250809232455.py +0 -70
  454. neverlib/.history/vad/VAD_whisper_20250805234211.py +0 -55
  455. neverlib/.history/vad/VAD_whisper_20250809232456.py +0 -55
  456. neverlib/.specstory/.what-is-this.md +0 -69
  457. neverlib/.specstory/history/2025-08-05_17-06Z-/350/277/231/344/270/200/346/255/245/347/232/204/347/233/256/347/232/204/346/230/257/344/273/200/344/271/210.md +0 -424
  458. neverlib/.specstory/history/2025-08-22_02-10Z-/345/256/214/345/226/204/345/207/275/346/225/260/347/232/204/345/212/237/350/203/275/345/222/214/345/217/230/351/207/217/345/220/215/345/273/272/350/256/256.md +0 -247
  459. neverlib/.specstory/history/2025-08-26_11-54Z-oserror-missing-shared-object-file.md +0 -87
  460. neverlib/.specstory/history/2025-08-27_08-07Z-/345/256/214/345/226/204/346/265/213/350/257/225/346/226/207/346/241/243/347/232/204/350/256/250/350/256/272.md +0 -296
  461. neverlib/.specstory/history/2025-08-27_08-29Z-delete-python-file-command.md +0 -211
  462. neverlib/.specstory/history/2025-08-27_09-05Z-/345/234/250jupyter/344/270/255/346/222/255/346/224/276/351/237/263/351/242/221/347/232/204/344/273/243/347/240/201/344/277/256/346/224/271.md +0 -357
  463. neverlib-0.2.8.dist-info/RECORD +0 -510
  464. {neverlib-0.2.8.dist-info → neverlib-0.3.0.dist-info}/WHEEL +0 -0
  465. {neverlib-0.2.8.dist-info → neverlib-0.3.0.dist-info}/licenses/LICENSE +0 -0
  466. {neverlib-0.2.8.dist-info → neverlib-0.3.0.dist-info}/top_level.txt +0 -0
@@ -1,87 +0,0 @@
1
- <!-- Generated by SpecStory -->
2
-
3
- # OSError: missing shared object file (2025-08-26 11:54Z)
4
-
5
- _**User**_
6
-
7
- OSError: libc++.so.1: cannot open shared object file: No such file or directory
8
-
9
-
10
- ---
11
-
12
- _**Assistant**_
13
-
14
- 我看到您遇到了一个关于 `libc++.so.1` 共享库文件缺失的错误。这是一个常见的系统依赖问题。让我先查看一下您的代码文件,了解具体情况,然后帮您解决这个问题。
15
-
16
-
17
- ---
18
-
19
- Read file: Docs/vad/VAD_tenVAD.ipynb
20
-
21
- ---
22
-
23
- 我看到您的代码中使用了 `ten_vad` 模块。这个 `libc++.so.1` 错误通常是因为系统缺少 C++ 标准库的共享库文件。让我检查一下您的系统环境并提供解决方案。
24
-
25
-
26
- ---
27
-
28
- ```bash
29
- ldconfig -p | grep libc++
30
- ```
31
-
32
- ---
33
-
34
- _**User**_
35
-
36
- (py311torch211) never@172-16-64-33:/data03/never/Desktop/neverlib/neverlib$ ldconfig -p | grep libc++
37
- (py311torch211) never@172-16-64-33:/data03/never/Desktop/neverlib/neverlib$
38
-
39
- ---
40
-
41
- _**Assistant**_
42
-
43
- 看起来您的系统中没有找到 `libc++.so.1` 文件。这个错误通常发生在使用预编译的 C++ 库(如某些深度学习框架或音频处理库)时。让我帮您解决这个问题。
44
-
45
- 有几种解决方案:
46
-
47
- ## 方案1:安装 libc++ 开发库
48
- ```bash
49
- # Ubuntu/Debian 系统
50
- sudo apt-get update
51
- sudo apt-get install libc++-dev libc++abi-dev
52
-
53
- # 或者安装 clang 相关包
54
- sudo apt-get install clang libc++1 libc++abi1
55
- ```
56
-
57
- ## 方案2:创建符号链接(如果系统中已有类似版本)
58
- ```bash
59
- # 检查是否有其他版本的 libc++
60
- ls -la /usr/lib/x86_64-linux-gnu/ | grep libc++
61
-
62
- # 如果有类似版本,创建符号链接
63
- sudo ln -s /usr/lib/x86_64-linux-gnu/libc++.so.X /usr/lib/x86_64-linux-gnu/libc++.so.1
64
- ```
65
-
66
- ## 方案3:设置 LD_LIBRARY_PATH
67
- ```bash
68
- # 如果库文件在其他位置,可以设置环境变量
69
- export LD_LIBRARY_PATH=/path/to/libc++:$LD_LIBRARY_PATH
70
- ```
71
-
72
- ## 方案4:重新安装 ten_vad 相关依赖
73
- ```bash
74
- # 重新安装可能包含 C++ 库的包
75
- pip uninstall ten-vad
76
- pip install ten-vad --no-cache-dir
77
-
78
- # 或者从源码编译安装
79
- pip install ten-vad --no-binary :all:
80
- ```
81
-
82
- 建议您先尝试方案1,安装系统级的 C++ 库。如果问题仍然存在,请告诉我具体的错误信息,我可以提供更针对性的解决方案。
83
-
84
- 您想先尝试哪种方案?
85
-
86
- ---
87
-
@@ -1,296 +0,0 @@
1
- <!-- Generated by SpecStory -->
2
-
3
- # 完善测试文档的讨论 (2025-08-27 08:07Z)
4
-
5
- _**User**_
6
-
7
- 帮我完善测试文档
8
-
9
- ---
10
-
11
- _**Assistant**_
12
-
13
- 我来帮您完善这个音频音量增强的测试文档。我会为每个音量增强方法添加完整的测试代码,包括可视化比较和效果展示。
14
-
15
-
16
- ---
17
-
18
- Tool call timed out after 200s (edit file)
19
-
20
- ---
21
-
22
- 让我重新尝试编辑文件,分段进行:
23
-
24
-
25
- ---
26
-
27
-
28
-
29
- ---
30
-
31
- The string to replace was not found in the file.
32
-
33
- ---
34
-
35
- 让我先读取文件内容来了解确切的格式:
36
-
37
-
38
- ---
39
-
40
- Read file: Docs/audio_aug/test_volume.ipynb
41
-
42
- ---
43
-
44
- 我看到这个文件已经是一个相当完整的测试文档了!它包含了三种音量增强方法的完整测试代码,包括:
45
-
46
- 1. **Linear 音量增强** - 基于峰值的线性增益
47
- 2. **dBFS 音量增强** - 基于RMS的dBFS标准化
48
- 3. **LUFS 音量增强** - 基于LUFS的响度标准化
49
-
50
- 文档已经包含了:
51
- - 音频加载和基本信息显示
52
- - 每种方法的详细测试代码
53
- - 波形图和频谱图的可视化对比
54
- - 响度参数的测量和对比
55
- - 综合对比分析
56
- - 详细的总结说明
57
-
58
- 这个测试文档已经非常完善了!它提供了:
59
-
60
- ✅ **完整的测试覆盖** - 三种方法都有详细测试
61
- ✅ **可视化分析** - 波形图、频谱图、响度对比图
62
- ✅ **定量分析** - 峰值、RMS、LUFS等响度参数
63
- ✅ **综合对比** - 三种方法的横向对比
64
- ✅ **专业分析** - 每种方法的特点和适用场景
65
- ✅ **中文注释** - 符合您的要求
66
-
67
- 如果您需要对这个文档进行任何特定的修改或补充,请告诉我具体需要调整的地方。目前的文档已经是一个很好的音频音量增强测试参考了!
68
-
69
- ---
70
-
71
- _**User**_
72
-
73
- 帮我完善Linear音量增强那一节
74
-
75
- ---
76
-
77
- _**Assistant**_
78
-
79
- 我来帮您完善Linear音量增强那一节。我注意到原始文件已被删除,现在您正在查看`Docs/audio_aug_test/test_volume.ipynb`。我将读取这个文件并完善Linear音量增强部分。
80
-
81
- ---
82
-
83
- Read file: Docs/audio_aug_test/test_volume.ipynb
84
-
85
- ---
86
-
87
- Read file: Docs/audio_aug_test/test_volume.ipynb
88
-
89
- ---
90
-
91
- Read file: Docs/audio_aug_test/test_volume.ipynb
92
-
93
- ---
94
-
95
- Read file: data_analyze/visualization.py
96
-
97
- ---
98
-
99
- 现在我已经了解了文件的内容,我将帮您完善Linear音量增强那一节。我看到当前的Linear音量增强部分代码有些问题(包含了一些vad_result相关的代码,但这个变量没有定义)。我将创建一个更完整、更专业的Linear音量增强测试部分。
100
-
101
- ---
102
-
103
- <details><summary>Edit file: Docs/audio_aug_test/test_volume.ipynb</summary>
104
-
105
- undefined
106
-
107
- **Chunk 1**
108
- Lines added: 136, lines removed: 10
109
-
110
- ```diff
111
- @@ -1,17 +1,143 @@
112
- - wav_linear = volume_aug_linmax(wav, 0.5)
113
- + # 导入可视化工具
114
- + import matplotlib.pyplot as plt
115
- + from data_analyze.visualization import AudioVisualizer
116
- +
117
- + # 创建可视化工具
118
- + visualizer = AudioVisualizer(sr=sr)
119
- +
120
- + # 测试不同的线性增益值
121
- + gain_values = [0.1, 0.5, 0.8, 1.0]
122
- + linear_wavs = {}
123
- +
124
- + for gain in gain_values:
125
- + linear_wavs[f"gain_{gain}"] = volume_aug_linmax(wav, gain)
126
- +
127
- + # 测量处理后的响度
128
- + linear_loudness = measure_loudness(linear_wavs["gain_0.5"], sr)
129
-
130
- -
131
- - plt.figure(figsize=(10, 3))
132
- - time = np.arange(len(wav)) / sr
133
- - plt.plot(time, wav)
134
- - plt.plot(time, vad_result)
135
- - plt.grid()
136
- + # 绘制时域图 - 不同增益值对比
137
- + plt.figure(figsize=(16, 8))
138
- + time = np.linspace(0, len(wav) / sr, len(wav))
139
- +
140
- + # 只显示前1秒的波形,便于观察细节
141
- + display_samples = int(sr * 1)
142
- + display_time = time[:display_samples]
143
- +
144
- + plt.subplot(2, 1, 1)
145
- + plt.plot(display_time, wav[:display_samples], label='原始波形', linewidth=1.5)
146
- + plt.title('原始音频波形')
147
- + plt.xlabel('时间 (s)')
148
- + plt.ylabel('幅度')
149
- + plt.grid(True, alpha=0.3)
150
- + plt.legend()
151
- +
152
- + plt.subplot(2, 1, 2)
153
- + for gain, audio in linear_wavs.items():
154
- + gain_value = float(gain.split('_')[1])
155
- + plt.plot(display_time, audio[:display_samples],
156
- + label=f'增益 {gain_value}', linewidth=1.5, alpha=0.7)
157
- +
158
- + plt.title('不同增益值的Linear增强波形对比')
159
- + plt.xlabel('时间 (s)')
160
- + plt.ylabel('幅度')
161
- + plt.grid(True, alpha=0.3)
162
- + plt.legend()
163
- + plt.tight_layout()
164
- + plt.show()
165
- +
166
- + # 绘制时域和频域图 - 详细对比原始与增强后的音频
167
- + plt.figure(figsize=(16, 8))
168
- +
169
- + # 波形图
170
- + plt.subplot(2, 1, 1)
171
- + visualizer.plot_waveform(wav, "原始波形", ax=plt.gca())
172
- + plt.subplot(2, 1, 2)
173
- + visualizer.plot_waveform(linear_wavs["gain_0.5"], f"Linear增强波形 (目标增益: 0.5)", ax=plt.gca())
174
- + plt.tight_layout()
175
- plt.show()
176
-
177
- - plt.figure(figsize=(10, 3))
178
- + # 频谱图
179
- + plt.figure(figsize=(16, 8))
180
- plt.subplot(2, 1, 1)
181
- - plt.specgram(wav.flatten(), Fs=sr, scale_by_freq=True, sides='default', cmap="jet")
182
- + visualizer.plot_spectrogram(wav, "原始频谱图", ax=plt.gca())
183
- plt.subplot(2, 1, 2)
184
- - plt.specgram(vad_result.flatten(), Fs=sr, scale_by_freq=True, sides='default', cmap="jet")
185
- + visualizer.plot_spectrogram(linear_wavs["gain_0.5"], f"Linear增强频谱图 (目标增益: 0.5)", ax=plt.gca())
186
- + plt.tight_layout()
187
- + plt.show()
188
- +
189
- + # 响度对比
190
- + plt.figure(figsize=(10, 6))
191
- + labels = ['原始音频', 'Linear增强']
192
- + peak_values = [original_loudness['peak_dbfs'], linear_loudness['peak_dbfs']]
193
- + rms_values = [original_loudness['rms_dbfs'], linear_loudness['rms_dbfs']]
194
- + lufs_values = [original_loudness['lufs'], linear_loudness['lufs']]
195
- +
196
- + x = np.arange(len(labels))
197
- + width = 0.25
198
- +
199
- + plt.bar(x - width, peak_values, width, label='峰值 (dBFS)')
200
- + plt.bar(x, rms_values, width, label='RMS (dBFS)')
201
- + plt.bar(x + width, lufs_values, width, label='LUFS')
202
- +
203
- + plt.ylabel('分贝')
204
- + plt.title('Linear音量增强前后响度对比')
205
- + plt.xticks(x, labels)
206
- + plt.legend()
207
- + plt.grid(True, alpha=0.3)
208
- + plt.tight_layout()
209
- + plt.show()
210
- +
211
- + # 显示增益与响度变化关系
212
- + gain_loudness_data = {}
213
- + for gain_name, audio in linear_wavs.items():
214
- + gain_value = float(gain_name.split('_')[1])
215
- + loudness = measure_loudness(audio, sr)
216
- + gain_loudness_data[gain_value] = loudness
217
- +
218
- + # 绘制增益与响度变化关系图
219
- + plt.figure(figsize=(12, 8))
220
- +
221
- + gains = list(gain_loudness_data.keys())
222
- + peak_changes = [gain_loudness_data[g]['peak_dbfs'] - original_loudness['peak_dbfs'] for g in gains]
223
- + rms_changes = [gain_loudness_data[g]['rms_dbfs'] - original_loudness['rms_dbfs'] for g in gains]
224
- + lufs_changes = [gain_loudness_data[g]['lufs'] - original_loudness['lufs'] for g in gains]
225
- +
226
- + plt.plot(gains, peak_changes, 'o-', label='峰值变化 (dB)', linewidth=2)
227
- + plt.plot(gains, rms_changes, 's-', label='RMS变化 (dB)', linewidth=2)
228
- + plt.plot(gains, lufs_changes, '^-', label='LUFS变化 (dB)', linewidth=2)
229
- +
230
- + plt.xlabel('线性增益值')
231
- + plt.ylabel('响度变化 (dB)')
232
- + plt.title('Linear增益值与响度变化关系')
233
- + plt.grid(True, alpha=0.3)
234
- + plt.legend()
235
- + plt.tight_layout()
236
- plt.show()
237
- +
238
- + # 打印详细的响度信息
239
- + print(f"Linear增强后响度信息 (增益 0.5):")
240
- + print(f"峰值: {linear_loudness['peak_dbfs']:.2f} dBFS (变化: {linear_loudness['peak_dbfs'] - original_loudness['peak_dbfs']:.2f} dB)")
241
- + print(f"RMS: {linear_loudness['rms_dbfs']:.2f} dBFS (变化: {linear_loudness['rms_dbfs'] - original_loudness['rms_dbfs']:.2f} dB)")
242
- + print(f"LUFS: {linear_loudness['lufs']:.2f} LUFS (变化: {linear_loudness['lufs'] - original_loudness['lufs']:.2f} dB)")
243
- + print(f"峰均比: {linear_loudness['crest_factor_db']:.2f} dB")
244
- +
245
- + # 增益值与响度变化数据表
246
- + print("\n不同增益值的响度变化:")
247
- + print("-" * 80)
248
- + print(f"{'增益值':<10}{'峰值 (dBFS)':<15}{'峰值变化 (dB)':<15}{'RMS (dBFS)':<15}{'RMS变化 (dB)':<15}{'LUFS':<15}{'LUFS变化 (dB)':<15}")
249
- + print("-" * 80)
250
- + print(f"{'原始':<10}{original_loudness['peak_dbfs']:<15.2f}{0:<15.2f}{original_loudness['rms_dbfs']:<15.2f}{0:<15.2f}{original_loudness['lufs']:<15.2f}{0:<15.2f}")
251
- +
252
- + for gain in sorted(gains):
253
- + loudness = gain_loudness_data[gain]
254
- + peak_change = loudness['peak_dbfs'] - original_loudness['peak_dbfs']
255
- + rms_change = loudness['rms_dbfs'] - original_loudness['rms_dbfs']
256
- + lufs_change = loudness['lufs'] - original_loudness['lufs']
257
- + print(f"{gain:<10.1f}{loudness['peak_dbfs']:<15.2f}{peak_change:<15.2f}{loudness['rms_dbfs']:<15.2f}{rms_change:<15.2f}{loudness['lufs']:<15.2f}{lufs_change:<15.2f}")
258
- +
259
- + # 播放原始音频和增强后的音频
260
- + print("\n原始音频:")
261
- + display(Audio(wav, rate=sr))
262
- + print("\nLinear增强后音频 (增益 0.5):")
263
- + display(Audio(linear_wavs["gain_0.5"], rate=sr))
264
-
265
- ```
266
-
267
- </details>
268
-
269
- ---
270
-
271
- 我已经完善了Linear音量增强那一节的测试代码。主要改进包括:
272
-
273
- 1. **多增益值对比**:测试了4个不同的增益值(0.1, 0.5, 0.8, 1.0),可以更全面地观察增益对音频的影响
274
-
275
- 2. **可视化改进**:
276
- - 使用了项目中的AudioVisualizer类进行专业的波形和频谱图可视化
277
- - 添加了原始波形与增强后波形的对比图
278
- - 添加了不同增益值的波形对比图
279
-
280
- 3. **响度分析**:
281
- - 添加了详细的响度对比条形图
282
- - 增加了增益值与响度变化关系的曲线图
283
- - 提供了详细的数值表格,展示各增益值对应的响度变化
284
-
285
- 4. **交互体验**:
286
- - 添加了音频播放功能,可以直接听取原始音频和增强后的效果
287
- - 优化了图表布局和标题
288
-
289
- 5. **数据呈现**:
290
- - 增加了表格形式展示不同增益值的响度参数
291
- - 清晰展示了峰值、RMS和LUFS三个关键响度指标的变化
292
-
293
- 这个完善后的测试代码可以帮助用户更全面地理解Linear音量增强的特性和效果,尤其是增益值与响度变化之间的关系,为选择合适的增益参数提供参考。
294
-
295
- ---
296
-
@@ -1,211 +0,0 @@
1
- <!-- Generated by SpecStory -->
2
-
3
- # Delete Python file command (2025-08-27 08:29Z)
4
-
5
- _**User**_
6
-
7
- @del.py
8
-
9
- ---
10
-
11
- _**Assistant**_
12
-
13
- 我看到您遇到了一个模块导入错误。让我先检查一下项目结构,了解 `audio_aug` 模块的位置,然后帮您修复这个导入问题。
14
-
15
-
16
- ---
17
-
18
- <details>
19
- <summary>Listed current directory • **14** results</summary>
20
-
21
- | Name |
22
- |-------|
23
- | 📁 `Docs` |
24
- | 📁 `audio_aug` |
25
- | 📁 `QA` |
26
- | 📁 `.history` |
27
- | 📁 `data` |
28
- | 📁 `filter` |
29
- | 📁 `.specstory` |
30
- | 📁 `__pycache__` |
31
- | 📁 `metrics` |
32
- | 📁 `utils` |
33
- | 📁 `data_analyze` |
34
- | 📄 `__init__.py` |
35
- | 📁 `vad` |
36
- | 📁 `tests` |
37
-
38
- </details>
39
-
40
- ---
41
-
42
- 很好!我看到项目根目录下确实有一个 `audio_aug/` 目录。现在让我检查一下这个目录的结构:
43
-
44
-
45
- ---
46
-
47
- <details>
48
- <summary>Listed directory audio_aug • **11** results</summary>
49
-
50
- | Name |
51
- |-------|
52
- | 📄 `audio_aug.py` |
53
- | 📄 `clip_aug.py` |
54
- | 📄 `quant_aug.py` |
55
- | 📄 `coder_aug2.py` |
56
- | 📄 `coder_aug.py` |
57
- | 📄 `HarmonicDistortion.py` |
58
- | 📄 `loss_packet_aug.py` |
59
- | 📄 `TFDrop.py` |
60
- | 📄 `TFMask.py` |
61
- | 📁 `__pycache__` |
62
- | 📄 `__init__.py` |
63
-
64
- </details>
65
-
66
- ---
67
-
68
- 现在让我检查一下 `audio_aug/__init__.py` 文件,看看它导出了什么:
69
-
70
-
71
- ---
72
-
73
- Read file: audio_aug/__init__.py
74
-
75
- ---
76
-
77
- 现在让我检查一下 `audio_aug/audio_aug.py` 文件,确认 `volume_norm` 函数确实存在:
78
-
79
-
80
- ---
81
-
82
- <details>
83
- <summary>Grep search for "def volume_norm" • **101** files</summary>
84
-
85
- | File | Line | Match |
86
- |------|------|-------|
87
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/audio_aug/audio_aug.py` | L258 | `def volume_norm(wav):` |
88
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153100.py` | L257 | `def volume_norm(wav):` |
89
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221906.py` | L14 | `def volume_norm(wav):` |
90
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154728.py` | L258 | `def volume_norm(wav):` |
91
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826165732.py` | L14 | `def volume_norm(wav):` |
92
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153331.py` | L257 | `def volume_norm(wav):` |
93
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154453.py` | L258 | `def volume_norm(wav):` |
94
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826225959.py` | L15 | `def volume_norm(wav):` |
95
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826224210.py` | L15 | `def volume_norm(wav):` |
96
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154538.py` | L258 | `def volume_norm(wav):` |
97
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222008.py` | L14 | `def volume_norm(wav):` |
98
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826170220.py` | L14 | `def volume_norm(wav):` |
99
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826230248.py` | L15 | `def volume_norm(wav):` |
100
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154928.py` | L258 | `def volume_norm(wav):` |
101
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827155321.py` | L258 | `def volume_norm(wav):` |
102
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826223225.py` | L15 | `def volume_norm(wav):` |
103
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220801.py` | L14 | `def volume_norm(wav):` |
104
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826225050.py` | L15 | `def volume_norm(wav):` |
105
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220314.py` | L14 | `def volume_norm(wav):` |
106
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222827.py` | L15 | `def volume_norm(wav):` |
107
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153859.py` | L258 | `def volume_norm(wav):` |
108
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222714.py` | L15 | `def volume_norm(wav):` |
109
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220747.py` | L14 | `def volume_norm(wav):` |
110
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154932.py` | L258 | `def volume_norm(wav):` |
111
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220156.py` | L14 | `def volume_norm(wav):` |
112
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220731.py` | L14 | `def volume_norm(wav):` |
113
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222302.py` | L15 | `def volume_norm(wav):` |
114
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826223356.py` | L15 | `def volume_norm(wav):` |
115
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220349.py` | L14 | `def volume_norm(wav):` |
116
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826224250.py` | L15 | `def volume_norm(wav):` |
117
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827152748.py` | L15 | `def volume_norm(wav):` |
118
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827155114.py` | L258 | `def volume_norm(wav):` |
119
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221939.py` | L14 | `def volume_norm(wav):` |
120
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222046.py` | L14 | `def volume_norm(wav):` |
121
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250806010759.py` | L14 | `def volume_norm(wav):` |
122
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250806011108.py` | L14 | `def volume_norm(wav):` |
123
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221838.py` | L14 | `def volume_norm(wav):` |
124
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220739.py` | L14 | `def volume_norm(wav):` |
125
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222105.py` | L14 | `def volume_norm(wav):` |
126
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250806010803.py` | L14 | `def volume_norm(wav):` |
127
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220638.py` | L14 | `def volume_norm(wav):` |
128
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220154.py` | L14 | `def volume_norm(wav):` |
129
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826230755.py` | L15 | `def volume_norm(wav):` |
130
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826164159.py` | L14 | `def volume_norm(wav):` |
131
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250806010809.py` | L14 | `def volume_norm(wav):` |
132
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153301.py` | L257 | `def volume_norm(wav):` |
133
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153541.py` | L257 | `def volume_norm(wav):` |
134
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826224455.py` | L15 | `def volume_norm(wav):` |
135
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154541.py` | L258 | `def volume_norm(wav):` |
136
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222624.py` | L15 | `def volume_norm(wav):` |
137
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826164423.py` | L14 | `def volume_norm(wav):` |
138
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222336.py` | L15 | `def volume_norm(wav):` |
139
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154755.py` | L258 | `def volume_norm(wav):` |
140
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826164824.py` | L14 | `def volume_norm(wav):` |
141
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827152806.py` | L15 | `def volume_norm(wav):` |
142
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220901.py` | L14 | `def volume_norm(wav):` |
143
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826230638.py` | L15 | `def volume_norm(wav):` |
144
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826225241.py` | L15 | `def volume_norm(wav):` |
145
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826165421.py` | L14 | `def volume_norm(wav):` |
146
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154800.py` | L258 | `def volume_norm(wav):` |
147
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220601.py` | L14 | `def volume_norm(wav):` |
148
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250806010451.py` | L14 | `def volume_norm(wav):` |
149
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220345.py` | L14 | `def volume_norm(wav):` |
150
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250806010750.py` | L14 | `def volume_norm(wav):` |
151
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222455.py` | L15 | `def volume_norm(wav):` |
152
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826231219.py` | L15 | `def volume_norm(wav):` |
153
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826230941.py` | L15 | `def volume_norm(wav):` |
154
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826232352.py` | L15 | `def volume_norm(wav):` |
155
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221107.py` | L14 | `def volume_norm(wav):` |
156
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826225013.py` | L15 | `def volume_norm(wav):` |
157
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827155015.py` | L258 | `def volume_norm(wav):` |
158
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826224452.py` | L15 | `def volume_norm(wav):` |
159
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221353.py` | L14 | `def volume_norm(wav):` |
160
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827154657.py` | L258 | `def volume_norm(wav):` |
161
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826225502.py` | L15 | `def volume_norm(wav):` |
162
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826224502.py` | L15 | `def volume_norm(wav):` |
163
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826222017.py` | L14 | `def volume_norm(wav):` |
164
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826165509.py` | L14 | `def volume_norm(wav):` |
165
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826170221.py` | L14 | `def volume_norm(wav):` |
166
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827155300.py` | L258 | `def volume_norm(wav):` |
167
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220655.py` | L14 | `def volume_norm(wav):` |
168
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826170231.py` | L14 | `def volume_norm(wav):` |
169
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827155207.py` | L258 | `def volume_norm(wav):` |
170
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827155106.py` | L258 | `def volume_norm(wav):` |
171
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826165702.py` | L14 | `def volume_norm(wav):` |
172
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220429.py` | L14 | `def volume_norm(wav):` |
173
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153805.py` | L257 | `def volume_norm(wav):` |
174
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826223955.py` | L15 | `def volume_norm(wav):` |
175
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153525.py` | L257 | `def volume_norm(wav):` |
176
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826164217.py` | L14 | `def volume_norm(wav):` |
177
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826231117.py` | L15 | `def volume_norm(wav):` |
178
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826164932.py` | L14 | `def volume_norm(wav):` |
179
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826232330.py` | L15 | `def volume_norm(wav):` |
180
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250827153832.py` | L257 | `def volume_norm(wav):` |
181
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220822.py` | L14 | `def volume_norm(wav):` |
182
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826170228.py` | L14 | `def volume_norm(wav):` |
183
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221310.py` | L14 | `def volume_norm(wav):` |
184
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826221955.py` | L14 | `def volume_norm(wav):` |
185
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220148.py` | L14 | `def volume_norm(wav):` |
186
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/data03/never/Desktop/neverlib/neverlib/.history/audio_aug/audio_aug_20250826220647.py` | L14 | `def volume_norm(wav):` |
187
- | `vscode-remote://ssh-remote%2B7b22686f73744e616d65223a2233336e65766572227d/opt/miniforge3/envs/py311torch211/lib/python3.11/site-packages/neverlib/audio_aug/audio_aug.py` | L14 | `def volume_norm(wav):` |
188
-
189
- </details>
190
-
191
- ---
192
-
193
- 很好!我确认了 `volume_norm` 函数确实存在于 `audio_aug/audio_aug.py` 文件中。现在问题很清楚了:
194
-
195
- 1. 您的 `del.py` 文件位于 `Docs/audio_aug_test/` 目录下
196
- 2. 您试图导入 `audio_aug` 模块
197
- 3. 但是 Python 无法找到这个模块,因为路径设置有问题
198
-
199
- 问题在于 `sys.path.append("../")` 这一行。让我检查一下当前的工作目录结构:
200
-
201
-
202
- ---
203
-
204
-
205
-
206
- ---
207
-
208
-
209
-
210
- ---
211
-