get_tidy_audio_analysis.Rd
Fetches the Spotify audio analysis for a track using list columns rather than lists of lists.
get_tidy_audio_analysis(track_uri, ...)
A string with a Spotify track URI.
Additional parameters passed to
get_track_audio_analysis
.
See the Spotify developer documentation for details about the information included in an audio analysis.
get_tidy_audio_analysis("6IQILcYkN2S2eSu5IHoPEH")
#> # A tibble: 1 × 13
#> analyzer_ve…¹ durat…² end_o…³ start…⁴ tempo…⁵ time_…⁶ key_c…⁷ mode_…⁸ bars
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <list>
#> 1 4.0.0 673. 1.14 665. 0.808 0.123 0.285 0.503 <tibble>
#> # … with 4 more variables: beats <list>, tatums <list>, sections <list>,
#> # segments <list>, and abbreviated variable names ¹analyzer_version,
#> # ²duration, ³end_of_fade_in, ⁴start_of_fade_out, ⁵tempo_confidence,
#> # ⁶time_signature_confidence, ⁷key_confidence, ⁸mode_confidence