Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add additional ImageSequenceClip test #551

Merged
31 commits merged into from Apr 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b035660
add scipy for py2.7 on travis-ci
bearney74 Mar 14, 2017
1426eb2
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Mar 14, 2017
26ab7dc
add tests for ffmeg_parse_infos
bearney74 Mar 15, 2017
24f3f47
put communicate back in
bearney74 Mar 15, 2017
4f9709d
fix syntax error
bearney74 Mar 15, 2017
2e9f460
Update test_misc.py
bearney74 Mar 15, 2017
2c70ab2
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Mar 15, 2017
29089b2
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Mar 30, 2017
f54556c
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Mar 31, 2017
8eb6d9b
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 4, 2017
b2ff5fd
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 5, 2017
6e93d02
add scroll test
bearney74 Apr 7, 2017
478f44d
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 10, 2017
745030b
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 12, 2017
852466d
remove issue 527/528, this is in another PR
bearney74 Apr 12, 2017
a787a3d
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 12, 2017
bd49aa9
add tests for colorx, fadein, fadeout
bearney74 Apr 12, 2017
fce552c
fix: cv2.CV_AA does not exist error in cv2 version 3
bearney74 Apr 12, 2017
51ea1f4
add headblur example, add opencv dependency
bearney74 Apr 12, 2017
f8c488f
openvcv only supports 2.7 and 3.4+
bearney74 Apr 12, 2017
878101f
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 13, 2017
57b50dd
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 17, 2017
de83bb6
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 19, 2017
f210c1e
add Exception to ImageSequenceClip when sizes do not match
bearney74 Apr 19, 2017
90fe625
add test for ImageSequenceClip
bearney74 Apr 19, 2017
a712102
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 19, 2017
26ac231
fix test mains
bearney74 Apr 19, 2017
9838451
fix copy error
bearney74 Apr 19, 2017
47cf9ec
add ImageSequenceClip exception test
bearney74 Apr 19, 2017
6bae0bc
Merge branch 'master' of github.com:Zulko/moviepy
bearney74 Apr 19, 2017
e747292
add second image to ImageSequenceClip test
bearney74 Apr 20, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/download_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def download():
'/sounds/crunching.mp3', '/images/pigs_in_a_polka.gif',
'/videos/fire2.mp4', '/videos/big_buck_bunny_0_30.webm',
'/subtitles/subtitles1.srt', '/misc/traj.txt',
'/images/vacation_2017.jpg']
'/images/vacation_2017.jpg', '/images/python_logo_upside_down.png']

# Loop through download url strings, build out path, and download the asset.
for url in urls:
Expand Down
3 changes: 1 addition & 2 deletions tests/test_ImageSequenceClip.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ def test_1():
durations.append(i)
images.append("media/python_logo.png")
durations.append(i)
images.append("media/python_logo.png")
#images.append("media/matplotlib_demo1.png")
images.append("media/python_logo_upside_down.png")

clip = ImageSequenceClip(images, durations=durations)
assert clip.duration == sum(durations)
Expand Down