Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (72)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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, par

    MediaSPIP 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 2013

    Jolie 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 (9396)

  • Multiple audio playing at the same time

    8 juin 2021, par WETRAKS

    I got error in that line that says audio is already playing

    


    voice.play(discord.FFmpegPCMAudio(f"song_{guild_key}.mp3"), after=lambda e: check_queues())


    


    How do i fix this(i want it to play multiple mp3 files at the same time on diffrent guilds(not multiple at the same time in one guild)

    


  • Golang calls ffmpeg to intercept the first frame of the video

    22 mars 2021, par l0s7r

    The processing speed within 10M is very fast, and the processing speed of 20-80MB video is quite slow

    


    cmd := exec.Command("ffmpeg",
        "-ss", "0:00:02.000",
        "-i", "-",
        "-vframes", "1",
        "-q:v", "2",
        path)
    cmd.Stdin = bytes.NewBuffer(bufC.Bytes())
    err = cmd.Start()
    err = cmd.Wait()


    


    error message :

    


    exit status 1


    


  • ffmpeg select filter starting time ?

    8 mars 2021, par Sergey Yermak

    I am stuck with ffmpeg select filter.

    


    I am trying to generate 10 thumbnails from the video and it works fine.

    


    However, I want to skip some starting time (around 30 seconds), since there are usually video intros, etc.

    


    So I can't figure out a way to do that - not using ffmpeg too often.
The command I'm currently using :

    


    ffmpeg -loglevel panic -y -i "test.mp4" -frames 1 -q:v 1 -vf "select=not(mod(n\,7877)),scale=-1:227,tile=10x1" video_preview.jpg