Audio Video¶
Audio–movement comparison reports for a single performer: tools to reveal how a dancer's movement relates to the sound — phase synchrony, structural similarity, per-body-part coupling, and energy/dynamics coupling.
All functions are bound as MgVideo methods and return an MgFigure (with the numeric
results in .data); most also save a CSV next to the image.
mg_phase_synchrony ¶
mg_phase_synchrony(self, fmin=0.5, fmax=4.0, fs=50.0, n_bins=36, dpi=300, autoshow=True, title=None, target_name=None, overwrite=True)
Quantify how phase-locked the movement is to the audio rhythm.
Both the audio onset-strength envelope and the movement quantity-of-motion envelope are
band-pass filtered to the tempo band [fmin, fmax] Hz, and their instantaneous phases
(via the Hilbert transform) are compared. The phase-locking value (PLV, 0–1) summarises the
consistency of the audio↔movement phase difference; a polar histogram shows its distribution.
Returns an MgFigure (metrics in .data), or None if the video has no audio.
Source code in musicalgestures/_audio_video.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
mg_structure_comparison ¶
mg_structure_comparison(self, n=200, dpi=300, cmap='magma', autoshow=True, title=None, target_name=None, overwrite=True)
Compare the temporal structure of the audio with that of the movement.
Builds a self-similarity matrix (SSM) of the audio (from MFCC frames) and of the video
(from low-resolution frame appearance), resampled to the same n time points, and shows
them side by side with their absolute difference map — bright regions in the difference
are where the musical structure and the movement structure diverge.
Returns an MgFigure (mean structural agreement in .data), or None if the video has no audio.
Source code in musicalgestures/_audio_video.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
mg_body_audio_coupling ¶
mg_body_audio_coupling(self, dpi=300, cmap='coolwarm', dot_size=260, autoshow=True, title=None, target_name=None, overwrite=True, **pose_kwargs)
Map which body parts are most rhythmically coupled to the music.
For every pose marker the per-frame speed is correlated with the audio onset-strength
envelope (sampled at the video frame rate). The result is shown as a body map — the average
pose with each marker coloured by its correlation — plus a sorted bar chart, and a CSV of the
per-marker correlations. Uses cached pose keypoints when available, otherwise runs pose()
first (**pose_kwargs are forwarded).
Returns an MgFigure (per-marker correlations in .data), or None if the video has no audio.
Source code in musicalgestures/_audio_video.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | |
mg_dynamics_coupling ¶
mg_dynamics_coupling(self, fs=50.0, max_lag=2.0, dpi=300, autoshow=True, title=None, target_name=None, overwrite=True)
Compare audio loudness with movement quantity — does the dancer move more when the music is louder?
Aligns the audio RMS-loudness envelope with the quantity-of-motion envelope and reports their
correlation (at zero lag and at the best lag within max_lag seconds). The figure overlays
the two normalised envelopes and shows a scatter of loudness vs. motion.
Returns an MgFigure (metrics in .data), or None if the video has no audio.
Source code in musicalgestures/_audio_video.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | |