Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (84)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (4812)

  • Lagarith and FFMPEG

    1er juillet 2022, par tms99

    Can anyone tell me if and how much data will be lost if I convert a Lagarith encoded video to Huffyuv and then back to Lagarith ?

    


  • Encode PCM to MPEG-2 AAC with FFmpeg APIs

    13 août 2019, par Tank2006

    My environment is "ffmpeg version 3.4.6-0ubuntu0.18.04.1"

    I wrote a program to encode audio data into MPEG-2 AAC with reference to an official example.

    First, I simply changed the encoder value(and the full source code I wrote is here).

    if (!(output_codec = avcodec_find_encoder(AV_CODEC_ID_AAC))) {

    But FFmpeg S/PDIF encoder(spdifenc.c) returns an error “Wrong AAC file format”.

    I use avctx->profile = FF_PROFILE_MPEG2_AAC_LOW(FF_PROFILE_MPEG2_AAC_HE); but it takes no effects.

    Considering the possibility that the official binary was not compiled with the "CONFIG_ADTS_HEADER" C flag, I ran the following code directly as this :

    buf = output_packet.data;
    int err = init_get_bits8(&gb, buf, 7);
    if (get_bits(gbc, 12) != 0xfff) return AAC_AC3_PARSE_ERROR_SYNC;

    This didn’t find ADTS header "0xFFF", therefore, an encoder doesn’t seem to work as expected.

    How do I encode ffmpeg-2 aac audio with ffmpeg apis ?

  • installing ffmpeg on Mac fail

    23 juillet 2022, par wei wang

    I tried to install ffmpeg on Mac(macOS 10.13) with : brew install ffmpeg

    


    but I got below ....

    


    Updating Homebrew...
Warning: You are using macOS 10.13.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
old version.

Error: ffmpeg: no bottle available!
You can try to install from source with:
  brew install --build-from-source ffmpeg
Please note building from source is unsupported. You will encounter build
failures with some formulae. If you experience any issues please create pull
requests instead of asking for help on Homebrew's GitHub, Twitter or any other
official channels.