Recherche avancée

Médias (91)

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

Sur d’autres sites (11388)

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

  • Maximum MOV file supported audio / video length

    27 octobre 2020, par AKHILASH TP

    Thanks in advance.

    &#xA;

    We use libav for MOV muxing. Below is the audio and video format used. Can you help us with our questions ?

    &#xA;

    Video format - h264&#xA;Audio format - 4 channel, 24bit, 48KHz PCM

    &#xA;

    Queries :

    &#xA;

      &#xA;
    1. Can you please guide us to find the maximum length supported for a MOV file ?
    2. &#xA;

    3. Does libav have any specific limitation related to the maximum duration for muxing a MOV file ?
    4. &#xA;

    &#xA;