
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (54)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6426)
-
ffmpeg : No such file or directory exception when trying to concatenate .m4s files
23 octobre 2022, par HannahHi I have pretty much no idea what I'm doing and 0 experience with ffmpeg, so forgive me if I'm just being dense.


I'm trying to concatenate a bunch of .m4s files using ffmpeg, however it can't seem to find the source txt file containing the locations of all the .m4s files. I have no idea how to check where it's searching or how to change it.


The code I'm trying to use is ffmpeg -f concat -i mylist.txt target.mp4


I have both the mylist.txt file and target.mp4 file at the root of the C : drive


Again, I don't really know what I'm doing, I just found that code on a quora thread about concatenating m4s files which is the original issue, so if anyone knows a different/better way of doing it that would be very helpful as I couldn't find much.


-
How do I get codec list supported by android device with react-native ?
10 novembre 2023, par Atul TiwareeI'm making a video converter app using react-native and want to compress videos problem arrives, like video downloaded from youtube in 4k are av1 encoded the device that does not have av1 hardware accelerated encoder or simply software based av1 encoder won't be able to convert, so I want to tell user this prior to conversion


For this I want list of codec supported by user's device so that I can provide a good user experience


I searched for codec lists for react native but not found anything


-
Drag and drop ffmpeg batch file [closed]
28 août 2021, par johhnnyyI have little to nothing experience with ffmpeg and found this nice drag and drop script but it only work for one file at the time. Can it be modified to work for multiple files at the same time ?


pushd %~dp0
echo Encoding 720p ... 
ffmpeg.exe -i "%~1" -vf scale=1280x720:flags=spline,format=yuv420p,"subtitles='%~n1'%~x1" -map_metadata -1 -movflags faststart -c:v libx264 -profile:v main -level:v 4.0 -preset veryfast -crf 16 -maxrate 20M -bufsize 25M -x264-params colormatrix=bt709 -c:a copy "%~n1_720p.mp4"
popd
echo Done. 
PAUSE