本文整理匯總了Python中moviepy.editor.VideoFileClip.fps方法的典型用法代碼示例。如果您正苦於以下問題:Python VideoFileClip.fps方法的具體用法?Python VideoFileClip.fps怎麽用?Python VideoFileClip.fps使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類moviepy.editor.VideoFileClip
的用法示例。
在下文中一共展示了VideoFileClip.fps方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: VideoFileClip
# 需要導入模塊: from moviepy.editor import VideoFileClip [as 別名]
# 或者: from moviepy.editor.VideoFileClip import fps [as 別名]
args = parser.parse_args()
if args.round == 0:
args.round = 12
clip = VideoFileClip(args.input)
if args.length is not None:
clip = clip.set_duration(args.length)
print "Read clip, duration = %.1fs, FPS = %.1f" % (clip.duration, clip.fps)
#------------------------------------------------------------------------
# Non-integer frame rates (e.g. 29.97) cause problems when retrieving
# offsets. Round to an integer.
#------------------------------------------------------------------------
clip.fps = round(clip.fps)
#------------------------------------------------------------------------
# Transform brightnesses into a list of (offset_seconds, brightness)
#------------------------------------------------------------------------
print "Analysing brightness ...."
brightnesses = [ (index / clip.fps, round(np.mean(frame) / 255.0, args.round)) for index, frame in enumerate(clip.iter_frames()) ]
#------------------------------------------------------------------------
# Sort ascending
#------------------------------------------------------------------------
brightnesses = sorted(brightnesses, key = lambda x: ((-1 if args.reverse else 1) * x[1], x[0]))
#------------------------------------------------------------------------
# Transform into pairs of (origin_offset, destination_offset)
#------------------------------------------------------------------------
示例2: VideoFileClip
# 需要導入模塊: from moviepy.editor import VideoFileClip [as 別名]
# 或者: from moviepy.editor.VideoFileClip import fps [as 別名]
from moviepy.editor import VideoFileClip, concatenate_videoclips
clip1 = VideoFileClip("partly_cloudy.mp4").subclip(747, 759)
clip1.fps = 15
clip1.write_videofile("partly_cloudy_short.mp4")