- 授权协议: MIT
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/Zulko/moviepy
- 软件文档: https://github.com/Zulko/moviepy/blob/master/README.rst
- 官方下载: https://github.com/Zulko/moviepy
软件介绍
MoviePy 是一个用于视频编辑的Python库:剪切,连接,标题插入,视频合成(也称为非线性编辑),视频处理和创建自定义效果。
MoviePy 可以读写所有最常见的音频和视频格式,包括 GIF,并可以在Windows / Mac / Linux上运行,使用Python 2.7+和3.在IPython笔记本中。
例如:我们打开一个视频文件,在t = 50s和t = 60s之间选择子剪辑,在屏幕中心添加一个标题,并将结果写入一个新文件:
from moviepy.editor import *
video = VideoFileClip("myHolidays.mp4").subclip(50,60)
# Make the text. Many more options are available.
txt_clip = ( TextClip("My Holidays 2013",fontsize=70,color='white')
.set_position('center')
.set_duration(10) )
result = CompositeVideoClip([video, txt_clip]) # Overlay text on video
result.write_videofile("myHolidays_edited.webm",fps=25) # Many options...
The Intersectional Internet
Safiya Umoja Noble、Brendesha M. Tynes / Peter Lang Publishing / 2016
From race, sex, class, and culture, the multidisciplinary field of Internet studies needs theoretical and methodological approaches that allow us to question the organization of social relations that ......一起来看看 《The Intersectional Internet》 这本书的介绍吧!
