
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (58)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (8778)
-
Anomalie #3930 : Moteur de recherche : combinaison de DEUX mots avec accents ne retourne rien
18 septembre 2017, par - EquipementUne précision : la requête SQL générée par la fonction inc_recherche_to_array_dist est la suivante :
SELECT t.id_article, t.surtitre, t.titre, t.soustitre, t.chapo, t.texte, t.ps, t.nom_site, t.url_site, t.descriptif FROM spip_articles AS t WHERE t.surtitre REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.titre REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.soustitre REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.chapo REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.texte REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.ps REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.nom_site REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.url_site REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’ OR t.descriptif REGEXP ’secr.tariat g.n.ral|secr.tariat|g.n.ral’
Dans phpmyadmin, l’exécution de cette requête retourne un résultat vide (aucune ligne).
Remarque : J’ai obtenu cette requête en ajoutant, dans inc/recherche_to_array.php (ligne 91), le spip_log ci-dessous :
spip_log("Trace : SELECT ".implode(", ",$requete[’SELECT’])." FROM ".implode(" ",$requete[’FROM’])." WHERE ".implode(" ",$requete[’WHERE’]), _LOG_ERREUR) ;
-
ffmpeg being inprecise when trimming mp3 files
12 janvier 2019, par cactusI want to use ffmpeg to trim some mp3s without re-encoding. The command I used was
ffmpeg -i "inputfile.mp3" -t 00:00:12.414 -c copy out.mp3
However, out.mp3 has a length of 12.460s, and when I load the file in Audacity I can see that it was cut at the wrong spot, and not at 12.414s.Why is this ? I googled a bit and tried some other commands like
ffmpeg -i "inputfile.mp3" -ss 0 -to 00:00:12.414 -c copy out.mp3
(which interestingly results in a different length of 12.434s) but could never get the milliseconds to be cut right.PS. I wasn’t sure whether SO was the right place to ask since it isn’t technically programming related, however most of the stuff I found on ffmpeg for trimming audio files were stackoverflow questions, e. g. ffmpeg trimming videos with millisecond precision
-
avcodec/aactab : do not use floats for constants
5 mars 2016, par Marton Balintavcodec/aactab : do not use floats for constants
This may improve the precision of the fixed point encoder/decoder for some
compilers and architectures.Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Marton Balint <cus@passwd.hu>