URL Manipulation help : ) iOS stuff

I’m embedding twitch highlights into an iOS app. I’m currently retrieving URLs from a database that was intended for desktop viewing. I have retrieved URLs such as this
http://www.twitch.tv/skater82297/v/7281780
and can convert it into this
http://player.twitch.tv/?video=v7281780
which works fantastically in an iOS web view.
The problem is that there are also links such as this
http://www.twitch.tv/carnage64/c/5284822
where there is a /c/ rather than a /v/, which seems to make it not work in the same way. Can anyone tell me what the significance of /c/ is and whether or not there is a workaround for this? Thanks
luke

Videos with c in the URL are old highlights Twitch called “chapters.” They are stored in raw FLV format, so you are not able to load them in the new player (they require Flash). New VoDs use HLS playlists, which is supported natively on iOS and the new HTML5 player you are embedding.

1 Like

Awesome. Thanks a lot. Exactly what I was after.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.