Recherche avancée

Médias (91)

Autres articles (111)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10259)

  • avformat/asfenc : write group_mutual_exclusion_objects for audio on multiple languages

    5 février 2016, par Marton Balint
    avformat/asfenc : write group_mutual_exclusion_objects for audio on multiple languages
    

    Improves streaming compatibility with Windows Media Services. Also tested for
    compatilbility in Windows Media Player, Windows Media ASF Viewer and VLC.

    This version of the patch only writes exclusion among audio streams, therefore
    choosing a subtitle language should be possible independently of audio language.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/asf.c
    • [DH] libavformat/asf.h
    • [DH] libavformat/asfenc.c
  • Rewind problem after convert *.mp3 to *.aac

    29 août 2020, par Vitaly Vesyolko

    I need to prepare audio files in MP3 format for sending via WhatsApp to Android and iOS devices with the ability to pause and mainly rewind.

    &#xA;

    To do this, I use the ffmpeg utility on my notebook with Linux Ubuntu installed. Conversion example is described in detail here FFmpeg command to convert MP3 to AAC.

    &#xA;

    As a result, I get AAC audio files that cannot be rewound in the WhatsApp player. I tried to set different options that are responsible for the output sound quality, size, and so on. But the ability to rewind in the WhatsApp player disappears.

    &#xA;

    Rewind - is to slide by finger the circular slider in the WhatsApp audio player widget.

    &#xA;

    I also used the following online services :

    &#xA;

      &#xA;
    1. ONLINE-CONVERT
    2. &#xA;

    3. Convertio
    4. &#xA;

    5. ZAMZAR.
    6. &#xA;

    &#xA;

    One of the first two in some cases saves files with the ability to rewind, but in most cases - without it. And it very likely depends on the original file size. This is a hypothesis - if the size is small, then it is possible to rewind the audio file in the WhatsApp player. In any case, this method is not universal.

    &#xA;

    Please provide a universal solution to the task at hand - a CLI utility or a tool that would convert MP3 to AAC with the ability to rewind in the WhatsApp player. And please indicate which characteristics are responsible for the absence / presence of such functionality.

    &#xA;

  • How can I install ffmpeg if I'm using Cloud Foundry and a python buildpack

    14 juillet 2019, par david balague

    I’m writing a python application which uses pydub and want to run it in the cloud, I’m using IBM’s ibmcloud Cloud Foundry implementation to deploy the application.

    pydub requires access to ffmpeg. The python buildpacks do not include this tool.

    How can I install ffmpeg and make sure that pydub can access it from within my application ?

    I tried to copy ffmpeg within the app’s directory, even in the app’s root directory, but I get a
    [Errno 2] No such file or directory : ’ffprobe’ : ’ffprobe’
    meaning that pydub cannot access ffmpeg.

    I tried to include an additional buildpack (https://github.com/shunjikonishi/heroku-buildpack-ffmpeg) in my manifest.yaml

    Nothing worked

    this is my masked manifest.yaml

    applications :
    - services :
    - xxx_de
    disk_quota : 1024M
    - name : ffmpeg
    buildpacks : https://github.com/shunjikonishi/heroku-buildpack-ffmpeg
    memory : 128M
    - name : xvz
    #route : eu-gb.mybluemix.net
    route : mybluemix.net
    instances : 1
    memory : 128M

    Could you suggest a fix or an alternative way to do this ?

    Thanks !!