My OpooPress Blog

Just another OpooPress.com site.

[翻译]movie Thumbnailer(mtn) 使用方法

| Comments

详细用法

mtn [选项] 文件1_或者_文件夹1 [文件2_或者_文件夹2]...[文件3_或者_文件夹N]

选项:(还有默认值)

  • -a 屏幕宽高比(aspect_ratio) : 无视视频文件自身的宽高比

  • -b 0.80 : 如果空白较多则忽略; 0:忽略所有 1:忽略真正空白的 大于1 : 关闭

  • -B 0.0 : 忽略视频文件开始的几秒

  • -c 3 : 列数

  • -C -1 : 截取的指定的范围 小于1:关闭

  • -D 12 : 边缘检测; 0:是关闭 大于0:开启; 更多尝试 -D4 -D6 -D8

  • -E 0.0

  • -f tahomabd.ttf : 字体文件;如果不是在默认的文件夹下请使用绝对路径

  • -F

Linux(opensuse) 下的 ISO 挂载

| Comments

加载部分

首先创建个新目录

sudo mkdir /mnt/iso

然后尝试加载

sudo mount -o XX.iso /mnt/iso   

然后会提示

mount: can't find /mnt/iso in /etc/fstab

别看表面意思,原来是没有指定iso格式,那怎么查看呢

file XX.iso

然后如果是 iso966 那么执行

sudo mount -o loop -t iso9660 xx.iso /mnt

如果是 udf 的光盘映像

sudo mount -o loop -t udf xx.iso /mnt

卸载部分

sudo umount /mnt/iso

新博客

| Comments

mvn op:new-post -Dtitle="世界,你好" -Dname="hello-world"
fatal: You are on a branch yet to be born

Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:VilenEera/test.git
git push -u origin master