Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (93)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (12454)

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