
Recherche avancée
Autres articles (83)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (3934)
-
How to combine multiple video and audio with different bitrates in m3u8 ?
24 novembre 2020, par lockwiseAll files are already encoded for streaming :


- 

480.mp4
- video 1 without audio720.mp4
- video 2 without audio1080.mp4
- video 3 without audioeng.64k.m4a
- ENG audio brate 64keng.128k.m4a
- ENG audio brate 128kspa.64k.m4a
- SPA audio brate 64kspa.128k.m4a
- SPA audio brate 128kara.vtt
- Arabic subtitle


















All these files need to be split into
.ts
segments and getmaster.m3u8
at the output.

If I use code like this :


ffmpeg \
 -y \
 -i "480.mp4" \
 -i "720.mp4" \
 -i "1080.mp4" \
 -i "eng.64k.m4a" \
 -i "eng.128k.m4a" \
 -i "spa.64k.m4a" \
 -i "spa.128k.m4a" \
 -i "ara.vtt" \
 -codec: copy \
 -start_number 0 \
 -hls_list_size 0 \
 -hls_playlist_type vod \
 -f hls \
 "hls/hls.m3u8"





Everything is combined into one file for me, and there is no master playlist.


Please tell me, is it possible to do this with ffmpeg in one command ?


- 

480.mp4 + eng.64k.m4a + spa.64k.m4a + ara.vtt
=480.m3u8
720.mp4 + eng.128k.m4a + spa.128k.m4a + ara.vtt
=720.m3u8
1080.mp4 + eng.128k.m4a + spa.128k.m4a + ara.vtt
=1080.m3u8
480.m3u8 + 720.m3u8 + 1080.m3u8
=master.m3u8










If this is possible, please let me know.


Otherwise, I will write code to generate such a playlist programmatically. I just don't want to waste time if ffmpeg does it automatically.


-
Extract photographs from JPG on Ubuntu [on hold]
7 juillet 2019, par Mike MillerI have a bunch of JPGs produced by a third party by scanning many old photos. The JPG’s are all arranged differently something like this :
I am looking for a tool or script that can parse these JPGs and extract the photographs (the red shapes in the example) into separate JPG files by detecting the image edges. They are all color, the edges are well defined and the white background is clean and consistent.
I have no working code but if anyone can give me some direction I will flesh out this question as I go.
Thanks in advance
-
small optimizations to code size.
20 juin 2010, par Jack Moorem colorbox/jquery.colorbox-min.js m colorbox/jquery.colorbox.js m example1/index.html m example2/index.html m example3/index.html m example4/index.html m example5/index.html small optimizations to code size. attempt to solve a zero width/height problem that randomly occurs with photos in some (...)