Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (48)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (4094)

  • Anomalie #4012 : pipeline post_insertion n’affiche pas toutes les valeurs insérées

    9 octobre 2017, par Peet du

    ok ok !

    Donc lors de la création d’une nouvelle instance d’un objet, SPIP fait les choses en deux temps.

    1er temps

    objet_inserer() va ’préparer’ la nouvelle instance et tenter, si les champs existent dans l’objet, d’enregistrer les valeurs de :

    [’id_rubrique’]
    [’id_secteur’]
    [’lang’]
    [’langue_choisie’]
    [’statut’]
    [’date’]
    

    Donc au mieux le pipeline post_insertion renvoi un tableau contenant l’id de l’objet + le tableau des champs ci-dessus et leurs valeurs.

    2e temps

    si objet_inserer() renvoie bien un id_objet, objet_modifier() va lui enregistrer le reste, c’est à dire les valeurs correspondants aux champs déclarés comme editables dans plugins/base/mon_objet.php

    Il faut donc utiliser le pipeline post_edition si on veut pouvoir lire une des valeurs dites "editables".

    Donc pas d’anomalie, juste une incompréhension de la doc.

    On peut fermer le ticket
    ps : merci marcimat et jluc

  • How to use the —abr-ladder from x265 on ffmpeg

    14 septembre 2020, par Diego

    I'm trying to find out how to use the latest x265 abr-ladder option on ffmpeg, which promises up to 65% time savings compared to sequential generation, according to release notes, but : (1) I'm not sure if it is already available on ffmpeg or how to find out, and if it is (2) specifying the input/output inside the configuration file instead of the ffmpeg CLI causes ffmpeg to complain that required parameters are missing.

    


    In the x265 repository there is a example for configuration file, but I couldn't find there or in the ffmpeg repository instructions on how to use this kind of parameter that doesn't seem to follow the CLI standards for ffmpeg. Apparently it is possible to create multiple outputs in a single command using ffmpeg, but again I couldn't make it work.

    


    So what I'm looking for is a usage example for the --abr-ladder parameter for x265. Thank you.

    


  • Data URI or Base64 string as input to ffmpeg command

    18 août 2022, par Alok

    I can easily convert my media from one format to other using ffmpeg
    
ffmpeg -i input_file.ogg -acodec flac output_file.flac

    


    In place of input file I want to use Data URI or Base64 string as input file. I saw one example
    
ffmpeg -i "data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP///////////////ywAAAAACAAIAAADF0gEDLojDgdGiJdJqUX02iB4E8Q9jUMkADs=" smiley.png given at https://ffmpeg.org/ffmpeg-all.html

    


    I tried this example for my audio conversion.
    
ffmpeg -i "data:audio/ogg; codecs=opus;base64,GkXfo59ChoEBQveBAULygQR...trimmed" -acodec flac /tmp/alok.flac

    


    When I run script having this command I see error
    
./ffmpeg.sh: line 1: /usr/bin/ffmpeg: Argument list too long

    


    How can I make this conversion work ? How can I use Base64 data as input to ffmpeg command ?