Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (13893)

  • How to rip a movie-DVD using cmd-line FFMPEG

    19 octobre 2022, par David

    I'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.)

    


  • Save movie about open AI gym

    30 novembre 2019, par Andres

    I 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 with sudo apt-get install libav-tools.

  • Convert image sequence to lossless movie [closed]

    19 janvier 2014, par astrofrog

    I 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, and ffmpeg, but I just can't figure out what settings to use to avoid any compression.