
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (20)
-
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 (...) -
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 -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (5961)
-
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
-
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. -
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 ?