func isSongFormat(str dna.String) dna.Bool { if str.EndsWith("mp3") == true || str.EndsWith("m4a") == true { return true } else { return false } }
func isVideoFormat(str dna.String) dna.Bool { if str.EndsWith("mp4") == true || str.EndsWith("mpg") == true || str.EndsWith("flv") == true { return true } else { return false } }