简体   繁体   English

如何在ASP.Net C#中区分.mp4音频文件和.mp4视频文件

[英]how to differentiate .mp4 Audio file and .mp4 Video File In ASP.Net C#

当我使用文件上传功能上传.mp4扩展名的音频和视频文件时,成功控制其上传,但在创建该文件的缩略图时很难区分是音频还是视频。

Try identifying MIME of file. 尝试识别文件的MIME。 In other words content-type: 换句话说,内容类型:

string contentType = flFile.PostedFile.ContentType;
if("video/mp4" == contentType.ToLower()){
    //its video
}else if("audio/mp4" == contentType.ToLower()){
     //its audio
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM