allowed_formats_for_image = (
    '.jpg', '.JPG', '.jpeg', '.png', '.PNG', '.svg', '.SVG')
# allowed image formats defines in this tuple
maximum_image_size = 10240
# maximum size of image to upload it. this number is in KBs


allowed_formats_for_audio = ('.mp3', '.m4a', '.ogg', '.aac', '.wav', '.amr')
# allowed audio formats defines in this tuple
maximum_audio_size = 30720
# maximum size of audio to upload it. this number is in KBs


allowed_formats_for_video = (
    '.mp4', '.mkv', '.flv', '.avi', '.wmv', '.webm', '.ts')
# allowed video formats defines in this tuple
maximum_video_size = 61440
# maximum size of video to upload it. this number is in KBs
