Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (86)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (14793)

  • libavcodec : Implementation of AC3 fixedpoint decoder

    1er avril 2014, par Nedeljko Babic
    libavcodec : Implementation of AC3 fixedpoint decoder
    

    Signed-off-by : Nedeljko Babic <nbabic@mips.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] configure
    • [DH] doc/general.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/ac3.h
    • [DH] libavcodec/ac3dec.c
    • [DH] libavcodec/ac3dec.h
    • [DH] libavcodec/ac3dec_fixed.c
    • [DH] libavcodec/ac3dec_float.c
    • [DH] libavcodec/ac3dsp.c
    • [DH] libavcodec/ac3dsp.h
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/kbdwin.c
    • [DH] libavcodec/kbdwin.h
    • [DH] libavcodec/version.h
  • ATRAC3+ decoder

    3 janvier 2014, par Maxim Polijakowski
    ATRAC3+ decoder
    

    Cleanup by Diego Biurrun.

    Signed-off-by : Kostya Shishkov <kostya.shishkov@gmail.com>

    • [DH] Changelog
    • [DH] configure
    • [DH] doc/general.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/atrac3plus.c
    • [DH] libavcodec/atrac3plus.h
    • [DH] libavcodec/atrac3plus_data.h
    • [DH] libavcodec/atrac3plusdec.c
    • [DH] libavcodec/atrac3plusdsp.c
    • [DH] libavcodec/version.h
    • [DH] libavformat/omadec.c
  • How convert High bitrate mp3 to lower rate using ffmpeg in android

    23 mars 2018, par Android Team

    We want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.

    ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3

    Result :-the output bitrate same as input mp3.

    And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3

    so please suggest any solution.