Recherche avancée

Médias (91)

Autres articles (48)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (4607)

  • Anomalie #3156 (Fermé) : forum : supprimer l’option lien hypertexte ou mettre à jour le formulaire ?

    18 juillet 2014, par denisb -

    fermé par http://zone.spip.org/trac/spip-zone/changeset/83689/ (et suivants...)

    (pcc erational)

  • how to write a batch script to run two different commands through multiple subdirectories ?

    26 janvier 2021, par alsoftie000

    i'm attempting to put together a script that can run through multiple subdirectories and run commands on the files within them. the directory structure looks something like this :

    


    \working directory
    \subdirectory 1
        \subsubdirectory 1
            \left.wav
            \right.wav
            \middle.wav
        \subsubdirectory 2
            \left.wav
            \right.wav
            \middle.wav
            \backing.wav
            \guitar.wav
        \subsubdirectory 3
            \left.wav
            \right.wav
            \middle.wav
    \subdirectory 2
        \subsubdirectory 1
            \left.wav
            \right.wav
            \middle.wav
            \backing.wav
            \guitar.wav
        \subsubdirectory 2
            \left.wav
            \right.wav
            \middle.wav
        \subsubdirectory 3
            \left.wav
            \right.wav
            \middle.wav
            \backing.wav
            \guitar.wav


    


    for my script, i want it so that for directories that only have 3 files in them, it'll run this command :
ffmpeg -vn -i left.wav -i middle.wav -i right.wav -filter_complex "[0]adelay=0|0,volume=3[a];[1]adelay=0|0,volume=3[b];[2]adelay=0|0,volume=3[c];[a][b][c]amix=inputs=3:dropout_transition=0" output.flac

    


    and then for the directories with 5 files, it'll run ffmpeg -vn -i left.wav -i middle.wav -i right.wav -i guitar.wav -i backing.wav -filter_complex "[0]adelay=0|0,volume=5[a];[1]adelay=0|0,volume=5[b];[2]adelay=0|0,volume=5[c];[3]adelay=0|0,volume=5[d];[4]adelay=0|0,volume=5[e];[a][b][c][d][e]amix=inputs=5:dropout_transition=0" output.flac

    


    is there an easy way to do this (assuming what i'm trying to do is even possible ?

    


  • FFMPEG crop boundaries animation

    28 septembre 2021, par VlFedotov

    I'm looking for a way to make crop filter params depends on current time.

    


    Now I have 2 videos - white and aqua squares in one split output video, and this code works fine :

    


    ffmpeg -i out/i1.mp4 -i out/i2.mp4 -filter_complex "[0:v]crop=iw/2:ih:0:0[left];[1:v]crop=iw/2:ih:ow:0[right];[left][right]hstack" out/generated.mp4


    


    My question is - how to make the border between two videos floating, animated ? For example from left side of output vide to the right ?

    


    I already tried to use t param, e.g. like this :

    


    ffmpeg -i out/i1.mp4 -i out/i2.mp4 -filter_complex "[0:v]crop=iw/2+t:ih:0:0[left];[1:v]crop=iw/2-t:ih:ow:0[right];[left][right]hstack" out/generated.mp4


    


    But it throws an error :

    


    [Parsed_crop_0 @ 0x7fa46060eec0] Error when evaluating the expression 'iw/2+t'

[Parsed_crop_0 @ 0x7fa46060eec0] Failed to configure input pad on Parsed_crop_0

Error reinitializing filters!

Failed to inject frame into filter network: Invalid argument

Error while processing the decoded data for stream #1:0


    


    Can anybody help me to solve this ? Or explain - why it isn't possible ?