Recherche avancée

Médias (29)

Mot : - Tags -/Musique

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 (12183)

  • Set GOP length for HEVC-Encoding in ffmpeg

    18 juin 2018, par nm82

    I want to encode an xxx.y4m file to hevc and set the GOP-length to a particular value, open and closed gop.

    To encode I’m using :

    ...>ffmpeg -i xxx.y4m -c copy xxx.hevc

    this gives me the hevc-encoded file, now I want to set a particular gop-length

    ...>ffmpeg -i xxx.y4m -c:v libx265 -keyint=1 -open-gop=1 -c copy xxx.hevc

    is not working because "option not found"

    kind regards

  • AVOptions : do not range check flag options.

    26 octobre 2013, par Anton Khirnov
    AVOptions : do not range check flag options.
    

    It does not make sense in the vast majority of use cases, no currently
    defined AV_OPT_TYPE_FLAGS options in Libav set the range to anything
    nontrivial, and many of those get it wrong (the "correct" range is
    INT_MIN to INT_MAX so that the builtin constant "all" works).

    • [DBH] libavutil/opt.c
  • How can I combine two audios into one, but using the length of the first audio ?

    21 avril 2021, par vaginatorZalupi

    There are two audios. I need to connect them to each other (two channels), but with the same length as the first. I found a command on Stack Overflow that partially solves my problem : ffmpeg -i AgAD3RMAAvgr.ogg -i audio.mp3 -filter_complex amix=inputs=2:duration=longest output.mp3.