Skip to content

Instantly share code, notes, and snippets.

@peterdalle
Created April 4, 2015 14:35
Show Gist options
  • Save peterdalle/f71c9c2fa52c32605fee to your computer and use it in GitHub Desktop.
Save peterdalle/f71c9c2fa52c32605fee to your computer and use it in GitHub Desktop.
Convert ISO 8601 duration in the format PT::M::S to seconds
''' https://developers.google.com/resources/api-libraries/documentation/youtube/v3/csharp/latest/classGoogle_1_1Apis_1_1YouTube_1_1v3_1_1Data_1_1VideoContentDetails.html#a0527b84283db20cf2ef8f3de22f65606
Dim ts As TimeSpan = System.Xml.XmlConvert.ToTimeSpan(vid.ContentDetails.Duration)
Me.Length = ts.TotalSeconds()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment