Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(video-decoder): fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
felix committed Oct 10, 2019
1 parent 49150fb commit 16097f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gnes/preprocessor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
'FFmpegVideoSegmentor': 'video.ffmpeg',
'ShotDetectPreprocessor': 'video.shotdetect',
'VideoEncoderPreprocessor': 'video.video_encoder',
'VideoDecoderPreprocessor': 'video.video_decoder',
'AudioVanilla': 'audio.audio_vanilla',
'BaseAudioPreprocessor': 'base',
'RawChunkPreprocessor': 'base',
'GifChunkPreprocessor': 'video.ffmpeg',
'VggishPreprocessor': 'audio.vggish_example',
'VideoDecodePreprocessor': 'video.video_decode',
'FrameSelectPreprocessor': 'video.frame_select'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from ..io_utils import video as video_util


class VideoDecodePreprocessor(BaseVideoPreprocessor):
class VideoDecoderPreprocessor(BaseVideoPreprocessor):
store_args_kwargs = True

def __init__(self,
Expand Down

0 comments on commit 16097f3

Please sign in to comment.