Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (10285)

  • How to use PHP FFMPEG to alter audio binary header bytes offset

    27 mai 2019, par SomniusX

    I use the following method to create a WNB file that is flashable to my Electric Unicycle Ninebot Z10

    First audacity to make the file raw pcm 16khz 16bit mono littleendian
    Then wnb-slicer golang app to convert that raw file into wnb.

    Today i did the same with ffmpeg

    ffmpeg -i $1 -acodec pcm_s16le -f s16le -ac 1 -ar 16000 -acodec pcm_s16le $1.raw
    ../wnb-slicer-master/wnb-slicer -file-name $1.raw

    where $1 is the original file

    About an hour ago i did the ffmpeg part with php-ffmpeg but i can’t have golang run on a webserver.

    So i thought if ffmpeg does bytes manipulation like the golang app does here

    Thank you in advance !

    p.s. this project will help all electric unicycle owners of the Z series wheels to change audio voices/sounds on their wheels !!

  • ac3dec : Allow asymmetric application of DRC when drc_scale > 1

    13 janvier 2014, par John Stebbins
    ac3dec : Allow asymmetric application of DRC when drc_scale > 1
    

    Amplification of quiet sounds is enhanced.
    Inspired by gbooker’s A52Decoder.

    • [DBH] libavcodec/ac3dec.c
  • aacenc : add a faster version of twoloop as the "fast" coder

    7 août 2016, par Rostislav Pehlivanov
    aacenc : add a faster version of twoloop as the "fast" coder
    

    Does nothing fancy but still sounds very decent at 128kbps.
    Still room to improve by bringing in the low pass and PNS management
    from the main big twoloop which should improve its quality but not
    sacrifice that much speed.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aaccoder.c