
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 (59)
-
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 (...) -
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 (...) -
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 (8411)
-
How to loop through my text file and call the name of picture
18 août 2022, par Ionut BejinariuI need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.


It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.


- 

- I don't know how to make the loop working for the pictures files.
- Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.






Thank you.


In .txt file my pictures are like this :


1.jpg
2.jpg
3.jpg



And my code looks like this :


@echo off
set "sourcedir=E:\test slideshow imagini" 
set "outputdir=E:\test slideshow imagini\1" 
PUSHD "%sourcedir%"
for /F "tokens=*" %%A in (poze3.txt) do (
 echo %%A
 :: pictures names
 for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" 
 POPD
)



-
How to loop thorough my text file and call the name of picture
17 août 2022, par Ionut BejinariuI need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.


It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.


- 

- I don't know how to make the loop working for the pictures files.
- Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.






Thank you.


In .txt file my pictures are like this :


1.jpg
2.jpg
3.jpg



And my code looks like this :


@echo off
set "sourcedir=E:\test slideshow imagini" 
set "outputdir=E:\test slideshow imagini\1" 
PUSHD "%sourcedir%"
for /F "tokens=*" %%A in (poze3.txt) do (
 echo %%A
 :: pictures names
 for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" 
 POPD
)



-
How to convert images to a video by the time they have been taken/saved and not by name ?
26 avril 2019, par Xester MeniaI have a Livestream that takes pictures every one or two seconds. Then I have a folder in which the pictures are being saved.
Usually I would just simply takeffmpeg -start_number -i IMG_%d.JPG video.webm
(I need the end format in .webm). I want to use the saved pictures to form a time-lapse to put up next to the stream. So people can see the last 24h/ 7d and 90d. So I wondered if I could code that all the pics of that time period are used and only them.
I later want it to happen automatic, so i dont have to write the code new every day.Thanks for your help