
Recherche avancée
Autres articles (48)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Ajouter notes et légendes aux images
7 février 2011, parPour 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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9339)
-
Anomalie #3218 (Nouveau) : Erreur dans affdate_debut_fin
26 mai 2014, par Nicolas DorignyDans affdate_debug_fin, le cas où les deux dates ne sont pas dans le même mois utilise affdate() au lieu de affdate_jourcourt().
Ce qui produit :
Du 29 mars 2014 au 13 novembre 2014
au lieu de :
Du 29 mars au 13 novembreSur SPIP 3.0.16 :
--- ecrire/inc/filtres.php (revision )
++ ecrire/inc/filtres.php (revision )@ -1204,8 +1204,8
@
$s = _T(’date_fmt_periode’,array(’date_debut’ => $date_debut,’date_fin’=>$date_fin)) ;
else
- $date_debut = affdate($d) ;
- $date_fin = affdate($f) ;
$date_debut = $affdate($d) ;
+ $date_fin = $affdate($f) ;
if($jour)
$nomjour_debut = nom_jour($d,$abbr) ;
$date_debut = _T(’date_fmt_jour_periode’,array(’nomjour’=>$nomjour_debut,’jour’ => $date_debut)) ; -
Anomalie #4706 (En cours) : safehtml vire des trucs légitimes
1er juillet 2021, par RastaPopoulos ♥Je rouvre car la 3.2 sera LTS et que le rapport était en premier lieu pour cette version stable.
-
ffmpeg to cut beginning and fade in audio
31 juillet 2024, par cannyboyI've got a bunch of spoken word mp3 files, which all have the same intro talking and music, and then the real content begins. So it goes roughly like this :


00:00 Standard intro spoken word
00:20 Standard intro music
00:35 The content



The timings are not always the same (can vary by 5 secs). So I'd to cut the first 25 seconds and then fade in the next five seconds. And then output the file in the same mp3 format. Is this possible with ffmpeg ?