#FFmpeg

Joachim Weber [friendica] 🦖 🦔 🐲trex@anonsys.net
2025-08-13

Die kommende Version 8.0 des Multimedia-Frameworks FFmpeg schreibt auf Wunsch Audio-Material mit. Das gelingt über eine lokal auf dem System laufende Whisper-KI, FFmpeg zapft folglich keinen Cloud-Dienst an.

Voraussetzung ist die „whisper.#FFmpeg #Whisper
FFmpeg transkribiert Audio mit lokaler Whisper-KI - LinuxCommunity

2025-08-14

lo-fi is my name and this my game.

Tontá hecha rápida con #RG35xx , #ffmpeg, y un par de plugins lv2.

2025-08-14

🎵 #FFmpeg 8.0 integrates #Whisper for local audio transcription 🎵 #ai

🔧 Direct integration of #OpenAI's #Whisper speech recognition system within #FFmpeg framework
🌐 Completely local processing - no cloud transfer required, ensuring privacy and data security

🗣️ Automatic language detection supporting transcription in over 90 languages worldwide
⚙️ GPU acceleration enabled by default with whisper.cpp library requirement

🧵 👇

2025-08-14

So #ffmpeg 8 is around the corner, so major distros will have it in about what, 10 years or so ? #ubuntu #mint

2025-08-14

some unsolicited knowledge sharing:
Here's a command you can use to convert H-264/AC3 MKV files to a browser-supported H-264/FLAC MP4 without any video transcoding (so no loss in quality). Audio streams
are transcoded, but it's not really noticeable unless you have extremely high-fidelity inputs.

ffmpeg -i input.mkv -map 0 -c copy -c:a flac output.mp4

Explanation:
-
ffmpeg - executes the program, exactly what it sounds like.
-
-i input.mkv - select the input file to load. I don't think the extension matters, but it won't hurt to make sure it's mkv.
-
-map 0 - make sure that all streams are included. Without this, alternate audio/video streams may be silently dropped.
-
-c copy - tell ffmpeg to copy streams without modification. This avoids any transcoding and ensures that the H-264 streams are preserved.
-
-c:a flac- override the previous command for audio streams specifically. We want them in FLAC format which is supported by both MP4 container format and all modern web browsers.
-
output.mp4 - specify the output file. The file extension matters!

#KnowledgeSharing #FFMPEG

GripNewsGripNews
2025-08-14

🌘 智慧眼鏡的即時隱私保護
➤ 讓您的智慧眼鏡應用程式在保護隱私的前提下,自由發揮創意。
github.com/PrivacyIsAllYouNeed
此專案提供了一套針對智慧眼鏡的即時隱私保護解決方案。透過在攝影機鏡頭與應用程式之間建立一個過濾器,該系統能自動處理即時影像,模糊或遮蔽未經同意拍攝的個人臉部,並可偵測語音同意,確保應用程式符合隱私規範。此方案強調離線運作,不依賴雲端,並支援多種輸出格式及友善的開發者介面。
+ 這項技術太棒了!終於可以安心使用智慧眼鏡來記錄生活或進行 AI 應用了。
+ 離線運作的設計非常吸引人,不用擔心資料外洩。期待更多應用場景的開發。

Ένα ισχυρό νέο φίλτρο ήχου #"whisper" φέρνει την μεταγραφή με #τεχνητή_νοημοσύνη στο #FFmpeg

Το #FFmpeg, ένα απαραίτητο #εργαλείο #πολυμέσων #ανοιχτού_κώδικα, περιλαμβάνει πλέον ένα νέο φίλτρο ήχου #af_whisper που επιτρέπει την #αυτόματη_αναγνώριση_ομιλίας #(ASR) απευθείας μέσα στο οικοσύστημα του #FFmpeg. Χρησιμοποιεί τη βιβλιοθήκη #whisper.cpp, η οποία προσθέτει ένα #ισχυρό_μοντέλο #τεχνητής_νοημοσύνης στις ροές εργασίας #επεξεργασίας_πολυμέσων.

techne.gr/ams/ena-ischyro-neo-

BLUF

Last night a few friends and I watched some movies together, it was a spontaneous engineering moment with ffmpeg, html and vlc. We used ffmpeg to see each other and vlc to watch the movie. It was pretty cool. Totally techno ghetto but neat.

Do I know any people in my network that would be interested in putting together a #movienight #streaming system but for reals? In short, the idea is to have a movie in the middle of the screen and the viewers of the movie on the sides. So everyone can watch the same stream.

This is assuming of course that everyone owns a copy of said movie and just wants to watch it with friends. "Movies with Friends" yeah, that's it.

#streaming #ffmpeg #movies

Kaitokaito02
2025-08-12

I don't watch porn

ThePrimeagen posts:

I don't watch porn... so can someone please explain what ffmpeg is, afraid to google it

FFmpeg posts:
It's what Netflix uses to encode and decode video
2025-08-12

record webcam "Spedal MF934H" in an orange pi using hardware encoding

gist.github.com/ZiTAL/2c72a36e

#ffmpeg #rockchip

Ditch OBS Use My Screen Recording Script

tube.adriansnetwork.org/w/rcon

Abe EstradaAbeEstrada
2025-08-11
2025-08-11

Al final lo he hecho con #kdenlive porque #ffmpeg me estaba metiendo unos cortes negros entre clips que no me apetece depurar hoy, la verdad. Me van a quitar el carné de Linux xDDD

2025-08-11

Hostias. Todo el finde liándola con #ffmpeg para concatenar varios archivos .VOB (vídeos de un DVD) en un único archivo con problemas porque justo en el corte se me corrompe la salida.

Al final la solución resulta que es... ATENCIÓN:

$ cat *.VOB > OUT.VOB

Funciona perfectamente y tarda menos de 10 segundos para un vídeo de dos horas. Me estoy despollando xDDDDD

sb arms & legssb@metroholografix.ca
2025-08-11

We need a new open source license that states explicitly that the code may not be used in any situation where it will cause harm to people.

Where would Google be if they had #curl, #ffmpeg and a thousand other libs taken away from them?

Andrea D'Ambrosioandrebuilds
2025-08-10

Three lines of code just saved TuBoost.io users 2 hours of manual work.

Added automatic speaker detection to video cropping. Now when someone speaks, the camera follows them. No more static wide shots of empty chairs.

The magic happens in the FFmpeg filter chain. Computer vision meets video editing at 60fps.

Sometimes the smallest features have the biggest impact.

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst