使用 Javascript 从视频文件中提取地理标签
Extract geotags from video file with Javascript
我想从视频中获取地理标签并将其标记在地图上。我找到了 exif-js 但这只适用于图像。
我用 ffmpeg
、a server solution which works 试过,但我处理的视频大小约为 1GB 到 3GB。
是否可以用 Javascript 代替?
提前致谢。
浏览器没有从视频中提取地理标签的内置方法。对于 Web API,您只能使用 HTMLMediaElement (use event loadedmetadata) or VideoPlaybackQuality.
尝试使用 ffmpeg.js。
This library provides FFmpeg builds ported to JavaScript using
Emscripten project. Builds are optimized for in-browser use: minimal
size for faster loading, asm.js, performance tunings, etc. Though they
work in Node as well.
我想从视频中获取地理标签并将其标记在地图上。我找到了 exif-js 但这只适用于图像。
我用 ffmpeg
、a server solution which works 试过,但我处理的视频大小约为 1GB 到 3GB。
是否可以用 Javascript 代替?
提前致谢。
浏览器没有从视频中提取地理标签的内置方法。对于 Web API,您只能使用 HTMLMediaElement (use event loadedmetadata) or VideoPlaybackQuality.
尝试使用 ffmpeg.js。
This library provides FFmpeg builds ported to JavaScript using Emscripten project. Builds are optimized for in-browser use: minimal size for faster loading, asm.js, performance tunings, etc. Though they work in Node as well.