Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (27)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5483)

  • How do you make a modern bleep censor ? (With ffmpeg or other ready-made software)

    1er août 2023, par nick carraway

    I have always been a fan of live caller radio shows. These (sports) shows allow callers to call a hotline and talk to the radio host directly.

    


    One of the oldest problems with this show format is what if the caller curses, or says something highly inappropriate ? To keep the show clean (and legal), the radio shows broadcast with a 7 second delay. They also use a "bleep" censor, which historically allowed them to wipe the incriminating phrase with a "Beeeeeep" sound. These days, however, they completely cut out the caller's sentence before it even begins. ("Ah, we had to let you go there pal. Can't say that on the radio"). In the modern method, the transition is seamless, almost like they shorten the 7 second delay to a 4 second delay as they remove the start of the caller's reply entirely, and overwrite it with the host's explanations. The caller does not appear to be "interrupted" at all, the start of their sentence leading to the bad phrase is never even broadcasted.

    


    I've been thinking about how to do this in software. I found a project that looked promising. It adds a 7 second delay to your streams, and allows you to convert X amount of those seconds into silence assuming a caller says something inappropriate. While not ideal (since it's a few seconds of dead silence and would interrupt the caller mid-sentence), how can you do something like this in ffmpeg ? It is a good starting point before implementing the more modern features.

    


      

    1. How do you use ffmpeg to livestream a video/audio stream with a delay ?

      


    2. 


    3. How do you overwrite the last 3 seconds of that stream with silence or a "bleep", when you need to ?

      


    4. 


    5. Are you able to easily switch your stream to overwrite those 3 seconds with new audio (e.g. the host's explanation for why the caller was hung-up on) ? And how can you go back from a 4 second delay to a 7 second delay ?

      


    6. 


    7. OR, is there a ready-made way to get flawless "radio-like" hang-ups on bad callers ?

      


    8. 


    


  • Evolution #4653 (Nouveau) : : remplacer le webservice en image fixe par MathJax en local ?

    9 février 2021, par RastaPopoulos ♥

    I y a déjà le plugin https://contrib.spip.net/MathJax-pour-SPIP
    qui remplace la génération côté serveur en image fixe par une transformation en JS et qui produit donc du contenu directement dans le DOM, suivant les CSS.

    MathJax est à priori très maintenu, et il est même accessible aux lecteurs d’écran ! Du coup est-ce qu’il y a encore une raison de maintenir un webservice au lieu de mettre à jour le plugin et l’intégrer aux dist ?
    https://www.mathjax.org/

    Cette lib est soutenu par la Société américaine des maths… par l’IEEE, Elsevier, Oxford… et moult autres noms prestigieux… Je pense qu’on peut raisonnement lui faire confiance pour afficher correctement les formules de maths non ?

    Plus de webservice à maintenir, et moins d’infos des utilisateurs envoyés à un service tiers (fut-il à nous)

  • Anomalie #3205 (Nouveau) : [Plugin-dist Mots] Incompatibilité avec l’API d’édition d’objet ?

    13 avril 2014, par charles razack

    Il semblerait que la création d’un groupe de mots par le biais l’API d’édition d’objet ne fonctionne pas.
    A première vue, on dirait que c’est dû à un souci de nommage de fonctions au niveau du plugin.

    Pour reproduire, dans le traitement d’un formulaire par ex. :

    include_spip('action/editer_objet');<br />$set = array('titre'=>'Mon super titre',, 'tables_liees'=>'articles');<br />$id_groupe = objet_inserer('groupe_mots', '', $set);

    var_dump($id_groupe); renvoie NULL et pour cause : le groupe de mots n’a pas été créé.

    Cause probable :

    Dans le fichier action/editer_groupe_mots.php du plugin, les fonctions sont nommées groupemots_xxx() au lieu de groupe_mots_xxx(),
    ce qui fait que la fonction objet_inserer() de l’API ne les trouve pas.
    Du coup elle tente une insertion "générique" qui pour une raison ou une autre ne fonctionne pas (pb avec sql_insertq ligne 209, je n’ai pas regardé ce qui cloche exactement).