Difference between revisions of "Asset"

From YTMND
Jump to: navigation, search
(Needs a lot of work still... Created a page on Asset. Unsure how the asset id is differernt than the md5)
 
m (Reverted edits by NEDMInspector96511999 (Contribs | Talk | Block); changed back to last version by [[User:Westing1992|Westing1992)
 
(19 intermediate revisions by 10 users not shown)
Line 1: Line 1:
An asset ID refers to a unique ID of every YTMND image and sound file.
+
An asset ID refers to a unique ID of every YTMND image and sound file. They're organized to save server space and bandwidth for YTMNDs which share the same asset.
Like many multimedia hosting sites, YTMND uses the md5 cryptographic hash function to compute a unique filename for every sound and image uploaded to the servers.
+
  
It is unclear if the asset ID refers reefers to the md5 code of the file or an unique/alternative idea.
+
* Like many multimedia hosting sites, YTMND uses the [[w:md5|md5]] cryptographic hash function to compute a unique filename for every sound and image uploaded to the servers.
 +
* It is unclear if the asset ID refers to the md5 code of the file or another number.
 +
* MD5 hash codes are 128 bit values represented as 32 character strings.
  
 +
When a user creates a site and uploads a file, the server computes the md5 hash, and checks if any previously uploaded file's name exists with an identical hash code.
  
MD5 hash codes are 128 bit values represented as 32 character strings.
+
* This prevents duplicate files without having to resort to bit by bit comparisons of every file. What a computational bargain!  However there is a very rare possibility of two different files having a hash collision.  In this case, the YTMND author should slightly modify the offending file and re-upload.  It is unknown if this has ever happened on ytmnd.
When a user creates a site and uploads a file, the server computes the md5 hash checks if any previously uploaded file file's name exists with an identical hash code.
+
* In any case, once a file is uploaded it is stored with a filename and path based on the md5.  
  
This prevents duplicate files without having to resort to bit by bit comparisons of every file.  What a computational bargain!  However there is a very rare possibility of two different files having a hash collision.  In this case, the YTMND author should slightly modify the offending file and re-upload.  It is unknown if this has ever happened on ytmnd.
+
Each YTMND's assets can be viewed from link in that YTMND profile.  
  
In any case, once a file is uploaded it is stored as with a filename and path based on the md5.
+
==See also==
 +
*[[Saving Sound files from YTMNDs]]
  
{{stub}}
+
[[Category:YTMND creation]]

Latest revision as of 09:47, April 19, 2012

An asset ID refers to a unique ID of every YTMND image and sound file. They're organized to save server space and bandwidth for YTMNDs which share the same asset.

  • Like many multimedia hosting sites, YTMND uses the md5 cryptographic hash function to compute a unique filename for every sound and image uploaded to the servers.
  • It is unclear if the asset ID refers to the md5 code of the file or another number.
  • MD5 hash codes are 128 bit values represented as 32 character strings.

When a user creates a site and uploads a file, the server computes the md5 hash, and checks if any previously uploaded file's name exists with an identical hash code.

  • This prevents duplicate files without having to resort to bit by bit comparisons of every file. What a computational bargain! However there is a very rare possibility of two different files having a hash collision. In this case, the YTMND author should slightly modify the offending file and re-upload. It is unknown if this has ever happened on ytmnd.
  • In any case, once a file is uploaded it is stored with a filename and path based on the md5.

Each YTMND's assets can be viewed from link in that YTMND profile.

See also