
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (60)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7354)
-
Evolution #3928 : les emails sont publics dans le privé
7 mai 2017, par jluc -M’enfin....
Bien sur ya des tas de fonctionnements possibles et des tas de plugins possibles pour tous ses fonctionnements, mais il s’agit là de définir le fonctionnement du core, c’est à dire ce qui est proposé de base, sans plugins.
La vision de SPIP c’est de permettre la participation à la création internet, et je ne crois pas me tromper que dans l’idéal de SPIP, la participation est largement ouverte. Du moins, c’est une priorité. En conséquence, il y a peu de freins à l’accès à l’espace de rédaction. Et en conséquence, il faut protéger les mails des rédacteurs : ils ne doivent pas être visibles des autres rédacteurs.
-
How to create multi bit rate dash content using ffmpeg dash muxer
26 août 2020, par andriiffmpeg
documentation says that we can use dash muxer to create dash segments and manifest file with just a single command, like :


ffmpeg -re -i <input /> -map 0 -map 0 -c:a libfdk_aac -c:v libx264
-b:v:0 800k -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline
-profile:v:0 main -bf 1 -keyint_min 120 -g 120 -sc_threshold 0
-b_strategy 0 -ar:a:1 22050 -use_timeline 1 -use_template 1
-window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a"
-f dash /path/to/out.mpd




Saying I have some HD video file and I want this video to be available through DASH in different bit rates, so that clients can automatically select from the alternatives based on current network conditions. Can all these be done with a single
ffmpeg
command, like given above ?


I know there is a solution with using ffmpeg + mp4box, but i'm interested if it could be done with
ffmpeg
only.

-
ffmpeg : input rate and output rate not respected
2 novembre 2022, par GregoryI am using
ffmpeg
to overlay PNG and gifs while trying to preserve the same framerate and delay of the GIFs. The gif files all have the same number of frames (5) and a 13ms delay between each frame.

Attempt #1 :


ffmpeg 
 -r 5 -i ./Salmonbg.png 
 -r 5 -i ./Pinkfur.gif 
 -r 5 -i ./Cap.gif 
 -r 5 -i ./Glasses.gif 
 -r 5 -i Bone.gif 
 -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
 -r 1000/130 preview.gif



The command above will generate with the correct frame alignment from the png + gifs, however output frame delay incorrect :


Frame #1: 260 <- WRONG (Why???)
Frame #2: 130
Frame #3: 260 <- WRONG (Why???)
Frame #4: 130
Frame #5: 130



Attempt #2 :


ffmpeg 
 -i ./Salmonbg.png 
 -i ./Pinkfur.gif 
 -i ./Cap.gif 
 -i ./Glasses.gif 
 -i Bone.gif 
 -filter_complex "[0:v][1:v]overlay=format=auto[v1];[v1][2:v]overlay=format=auto[v2];[v2][3:v]overlay=format=auto[v3];[v3][4:v]overlay=format=auto[v4];[v4]split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" 
 -r 1000/130 preview.gif



The command above will output the correct frame delay, 13ms for all of them. However, the output gif will not use the first frame of each GIF. The second frame is used twice basically.


Any idea what I am missing ? I feel like i'm 90% there but i can't figure out what i'm doing incorrectly.