
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (29)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (5839)
-
How to split multiple audio files by 10 seconds each on OSX ?
23 juin 2020, par LA_Let's say I have 100 audio files and I would like to split each file into several files with 10 seconds length.


I think the following should work :


for i in *.ogg; do
 echo -n $i ...
 ffmpeg -i $i.ogg -ss 0 -t 10 $i_1.ogg
 ffmpeg -i $i.ogg -ss 10 -t 10 $i_2.ogg
 ffmpeg -i $i.ogg -ss 20 -t 10 $i_3.ogg
done



But I don't understand how many times ffmpeg commands should be repeated.


-
libzvbi-teletextdec : split dvb packet to slices
1er mars 2014, par Marton Balintlibzvbi-teletextdec : split dvb packet to slices
Instead of using the demux function of libzvbi to split the packet to slices
(vbi lines), lets do it ourselves.eliminates the 1 frame delay between page input and output
handles non-ascending line numbers more gracefully
enables us to return error codes on some invalid packets instead of silently
ignoring themSigned-off-by : Marton Balint <cus@passwd.hu>
-
How to split a video into individual encoded frames ?
23 mai 2015, par AsikSource video is H264 in an mp4 container, I’m trying to split it into individual encoded frames. I tried with the following command line :
ffmpeg -i "input.mp4" -f image2 "%d.h264"
But that creates jpegs with the extension "h264", rather than actual H.264 frames.