
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 (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (14676)
-
encoding RGB32 frames to h264 h264_qsv ffmpeg libraries [closed]
4 juillet 2023, par T P SudhakarAm trying to port my software based encoding of RGb32 images to a h264 video using ffmpeg libraries using C++. Does h264_qsv supports encoding RGB32 images to h264 ?


Thanks in advance


-
Redirecting output to different path
9 septembre 2020, par user14245857this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.


Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.


Code is as follows :


$inputfiles = ls *.mxf

 foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

 ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}



Looking forward to your answers


Thank you very much in advance


-
Windows FFMPEG : Open Icecast Stream and output Metadata / "icy_metadata_packet" continuously
6 octobre 2017, par HenryI managed to open a mp3 stream and save it to 6-second-files continuously.
What I can’t find is a way to save the song titles to a file or output them.
I came across "icy_metadata_packet" which should do exactly what I need but it is not well-documented as it seems. Can I use that option in the command line as an option or do I need a script of some sort to put this value somewhere ?
If so, what’s the easiest way/language for a script like this ? (maybe a .bat file ?)Thanks in advance for your help !