提起编程,对于很多人难免存在误区,认为编程枯燥无趣,但这是外界对于编程的刻板印象所导致。虽然编程是由多行代码组成,但这些平淡无奇的代码可以用来做很多有意思的事。今天将为小伙伴们分享两个Python鲜为人知的实用操作,如提取音频和生成短链接。
提取音频
近年来视频剪辑技术大火,很多人经常通过音频或剪辑来恶搞视频,其中音频提取技术繁琐且复杂,需要用上多个软件才能进行音频剪辑,但这过程只需要一个Python的moviepy库就能解决。
安装:
pip install moviepy
代码:
#import library
import moviepy.editor as mp
#specify the mp4 file here(mention the file path if it is in different directory)
clip = mp.VideoFileClip('video.mp4')
#specify the name for mp3 extracted
clip.audio.write_audiofile('Audio.mp3')
#you will notice mp3 file will be created at the specified location.
生成短链接
工程师在进行项目开发中经常要引入多个超链接文本或网址,然而部分的URL地址过长且不美观,这也诞生了各种各样的短链接生成工具,但它们大多操作复杂且麻烦,我们只需要使用Python的pyshorteners库即可搞定。
安装:
pip install pyshorteners
代码:
#import library
import pyshorteners
#creating object
s=pyshorteners.Shortener()
#type the url
url = "type the youtube link here"
#print the shortend url
暂无评论