All Projects → bakape → Thumbnailer

bakape / Thumbnailer

Licence: mit
Go media thumbnailer

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects
cgo
20 projects

Labels

Projects that are alternatives of or similar to Thumbnailer

Screen Recorder Ffmpeg Cpp
*Multimedia project* A screen recording application to capture your desktop and store in a video format. Click here to watch the demo
Stars: ✭ 98 (-20.33%)
Mutual labels:  ffmpeg
Streaming Room
Streaming room in Node.js, rtmp, hsl, html5 videojs player
Stars: ✭ 106 (-13.82%)
Mutual labels:  ffmpeg
Canvas2video
Convert dynamic canvas to video, support merge audio
Stars: ✭ 117 (-4.88%)
Mutual labels:  ffmpeg
Ffmpeg Quality Metrics
Calculate quality metrics with FFmpeg (SSIM, PSNR, VMAF)
Stars: ✭ 99 (-19.51%)
Mutual labels:  ffmpeg
Getsong
Download any song mp3 with no dependencies except ffmpeg
Stars: ✭ 102 (-17.07%)
Mutual labels:  ffmpeg
Filimo Downloader
Download movies from filimo.com | لینک جایگزین جهت احتیاط: https://gitlab.com/NabiKAZ/filimo-downloader
Stars: ✭ 113 (-8.13%)
Mutual labels:  ffmpeg
Vdx
🎞 An intuitive CLI for processing video, powered by FFmpeg
Stars: ✭ 1,356 (+1002.44%)
Mutual labels:  ffmpeg
Player
FFmpeg and SDL2 video player
Stars: ✭ 119 (-3.25%)
Mutual labels:  ffmpeg
Homebridge Nest Cam
View your Nest cams in HomeKit using Homebridge.
Stars: ✭ 103 (-16.26%)
Mutual labels:  ffmpeg
Ytmdl
A simple app to get songs from YouTube in mp3 format with artist name, album name etc from sources like iTunes, Spotify, LastFM, Deezer, Gaana etc.
Stars: ✭ 2,070 (+1582.93%)
Mutual labels:  ffmpeg
Node Tcp Streaming Server
Experimental TCP video streaming server written in node.js. Streaming over TCP and redistributing using WebSockets.
Stars: ✭ 100 (-18.7%)
Mutual labels:  ffmpeg
Simple Video Cutter
Windows-based tool for efficient browsing and cutting video footage
Stars: ✭ 102 (-17.07%)
Mutual labels:  ffmpeg
Sonos Web
Web interface for Sonos audio systems
Stars: ✭ 114 (-7.32%)
Mutual labels:  ffmpeg
Gifserver
A server for transcoding gif to video on the fly
Stars: ✭ 100 (-18.7%)
Mutual labels:  ffmpeg
Docker Homebridge
Homebridge Docker. HomeKit support for the impatient using Docker on x86_64, Raspberry Pi (armhf) and ARM64. Includes ffmpeg + libfdk-aac.
Stars: ✭ 1,847 (+1401.63%)
Mutual labels:  ffmpeg
Caption ocr tool
视频硬字幕提取工具
Stars: ✭ 98 (-20.33%)
Mutual labels:  ffmpeg
Scrcpy
Display and control your Android device
Stars: ✭ 58,880 (+47769.92%)
Mutual labels:  ffmpeg
Patch
Something could be public patches
Stars: ✭ 120 (-2.44%)
Mutual labels:  ffmpeg
Android
Android app for collecting OpenStreetCam imagery
Stars: ✭ 119 (-3.25%)
Mutual labels:  ffmpeg
Transcoder
Transcoding library implementation in Golang
Stars: ✭ 115 (-6.5%)
Mutual labels:  ffmpeg

GoDoc Build Status

thumbnailer

Package thumbnailer provides a more efficient media thumbnailer than available with native Go processing libraries through ffmpeg bindings.

For a comprehensive list of file formats supported by default see main.go:Process().

Dependencies

  • Go >= 1.10
  • C11 compiler
  • make
  • pkg-config
  • pthread
  • ffmpeg >= 4.1 libraries (libavcodec, libavutil, libavformat, libswscale)

NB:

  • ffmpeg should be compiled with all the dependency libraries for formats you want to process. On most Linux distributions you should be fine with the packages in the stock repositories.
  • Ubuntu patches to ffmpeg on some Ubuntu versions <19.10 break this library. In this case, please compile from unmodified ffmpeg sources using:
sudo apt build-dep ffmpeg
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
git checkout n4.1
./configure
make -j`nproc`
sudo make install
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].