Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (104)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (13884)

  • V2.97a.20110706 - version bump for fixing intermittent broken Flash 9 SWF issue on *some* Windows machines with Firefox and/or IE 7, due to use of latest Adobe Flex SDK. (Rolled back to old SDK, fixed.) Weird. http://getsatisfaction.com/schillmania/topics/flashversion_9_fails_to_initialize_but_only_on_windows

    7 juillet 2011

    m doc/download/index.html m doc/index.html m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js m src/SoundManager2.as m src/SoundManager2_AS3.as V2.97a.20110706 - version bump for fixing intermittent broken Flash 9 (...)

  • Why does ffmpeg yuv420p conversion affect pixels beyond 2x2 blocks ?

    9 novembre 2020, par Hugues

    Why does the YUV420 conversion in ffmpeg seem to operate beyond the 2x2 pixel blocks ?

    


    # Create a test image.
ffmpeg -f lavfi -i testsrc=duration=1:size=160x120:rate=1 -y original.png

# Create a new image after converting to YUV420 and back to RGB.
ffmpeg -i original.png -pix_fmt yuv420p -f rawvideo - | \
  ffmpeg -f rawvideo -pix_fmt yuv420p -s 160x120 -i - -pix_fmt rgb24 -y yuv420.png

# Compare upscaled versions of the two images.
convert original.png -interpolate Nearest -filter point -resize 800% original.scaled.png
convert yuv420.png -interpolate Nearest -filter point -resize 800% yuv420.scaled.png
display original.scaled.png yuv420.scaled.png  # press spacebar to advance


    


    Note how pixels are modified even at a distance of 2 pixels from the horizontal bar
in the lower part of the image.

    


    See the result :
enter image description here

    


    and closeup :
enter image description here

    


  • Node.js : How can I add meta data to an audio file ?

    21 avril 2021, par Sprout Coder

    I have a .wav audio file that I would like to add meta data to, in Node.js :

    


    let original = fs.readFileSync('./somewhere/something.wav').toString('base64')
let withMeta = addMeta(original)
fs.writeFileSync('./somewhere/something-more.wav', withMeta)


    


    Is this possible ? Is there some Js library that allows you to write metadata (not just read/extract it) to an existing audio file.