
Recherche avancée
Autres articles (99)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
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 (...)
Sur d’autres sites (10009)
-
Convert image sequence to lossless movie [closed]
19 janvier 2014, par astrofrogI have a sequence of images in TIF format, and I would like to create a movie at a fixed FPS (say 10 images per second) and that is lossless. Is there an easy way to do that ? I've been trying with
convert
from Imagemagick, andffmpeg
, but I just can't figure out what settings to use to avoid any compression. -
Save movie about open AI gym
30 novembre 2019, par AndresI make a Reinforcement learning code on python with open AI gym.After training I want save the movie about reinforcement learning but on windows this is impossible.
There is another way to save the movie of reinforcement learning MountainCar-v0 on windows ??
if __name__ == "__main__":
environment = gym.make("MountainCar-v0")
agent = QLearner(environment)
learned_policy = train(agent, environment)
monitor_path = "./movie_output"
environment = gym.wrappers.Monitor(environment, monitor_path, force=True)this is the error message
DependencyNotInstalled : Found neither the ffmpeg nor avconv executables. On OS X, you can install ffmpeg via
brew install ffmpeg
. On most Ubuntu variants,sudo apt-get install ffmpeg
should do it. On Ubuntu 14.04, however, you’ll need to install avconv withsudo apt-get install libav-tools
. -
How to rip a movie-DVD using cmd-line FFMPEG
19 octobre 2022, par DavidI'm trying to use the cmd-line FFMPEG pgm, to rip a movie-DVD into either a MP4 or MKV container, on Windows-OS. (Please do NOT tell
me to use some other GUI-based pgm, as so many of the other articles
do.)


The part of the ffmpeg command that I can't determine, is just
what syntax to use to reference the DVD-drive as the input. (I've
looked in the FFMPEG documentation, but I can't see the forest
for the trees.)


[Edit :]So I did some more google-searches and found an article on using VLC for this task.
Since I already had VLC installed, this approach
seemed worth trying. That article is here : https://www.howtogeek.com/howto/2696/how-to-rip-dvds-with-vlc/
(Stay tuned for further updates on my progress.)