
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (111)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (5719)
-
Videos encoded by FFMPEG (mpeg codec) cannot be played on iOS14
28 septembre 2020, par vanste25I have a piece of code that uses ffmpeg with default mpeg codec to merge multiple videos and audio songs.


ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "concat=n=2:v=1:a=1" -f MOV -vn -y output.mp4



Everything worked on iOS13 and after the update to iOS14, videos are black and cannot be played by any player. Sound is there and it's good.
I tried to switch to h264 and it works good, but as you already know, h264 is under GPL and it is expensive and requires code to be open sourced which is not acceptable for me.


What was changed ? Anything in release notes ?
Is that a bug ? Or a feature ?


Thanks


-
How to concatenate two or more videos with different framerates in FFMpeg ?
10 septembre 2021, par Tik0I have multiple (> 100) videos with various constant frame rates (e.g. 7 FPS, 8 FPS, 16 FPS, 25 FPS) but same codecs and resolutions.
I want to concatenate (using ffmpeg concat) them into one video with a variable frame rate (VFR), so that the concatenated video plays every part with the respective framerate.
Until now, I only managed to concat all files to a single video with a constant (CFR) of eg. 25 FPS.
This as the downside, that all parts with <25 FPS play faster.
I use
-vsync 2 -r 25
to try to tell ffmpeg to use VFR with a maximum FPS of 25, butmediainfo
reports a video with CFR of 25 FPS.
If I just use-vsync 2
(without-r
), I get a VFR video output, but,mediainfo
reports that it is a video with minimum 11.9 FPS and maximum 12 FPS (so kind of mean FPS of all videos).
How do I concat various videos to a single VFR video ?


Here is the command I used :



ffmpeg -y -vsync 2 -r 25 -f concat -safe 0 -i /tmp/filelist.txt -c:v h264_omx -pix_fmt yuv420p -b:v 524231 -maxrate 524231 -bufsize 1048462 -an /tmp/${DATE}.mp4




I use
ffmpeg version 3.2.12-1~deb9u1+rpt
on(Raspbian 6.3.0-18+rpi1+deb9u1


-
Encoding all videos to MP4 and lowering resolution with Ubuntu
14 avril 2014, par Mauro ValvanoI have a web server based on Ubuntu 12.04, the user can upload a video (whatever the format/container/codec it is) then i want to convert it to an MP4 video. I tried ffmpeg without good result (and now it is also deprecated).
How i can do this ?
The important is also to reduce the resolution for HD videos for reduce video's size.
Thank you in advance.