This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(video-encoder): encode video from list of images
- Loading branch information
felix
committed
Sep 16, 2019
1 parent
de5b336
commit ca53c65
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Tencent is pleased to support the open source community by making GNES available. | ||
# | ||
# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from gnes.component import BaseVideoPreprocessor | ||
from gnes.preprocessor.io_utils import video, gif | ||
from gnes.proto import gnes_pb2, blob2array | ||
|
||
|
||
class VideoEncoderPreprocessor(BaseVideoPreprocessor): | ||
def __init__(self, frame_rate: int = 10, pix_fmt: str = 'rgb24', format: str = "mp4", *args, **kwargs): | ||
super().__init__(*args, **kwargs) | ||
self.pix_fmt = pix_fmt | ||
self.frame_rate = frame_rate | ||
self.format = format | ||
|
||
if self.format not in ['mp4', 'gif']: | ||
raise ValueError("%s encoder has not been supported!" % (self.format)) | ||
|
||
|
||
def _encode(self, images: 'np.ndarray'): | ||
encoder = None | ||
if self.format == 'mp4': | ||
encoder = video | ||
elif self.format == 'gif': | ||
encoder = gif | ||
|
||
return encoder.encode_video(images, pix_fmt=self.pix_fmt, frame_rate=self.frame_rate) | ||
|
||
def apply(self, doc: 'gnes_pb2.Document') -> None: | ||
super().apply(doc) | ||
if len(doc.chunks) > 0: | ||
for chunk in doc.chunks: | ||
images = blob2array(chunk.blob) | ||
chunk.raw = self._encode(images) | ||
elif doc.WhichOneof('raw_data'): | ||
raw_type = type(getattr(doc, doc.WhichOneof('raw_data'))) | ||
if raw_type == gnes_pb2.NdArray: | ||
images = blob2array(doc.raw_video) | ||
doc.raw_bytes = self._encode(images) | ||
else: | ||
self.logger.error('bad document: "doc.raw_video" is empty!') | ||
else: | ||
self.logger.error( | ||
'bad document: "doc.chunks" and "doc.raw_video" is empty!') |