Recherche avancée

Médias (91)

Autres articles (103)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (13011)

  • Anomalie #4725 : SyntaxError : JSon.parse : unexpected character at line 1 column 1 of the JSON data

    12 avril 2021, par Franck D

    yop :)
    J’ai réussi à reproduire et donc fait deux copie d’écran avec ce qui s’affiche dans "réseaux" de l’inspecteur :)
    J’ai fait du montage, car c’était trop grand

    A savoir, si je clique sur le "En savoir plus", cela m’ouvre : https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Errors/Unexpected_type

  • Is there a way to analyse a video to find out its loudness and then correct it to ebu r128

    14 novembre 2019, par A Person

    I wanted to see if anyone know the best way I can analyse a audio of a video and find out it’s loudness.

    I want to use this information to then correct the audio either through FFmpeg or other means.
    The audio has to met https://tech.ebu.ch/docs/r/r128.pdf the ebu standard of loudness -23 and not higher than 0.5.

    is there a way to do this ?

    I am having difficulties finding a solution.

  • ffmpeg : Split MP3 in 1 second chunks fast ?

    30 décembre 2019, par Niko

    I want to split mp3 into one second chunks fast. I have the mp3 already in memory (in crystal lang) and want to process it further (so I need it in memory after splitting). I got two possiblities working :

    • Saving the file to ram disk, calling ffmpeg -segment on it, reading all the segement files into memory.
    • Piping the file into ffprobe --show_frames and parsing the pkt_pos fields from the result.

    Both are slow about one second due to unnescessary overhead. Writing to disk and reading hundrets of files in the first case, outputting a lot of unneeded information about a lot of unneeded frames in the second.

    I see two possibilities to improve :

    • a custom filter for ffmpeg that outputs the segements with a separator to stdout.
    • a custom filter for ffprobe similar to --show_frames but with a framestep parameter (the existing framestep filter only seems to work with video files) which outputs only the byte offset of the frames.

    Perhaps I’m missing possibilites with the existing filters. Perhaps there is a tool better fitted for my needs than ffmpeg. I’d be happy for any hints.