
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 (75)
-
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 (9042)
-
Node.js merge audio and video streams and pipe it to the client
29 mars 2023, par nickI am working with
ytdl-core
library and it cannot download high quality videos with audio included because youtube has them in sperate files. Therefore, I need to download audio and video seperately then merge them usingffmpeg
. An example of this can be seen here. However, using this way I am required to download the files prior to merging them and I was wondering is there is a way to merge audio and video streams and send the result to the client directly ?

If you believe there is a more efficent way to achieve this, I would like to hear your approach.


Thanks in advance.


-
how to install ffmpeg on macbookpro osx 10.8.3 [closed]
18 avril 2013, par M IrfanI have downloaded FFMPEG from this link http://www.ffmpeg.org/download.html under FFmpeg Mac OS X Builds section, all builds come with .7z extension i need help how to configure it on my machine.
-
how to retrieve text file inside assets folder and pass to ffmpeg command flutter
29 janvier 2023, par AmmaraI have created mylist.txt file inside assets folder.
Now I want to pass this text file to ffmpeg command working with flutter.
This is my code.


String commandToExecute =
 'ffmpeg -framerate 2 '
 '-f concat -i mylist.txt -i ${AUDIO_PATH} -s 1080x1620 -y ${OUTPUT_PATH}';



This is my mylist.txt file


file '/storage/emulated/0/Download/000.jpeg'
file '/storage/emulated/0/Download/001.jpeg'
file '/storage/emulated/0/Download/002.jpeg'
file '/storage/emulated/0/Download/003.jpeg'



please help me