juancopi81 commited on
Commit
5f22376
1 Parent(s): d5ba4e3

Bug in videocreator

Browse files
Files changed (1) hide show
  1. videocreator.py +1 -1
videocreator.py CHANGED
@@ -15,7 +15,7 @@ class VideoCreator:
15
  videos_dict = {}
16
  for index, scene in enumerate(scenes):
17
  video_scene = self._create_video_from_scene(scenes[scene])
18
- videos_dict[scene] = video_scene
19
  merged_video = self._merge_videos(videos_dict)
20
  return merged_video
21
 
 
15
  videos_dict = {}
16
  for index, scene in enumerate(scenes):
17
  video_scene = self._create_video_from_scene(scenes[scene])
18
+ videos_dict[index] = video_scene
19
  merged_video = self._merge_videos(videos_dict)
20
  return merged_video
21