What's the maximum length of a youtube video id?

VideoYoutube

Video Problem Overview


I'm developing an application that displays youtube videos. I want to store the video id's in a database, but because there are going to be a lot of videos, I want to minimize the required space, so does anyone know the maximum length of a video id on youtube?

Video Solutions


Solution 1 - Video

It's almost certainly going to stay at 11 characters. The individual characters come from a set of 64 possibilities (A-Za-z0-9_-).

64^11 is somewhat more than 2^64. (10 characters would not be enough.) So basically each youtube ID is actually a 64bit number. And I quite doubt they will ever run out of those.

If you want to save space in your database you could theoretically convert the IDs to 64bit numbers then convert them back later. But you would need to know how youtube does the conversion so it's not practical. (Since 64^11 is more than 2^64 you can't store all possibilities, so you need to know which ones are impossible and google doesn't say.)

It takes 66 bits to store all possibilities. So you could actually store a 64bit number plus a 2 bit number and save some space that way. Or more practically store 9 8bit values - you would save only 2 bytes per record though over storing it as text, so it's probably not worth it.

Solution 2 - Video

The video ID of a YouTube video is currently 11 characters in length. Here are a few links that I found:

http://drupal.org/node/175482

http://snipplr.com/view/19232/retrieve-youtube-video-id-from-a-yt-url/

However, while this is the current standard, there is no official stance on how long the video ID can be. Here is a posting to that effect from a team member at YouTube:

http://osdir.com/ml/youtube-api-gdata/2009-10/msg00237.html

Solution 3 - Video

I've found this video id jCJ7pHxKlEM1youtube that has a video id of 12 characters.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbigblindView Question on Stackoverflow
Solution 1 - VideoArielView Answer on Stackoverflow
Solution 2 - VideoIAmTimCoreyView Answer on Stackoverflow
Solution 3 - VideoSonView Answer on Stackoverflow