
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 (42)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (10210)
-
How to find transitions in a DVD ?
6 juin 2019, par Conrad CI am watching instructional videos on a mp4 and I want to find the time at which each new instruction/chapter starts. Every time a new instruction is show, it is preceded with a transition video animation ex :" Instruction #3...."
I tried this command :ffmpeg -i HowToCook.mp4 -filter:v "select='gt(scene,0.7)',showinfo" -f null - 2> ffout2
But this doesn’t work, and it gives me the times everytime the camera man moves the camera. It doesn’t seem to work on transitions. Is there another command that could work better ?
-
Xcode cannot find symbol for particular source
19 novembre 2014, par onemachI have an iOS project utilizing ffmpeg. The library is pre-built and copied to the project tree
ffmpeg/
├── include
│ ├── libavcodec
│ ├── libavdevice
│ ├── libavfilter
│ ├── libavformat
│ ├── libavresample
│ ├── libavutil
│ ├── libpostproc
│ ├── libswresample
│ └── libswscale
└── lib
├── libavcodec.a
├── libavdevice.a
├── libavfilter.a
├── libavformat.a
├── libavresample.a
├── libavutil.a
├── libpostproc.a
├── libswresample.a
└── libswscale.a.h
files are omitted above for clarity.In the
Build Setting
, the Header Search Paths and Library Search Paths are added respectively.When compiling, Xcode complains about tens of
Undefined symbols for architecture x86_64
, all about ffmpeg. All the errors come from the same source file. And in another source file, no error is given though it also utilize ffmpeg. -
FFMEG Unable to find a suitable output format for '' (Convert Image To Video )
21 mai 2019, par John WallyUnable to find a suitable output format for ’’
convertir (){
const video =' file:///storage/emulated/0/128150.jpg'
RNFFmpeg.execute('-r:v 30 -i'+video+' -codec:v libx264 veryslow -pix_fmt yuv420p -f mp4 -an Penguins.mp4 ')
.then(result => console.log("FFmpeg process exited with rc " + result.rc));
}Affichage Console
enter image description here