Recherche avancée

Médias (91)

Autres articles (59)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (7175)

  • extract audio with youtube-dl on windows

    12 mars 2017, par FlyingNimbus

    I want to extract audio from a video downloaded with youtube-dl on windows. I got youtube-dl working, but am unable to extract the audio. This problem is caused due to not having the correct audio codes installed. When i try to extract audio it tells me the following :

    WARNING : unable to obtain file audio codes with ffprobe

    youtube-dl man sais the following :
    - x -extract-audio convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)

    How do I install ffprobe or ffmpeg ? Do I install this on windows, or do I install this as a python extension ? I have no idea, can someone point me in the right direction ?

    OS : windows 7

  • lavc/videotoolboxenc : fix allocated buffer size

    29 mai 2016, par Rick Kern
    lavc/videotoolboxenc : fix allocated buffer size
    

    Allocates a buffer with padding, and with enough room for start codes when
    length codes are smaller.

    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • avcodec/on2avc : Unify initializing quad and pair VLCs

    18 octobre 2020, par Andreas Rheinhardt
    avcodec/on2avc : Unify initializing quad and pair VLCs
    

    Up until now, quad VLCs are initialized with codes of type uint32_t,
    pair VLCs with codes of type uint16_t. There were two separate loops in
    the decoder's init function for each type of VLC. This commit unifies
    this : The type of the codes are now passed in as void * and the actual
    size of the codes is obtained from a table. This approach also allows to
    use the smallest type for each VLC code table : some quad tables actually
    fitted in uint16_t. This allows to remove about 7KB from the binary.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/on2avc.c
    • [DH] libavcodec/on2avcdata.c
    • [DH] libavcodec/on2avcdata.h