this post was submitted on 10 Aug 2024
11 points (92.3% liked)

Cool GitHub Projects

1213 readers
2 users here now

Wormhole

!code_review@programming.dev

Icon base by Caro Asercion under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS
 

vt-enc is a bash script that simplifies the process of encoding videos with FFmpeg using Apple's VideoToolbox framework on macOS. It provides an easy-to-use command-line interface for encoding videos with various options, including codec selection, quality settings, and scaling.

top 6 comments
sorted by: hot top controversial new old
[–] EarMaster@lemmy.world 1 points 1 month ago (1 children)

An alternative: https://alfg.dev/ffmpeg-commander/

Provides a web interface to generate ffmpeg commands (works on every platform).

Out of interest: What does VideoToolbox do in that context? I found nothing in the readme that would require anything else than just ffmpeg. Or is it just the compiling of a custom ffmpeg build that is VT specific?

[–] gianni@lemmy.ml 1 points 4 weeks ago (1 children)

VideoToolbox is the encoder that FFmpeg links to.

[–] EarMaster@lemmy.world 1 points 4 weeks ago (1 children)

So when vt-enc only creates ffmpeg commands why is VT a dependency for the whole prpject?

[–] gianni@lemmy.ml 2 points 3 weeks ago (1 children)

vt-enc calls FFmpeg which calls the VideoToolbox encoding framework. Without VT, ffmpeg commands will fail

[–] EarMaster@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

But ffmpeg works fine on other platforms without VideoToolbox. So why do I need VT for vt-enc? Wouldn't it work just fine on other platforms as long as ffmpeg is available?

[–] gianni@lemmy.ml 0 points 3 weeks ago

You need VideoToolbox for this particular tool because it calls the VideoToolbox library from within FFmpeg in order to encode the video.

"Why do I need x264 to encode H.264 in FFmpeg?" is essentially what you're asking. FFmpeg needs VideoToolbox support to work with my tool.

If you're asking why I chose to use VideoToolbox in the first place, it was because I want this to be a macOS-specific tool with very fast encoding speeds at decent fidelity per bit. Hardware accelerated video encoding is one way to make this happen.