
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (111)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (9804)
-
lavc : Deprecate AVPicture structure and related functions
14 octobre 2015, par Vittorio Giovaralavc : Deprecate AVPicture structure and related functions
This structure served as a bridge between data pointers and frames,
but it suffers from several limitations :it is not refcounted and data must be copied to every time
it cannot be expanded without ABI break due to being used on the stack
its functions are just wrappers to imgutils which add a layer of
unneeded indirection, and maintenance burdenit allows hacks like embedding uncompressed data in packets
its use is often confusing to our users
AVFrame provides a much better API, and, if a full blown frame is not
needed, it is just as simple and more straightfoward to use data and
linesize arrays directly.Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>
-
Revision 74060 : On passe tous les fichiers en utf-8 et les fins de ligne en Unix avant ...
2 juillet 2013, par teddy.spip@… — LogOn passe tous les fichiers en utf-8 et les fins de ligne en Unix avant de passer au grand chantier.
La branche v0 sera bornée à SPIP 2, le trunk à SPIP 3. Facilitera la maintenance du code -
Evolution #3709 (Nouveau) : verifier_crash_tables et base externes
19 février 2016, par Alexis PellicierSi une table d’une base externe est ajoutée dans $GLOBALS[’tables_principales’] ou $GLOBALS[’tables_auxiliaires’] par exemple via le pipeline declarer_tables_objets_sql :
function educ_declarer_tables_objets_sql($tables)
$tables[’emploi_du_temps’] = array(
’join’ => array(
"id_personnel"=>"id_personnel",
"id_matiere"=>"id_matiere",
),
) ;La fonction genie/maintenance.php/verifier_crash_tables() va la signaler comme crashé parce qu’elle la cherche sur la base spip.
Il faudrait pouvoir exclure ces tables, ou mieux, passer la variable $serveur au sql_select pour que la connexion se fasse sur la bonne base.