Recherche avancée

Médias (91)

Autres articles (86)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (10920)

  • avfilter/af_amix : change the max range of the number of inputs

    6 janvier 2020, par Limin Wang
    avfilter/af_amix : change the max range of the number of inputs
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/af_amix.c
  • avfilter/vf_colorspace : fix range for output colorspace option

    28 septembre 2016, par James Almer
    avfilter/vf_colorspace : fix range for output colorspace option
    

    Rreviewed-by : BBB
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_colorspace.c
  • How to create bash script with ffmpeg to flip a dir of vids 180, then stitch together without losing vid length

    25 septembre 2022, par Maude Rozencrance's Cat

    I'm trying to make a bash script in linux to flip a bunch of AVI files 180 degrees, then stitch them together without losing the length of the vids. My code works, but it truncates each vid and makes 60 10sec vids, which should be 600 seconds of video, down to about 11 seconds.

    &#xA;

    I removed the transpose to flip the vids and now I'm getting the correct vid length. So it works, but I have to flip the vid in the video player.

    &#xA;

    >videos.txt&#xA;&#xA;files=DSCF*.AVI&#xA;&#xA;for f in $files&#xA;do&#xA;    #make list of vids, copy to videos.txt&#xA;    echo "file &#x27;$f&#x27;" >> videos.txt;&#xA;    echo "duration 10.0" >> videos.txt;&#xA;    &#xA;done&#xA;&#xA;#stitch all vids together&#xA;ffmpeg -f concat -safe 0 -i videos.txt -c copy bigvid.AVI&#xA;

    &#xA;