
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (28)
-
Submit bugs and patches
13 avril 2011Unfortunately 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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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.
Sur d’autres sites (5824)
-
How do you make a modern bleep censor ? (With ffmpeg or other ready-made software)
1er août 2023, par nick carrawayI 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.


- 

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


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


-
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 ?


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












-
-
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 razackIl 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);
renvoieNULL
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éesgroupemots_xxx()
au lieu degroupe_mots_xxx()
,
ce qui fait que la fonctionobjet_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).