目录
- 利用python反转图片/视频
- 安装库
- 反转效果
- 实现代码
- 项目地址
利用python反转图片/视频
- 准备:一张图片/一段视频
- python库:Pillow,moviepy
安装库
pip install Pillow -i https://mirrors.aliyun.com/pypi/simple
pip install moviepy -i https://mirrors.aliyun.com/pypi/simple
默认官方镜像源,我这里尝试的时候没有任何进度。切换到国内的源,比如阿里镜像,清华镜像即可。第一次使用国内源,简直是神速!
反转效果
反转后
实现代码
图片
from PIL import Image, ImageOps
img = Image.open('img/python.jpg')
img_mirror = ImageOps.mirror(img)
img_mirror.save('img/python_mirror.jpg')
视频
import moviepy
from moviepy.editor import VideoFileClip,vfx
video = VideoFileClip('video/video.mp4')
reversed_video = video.fx(vfx.mirror_x)
reversed_video.write_videofile('video/vide_reverse.mp4')
项目地址
https://github.com/coder-chin/reverseImg
以上就是如何用python反转图片,视频的详细内容,更多关于python反转图片,视频的资料请关注脚本之家其它相关文章!
您可能感兴趣的文章:- Python+uiautomator2实现自动刷抖音视频功能
- Python爬虫之爬取哔哩哔哩热门视频排行榜
- python基于tkinter制作m3u8视频下载工具
- Python使用UDP实现720p视频传输的操作
- 写一个Python脚本自动爬取Bilibili小视频
- 用python制作词云视频详解
- Python通过m3u8文件下载合并ts视频的操作
- 用Python制作灯光秀短视频的思路详解
- Python从视频中提取音频的操作
- python爬取梨视频生活板块最热视频
- 教你如何使用Python下载B站视频的详细教程