本文来源吾爱破解论坛
本帖最后由 xstormli 于 2019-4-11 07:46 编辑
有时候大家会跑个压缩视频软件啥的,
但是软件未必会给咱们一个保持比例的“宽*高”的数值,
昨夜觉得无聊,写了个小东东,供大家玩耍。
其实吧,用excel做个表格可能还更有效率呢,呵呵。
[Python] 纯文本查看 复制代码
def ratio(a, b): return a / b video_w = int(input("W_宽 >>> ")) # Python默认输入值是string, video_h = int(input("H_高 >>> ")) # 所以要将输入值加上integer属性。 R = ratio(video_w, video_h) # 要么无法运算。 print(f"Video Ratio is 视频比例是 {R}!!!") desired_w = int(input("Change Width to 将视频宽度重新设置为 >>> ")) desired_h = ratio(desired_w, R) print(f"The new height is {int(desired_h)} pixels.") print(f"视频新的高度是 {int(desired_h)} 像素.")
版权声明:
本站所有资源均为站长或网友整理自互联网或站长购买自互联网,站长无法分辨资源版权出自何处,所以不承担任何版权以及其他问题带来的法律责任,如有侵权或者其他问题请联系站长删除!站长QQ754403226 谢谢。
- 上一篇: 使用 Python 读写 Excel 文件(一)
- 下一篇: 树莓派第三课之SG90舵机-万能的舵机