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.
我正在使用该ffmpeg库在 Android 中播放视频。视频从 SDCard 播放得很好,但我更喜欢从assets文件夹播放,因为它更安全。
ffmpeg
assets
谁能指出我正确的方向?
因为我觉得您想将视频保存在应用程序中,所以为了简单起见,请将您的视频保存在raw 文件夹中并从那里播放。
资产是 APK 的只读部分,其他 APK 无法访问这些资产。您可以使用原生 Android 类播放嵌入在 APK 中的视频(使用 mp4 格式)。
如果您坚持使用 ffmpeg 辅助播放,您可以将资产解压缩到私有文件,或者您应该为 ffmpeg 编写将使用 AAsset_read() 的 io 处理程序。