
Recherche avancée
Autres articles (102)
-
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 (...) -
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (11755)
-
Merging .flv chunks from stream site
4 décembre 2016, par IztooiI’m trying to download a video from an alternative version of the Ustream site. This site is apparently used for a DRM protection, in fact you can’t watch this video without having access to it through a login from this site.
The video system should be the same used by ustream (same links), that is calling different flv chunks every x seconds and merging them into the stream (similar to an rtmp service, but it doesn’t use this protocol).I managed to download every .flv chunks composing this video, but i had issues on merging them into a single file. First of all these flvs files have some audio/video lags/problems, but since there is no other way to download this video i’m not complaining about lags.
The real issue is that every flv file has an additive increase on the duration, despite having a normal size. Video duration is about 6 seconds, so the first chunk is 6 seconds long, the second chunk is 12 seconds long, although only the first 6 are visible (the remaining 6 are "corrupted"). If i try to merge (with ffmpeg or any video-joining software) all these files (about 600-700, for a total duration of 1 hour and 15 minutes) only the first two sections are visible, then I cannot see anything. (Being more clear, if i try to merge the first 2 chunks, file is 18 seconds long and i can see the first 12 ; if i try to merge the first 3 chunks, file is 36 seconds long and i can still only see the first 12 seconds.)
Anyone has any idea ?
-
Anomalie #3879 (En cours) : Le champ url d’un auteur doit pouvoir pointer sur une URL interne du site
21 décembre 2016, par realet RealETBonjour,
La révision [23060] a eu pour conséquence que des urls de type art12, rub12 parfaitement licites pour SPIP (et utilisable par exemple dans les redirections), ne fonctionnent plus pour les auteurs.
Or, il est tout à fait cohérent d’avoir un site où dans la fiche d’un auteur, on indique la rubrique dont il est responsable dans le site via le champ #URL_SITE_AUTEUR
Pour l’utilisateur ayant signalé ça après son passage en 3.0.24 [23212], ça lui casse la possibilité d’en créer de nouveau et d’éditer les anciens.
PS : son message sur IRC :
Bonjour, je viens de me rendre compte que sur mon spip 3.0.2423212, dans la page auteur, le champs "Adresse (URL) du site" ne prends plus la valeur "rubriqueXXX" ou "rubXXX", j’ai le message "l’URL du site n’est pas valide.", est ce normal ? un changement récent ?
-
Anomalie #3879 : Le champ url d’un auteur doit pouvoir pointer sur une URL interne du site
22 décembre 2016, par Red SectorVoila les lignes ajoutées ou modifiées de prive/formulaires/editer_auteur.php
1 < ?php 2 3 if (!defined(’_ECRIRE_INC_VERSION’)) return ; 4 5 include_spip(’inc/actions’) ; 6 include_spip(’inc/editer’) ; 7 include_spip(’inc/filtres_ecrire’) ; // si on utilise le formulaire dans le public 8 +++ include_spip(’inc/texte’) ;
102 --- if ($url = _request(’url_site’) and !tester_url_absolue($url))
103 +++ if ($url = extraire_attribut(propre(_request(’url_site’)), ’href’) and !tester_url_absolue($url))
104 $erreurs[’url_site’] = _T(’info_url_site_pas_conforme’) ;
105Et je ne suis pas l’auteur de la ligne 103, c’est RealET, rendons à césar ce qui lui appartient.