Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leocode/image-service
Containerized media processor which allows to manipulate images/videos or extract metadata
https://github.com/leocode/image-service
docker-image image-processing metadata-extraction video-processing
Last synced: 10 days ago
JSON representation
Containerized media processor which allows to manipulate images/videos or extract metadata
- Host: GitHub
- URL: https://github.com/leocode/image-service
- Owner: leocode
- License: mit
- Created: 2021-06-24T07:39:02.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T19:04:58.000Z (about 1 year ago)
- Last Synced: 2023-10-05T07:11:04.941Z (about 1 year ago)
- Topics: docker-image, image-processing, metadata-extraction, video-processing
- Language: TypeScript
- Homepage:
- Size: 592 KB
- Stars: 0
- Watchers: 14
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Image Service
Acts as a wrapper for common image/video operations.
Supported video formats:
- mkv
- mp4## Known issues
1. `pipe:0: Invalid data found when processing input. Cannot determine format of input stream 0:0 after EOF`If we want to stream the file to `ffmpeg`, `ffmpeg` has to read the metadata of the file. For `.mp4` files metadata is stored at the end of file.
When the video is longer `ffmpeg` fails to read the metadata:
https://stackoverflow.com/questions/23002316/ffmpeg-pipe0-could-not-find-codec-parameters
Workaround: Use other video format like `mkv`.