diff --git a/SpotifyWebAPI/tracks/index.html b/SpotifyWebAPI/tracks/index.html
index eaecc1b2..fb9eccca 100644
--- a/SpotifyWebAPI/tracks/index.html
+++ b/SpotifyWebAPI/tracks/index.html
@@ -165,6 +165,9 @@
@@ -234,6 +237,34 @@ severalTracks.Tracks.ForEach(track => Console.WriteLine(track.Name));
Console.WriteLine(track.Name);
+
+
GetAudioAnalysis
+
+Get a detailed audio analysis for a single track identified by its unique Spotify ID.
+
+
Paramters
+
+
+
+Name |
+Description |
+Example |
+
+
+
+
+id |
+The Spotify ID for the track. |
+"6Y1CLPwYe7zvI8PJiWVz6T" |
+
+
+
+
Returns a AudioAnalysis. This object is currently lacking Spotify documentation but archived EchoNest documentation is relevant.
+
Usage
+
AudioAnalysis analysis = _spotify.GetAudioAnalysis("6Y1CLPwYe7zvI8PJiWVz6T");
+Console.WriteLine(analysis.Meta.DetailedStatus);
+
+
diff --git a/mkdocs/search_index.json b/mkdocs/search_index.json
index 80ac3816..2c318246 100644
--- a/mkdocs/search_index.json
+++ b/mkdocs/search_index.json
@@ -482,7 +482,7 @@
},
{
"location": "/SpotifyWebAPI/tracks/",
- "text": "GetSeveralTracks\n\n\n\n\nGet Spotify catalog information for multiple tracks based on their Spotify IDs.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nids\n\n\nA list of the Spotify IDs for the tracks. Maximum: 50 IDs.\n\n\nnew List\nString\n {\"6Y1CLPwYe7zvI8PJiWVz6T\"}\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nSeveralTracks\n object which has one property, \nList\nFullTrack\n Tracks\n\n\nUsage\n \n\n\nSeveralTracks severalTracks = _spotify.GetSeveralTracks(new List\nString\n {\n6Y1CLPwYe7zvI8PJiWVz6T\n});\nseveralTracks.Tracks.ForEach(track =\n Console.WriteLine(track.Name));\n\n\n\n\n\n\nGetTrack\n\n\n\n\nGet Spotify catalog information for a single track identified by its unique Spotify ID.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nid\n\n\nThe Spotify ID for the track.\n\n\n\"6Y1CLPwYe7zvI8PJiWVz6T\"\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nFullTrack\n\n\nUsage\n \n\n\nFullTrack track = _spotify.GetTrack(\n6Y1CLPwYe7zvI8PJiWVz6T\n);\nConsole.WriteLine(track.Name);",
+ "text": "GetSeveralTracks\n\n\n\n\nGet Spotify catalog information for multiple tracks based on their Spotify IDs.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nids\n\n\nA list of the Spotify IDs for the tracks. Maximum: 50 IDs.\n\n\nnew List\nString\n {\"6Y1CLPwYe7zvI8PJiWVz6T\"}\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nSeveralTracks\n object which has one property, \nList\nFullTrack\n Tracks\n\n\nUsage\n \n\n\nSeveralTracks severalTracks = _spotify.GetSeveralTracks(new List\nString\n {\n6Y1CLPwYe7zvI8PJiWVz6T\n});\nseveralTracks.Tracks.ForEach(track =\n Console.WriteLine(track.Name));\n\n\n\n\n\n\nGetTrack\n\n\n\n\nGet Spotify catalog information for a single track identified by its unique Spotify ID.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nid\n\n\nThe Spotify ID for the track.\n\n\n\"6Y1CLPwYe7zvI8PJiWVz6T\"\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nFullTrack\n\n\nUsage\n \n\n\nFullTrack track = _spotify.GetTrack(\n6Y1CLPwYe7zvI8PJiWVz6T\n);\nConsole.WriteLine(track.Name);\n\n\n\n\n\n\nGetAudioAnalysis\n\n\n\n\nGet a detailed audio analysis for a single track identified by its unique Spotify ID.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nid\n\n\nThe Spotify ID for the track.\n\n\n\"6Y1CLPwYe7zvI8PJiWVz6T\"\n\n\n\n\n\n\n\n\nReturns a AudioAnalysis. This object is currently lacking Spotify documentation but archived \nEchoNest documentation\n is relevant.\n\n\nUsage\n \n\n\nAudioAnalysis analysis = _spotify.GetAudioAnalysis(\n6Y1CLPwYe7zvI8PJiWVz6T\n);\nConsole.WriteLine(analysis.Meta.DetailedStatus);",
"title": "- Tracks"
},
{
@@ -495,6 +495,11 @@
"text": "Get Spotify catalog information for a single track identified by its unique Spotify ID. Paramters Name Description Example id The Spotify ID for the track. \"6Y1CLPwYe7zvI8PJiWVz6T\" market An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking. \"DE\" Returns a FullTrack Usage FullTrack track = _spotify.GetTrack( 6Y1CLPwYe7zvI8PJiWVz6T );\nConsole.WriteLine(track.Name);",
"title": "GetTrack"
},
+ {
+ "location": "/SpotifyWebAPI/tracks/#getaudioanalysis",
+ "text": "Get a detailed audio analysis for a single track identified by its unique Spotify ID. Paramters Name Description Example id The Spotify ID for the track. \"6Y1CLPwYe7zvI8PJiWVz6T\" Returns a AudioAnalysis. This object is currently lacking Spotify documentation but archived EchoNest documentation is relevant. Usage AudioAnalysis analysis = _spotify.GetAudioAnalysis( 6Y1CLPwYe7zvI8PJiWVz6T );\nConsole.WriteLine(analysis.Meta.DetailedStatus);",
+ "title": "GetAudioAnalysis"
+ },
{
"location": "/SpotifyWebAPI/util/",
"text": "Paging-Methods\n\n\nThe \nSpotifyWebAPI\n features two paging-helper Methods, \nGetNextPage(Paging\nT\n page)\n and \nGetPreviousPage(Paging\nT\n page)\n.\nBoth are an easy way to receive the next/previous page of a Paging-Object.\n\n\nSample:\n\n\nvar playlistTracks = _spotify.GetPlaylistTracks(\n1122095781\n, \n4EcNf2l8rXInbJOf3tQdgU\n, \n, 50);\nwhile (true)\n{\n Console.WriteLine(playlistTracks.Items.Count);\n if (!playlistTracks.HasNextPage())\n break;\n playlistTracks = _spotify.GetNextPage(playlistTracks);\n}",
diff --git a/sitemap.xml b/sitemap.xml
index b7578843..47572a46 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@