Recherche avancée

Médias (91)

Autres articles (90)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • 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 (...)

  • 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 (...)

Sur d’autres sites (11428)

  • FFMPEG loop to trim silence at beginning and end of file

    23 août 2021, par Juan Pablo

    I'm trying to take a folder that contains mp3 and wave files and trim the silence at the beginning and the end in all the individual files.

    


    for f in *.{mp3,wav}; do ffmpeg -i "$f" -af "silenceremove=start_periods=1:start_duration=1:start_threshold=-60dB:detection=peak,aformat=dblp,areverse,silenceremove=start_periods=1:start_duration=1:start_threshold=-60dB:detection=peak,aformat=dblp,areverse" "outputs/${f%.*}.mp3"; done


    


    I keep receiving an error that f was unexpected. Can someone tell me what I'm doing wrong ?

    


  • lavc/vorbisdec : use intermediate variables

    19 septembre 2022, par Rémi Denis-Courmont
    lavc/vorbisdec : use intermediate variables
    

    The compiler cannot infer that the two float vectors do not alias,
    causing unnecessary extra loads and serialisation. This patch caches
    the two input values in local variables so that compiler can optimise
    individual loop iterations.

    • [DH] libavcodec/vorbisdec.c
  • fftools/ffmpeg_mux : distinguish between sync queue and muxer EOF

    9 février 2023, par Anton Khirnov
    fftools/ffmpeg_mux : distinguish between sync queue and muxer EOF
    

    Individual streams should be terminated in the former case, the whole
    muxing process in the latter.

    Reported-by : Gyan Doshi

    • [DH] fftools/ffmpeg_mux.c