| 123456789101112131415161718192021222324252627282930313233343536373839 |
- from panda3d.core import MovieVideo
- from panda3d.core import Filename
- from panda3d.core import PandaSystem
- import pytest
- import os
- def check_ffmpeg():
- # Make sure video plug-ins are loaded
- MovieVideo.get("test.mp4")
- system = PandaSystem.get_global_ptr()
- return 'FFmpeg' in system.systems #checks whether ffmpeg is loaded
- @pytest.mark.skipif(not check_ffmpeg(), reason="skip when ffmpeg is not available")
- class Test_Video_Movie():
- def test_cursor_check(self):
- movie_path = os.path.join(os.path.dirname(__file__), "small.mp4")
- movie_path = Filename.from_os_specific(movie_path)
- reference_file = MovieVideo.get(movie_path)
- assert reference_file.get_filename() == movie_path
- assert reference_file.open() is not None
- def test_video_length(self):
- movie_path = os.path.join(os.path.dirname(__file__), "small.mp4")
- movie_path = Filename.from_os_specific(movie_path)
- reference_file = MovieVideo.get(movie_path)
- cursor = reference_file.open()
- assert cursor.length() == 32.4800
- def test_video_size(self):
- movie_path = os.path.join(os.path.dirname(__file__), "small.mp4")
- movie_path = Filename.from_os_specific(movie_path)
- reference_file = MovieVideo.get(movie_path)
- cursor = reference_file.open()
- assert cursor.size_x() == 640 #found the height and width using mkvinfo
- assert cursor.size_y() == 360
|