Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道输入文件是视频、音频还是图像文件。
一些音频文件包含视频流和音频流,因此,我无法检查流以了解它是视频还是音频。
有什么办法知道吗?谢谢。
我使用类 File.extension 来了解文件的扩展名,例如:
if (f.extension == "jpg" || f.extension == "jpeg") { //image }
这个对我有用。