Hello i just like to know if you have the list of the upload file type for the most common upload file for video and audio file... well actually i have file type on video and audio
video:
it support the ff:
video/x-ms-wmv - wmv
video/3gpp - 3gp
video/x-msvideo -avi
video/mpeg - mpg
on audio:
and it support the ff.:
audio/mpeg - mp3
audio/x-ms-wma - wma
audio/wav - wav
That functions is detecting the file type in audio and video.. but I know that there are other extension type that can use in uploading the file.. i hope you can add the list of filetype to be support for this function thanks a lot
video:
| Code: |
| function is_video_file($ufilename){
$rt = array("video/x-ms-wmv","video/3gpp","video/x-msvideo","video/mpeg"); if(in_array($_FILES[$ufilename]['type'],$rt)) return true; else return false; } |
it support the ff:
video/x-ms-wmv - wmv
video/3gpp - 3gp
video/x-msvideo -avi
video/mpeg - mpg
on audio:
| Code: |
|
function is_audio_file($ufilename){ $rt = array("audio/mpeg","audio/x-ms-wma","audio/wav","video/mpeg"); if(in_array($_FILES[$ufilename]['type'],$rt)) return true; else return false; } |
and it support the ff.:
audio/mpeg - mp3
audio/x-ms-wma - wma
audio/wav - wav
That functions is detecting the file type in audio and video.. but I know that there are other extension type that can use in uploading the file.. i hope you can add the list of filetype to be support for this function thanks a lot
