今日(4月8日),科技媒体Android Authority发布博文称,通过对APK文件的深入分析,发现谷歌Gemini的文件分析功能即将迎来重大升级,新增对3GP、AVI、FLV等8种视频格式的支持。
目前,Gemini现有的文件分析功能主要支持文档、代码、表格等类型的文件,然而在视频处理方面却暂未涉及。此次该媒体对Google App 16.13.38测试版的代码进行了细致剖析,结果发现Gemini即将扩展其文件分析功能的兼容性,将涵盖3GP、AVI、FLV、MOV、MP4等多种主流视频格式。
附上代码如下:
<string name="assistant_chat_3gp_attachment_file_type">3GP</string><string name="assistant_chat_avi_attachment_file_type">AVI</string><string name="assistant_chat_flv_attachment_file_type">FLV</string><string name="assistant_chat_mov_attachment_file_type">MOV</string><string name="assistant_chat_mp4_attachment_file_type">MP4</string><string name="assistant_chat_mpeg_attachment_file_type">MPEG</string><string name="assistant_chat_mpg_attachment_file_type">MPG</string><string name="assistant_chat_webm_attachment_file_type">WEBM</string>
从代码字符串中可以看出,用户后续将能够进行视频的批量上传以供分析,不过系统会依据视频的总时长设定相应的限制。其中,错误提示字段出现了“hours”(小时)和“minutes”(分钟)的单位标识,这暗示着系统可能会按照小时或分钟的维度来实施分级管控措施。业内人士推测,免费账户或许会面临更为严格的使用限制,但具体的限制标准还需等待官方进一步公布。
<string name="assistant_robin_attachment_video_total_duration_limit_exceeded_error_hours_icu">{duration plural =1 {Your combined video uploads must be one hour or less} other {Your combined video uploads must be # hours or less} }</string><string name="assistant_robin_attachment_video_total_duration_limit_exceeded_error_minutes_icu">{duration plural =1 {Your combined video uploads must be one minute or less} other {Your combined video uploads must be # minutes or less} }</string>
另外,值得注意的是,除了视频相关功能更新外,在代码库中还发现了“GitHub”附件类型的字段。这一迹象表明,Gemini或许具备直接解析代码仓库的能力,如此一来,开发者在审查项目文件时将能够更加高效便捷。不过,关于这一功能的具体技术细节,还需要在后续的实际验证中进一步确认。
<string name="assistant_chat_github_attachment_file_type">GitHub</string>