midentify
来自「君正早期ucos系统(只有早期的才不没有打包成库),MPLAYER,文件系统,图」· 代码 · 共 19 行
TXT
19 行
#!/bin/sh## This is a wrapper around the -identify functionality.# It is supposed to escape the output properly, so it can be easily# used in shellscripts by 'eval'ing the output of this script.## Written by Tobias Diedrich <ranma+mplayer@tdiedrich.de># Licensed under GNU GPL.if [ -z "$1" ]; then echo "Usage: midentify <file> [<file> ...]" exit 1fimplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null | sed -ne '/^ID_/ { s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p }'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?