
Recherche avancée
Autres articles (23)
-
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 (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (4899)
-
dashenc : Fix writing of timelines that don’t start at t=0
29 décembre 2014, par Martin Storsjödashenc : Fix writing of timelines that don’t start at t=0
When writing an explicit time, reset the cur_time variable to this
value as well. This avoids writing excessive time attributes for each
segment in the timeline, as long as the segments are continuous.Signed-off-by : Martin Storsjö <martin@martin.st>
-
mpegts : relax restrictions on matching the packet start in read_header
4 février 2015, par Anton Khirnovmpegts : relax restrictions on matching the packet start in read_header
analyze() is currently called both when probing and from read_header().
It determines the packet start by looking for the sync byte, followed by
unset Transport Error Indicator and valid adaptation_field_control.This makes sense to do when probing, but once we already know the format
is MPEG-TS, it is counterproductive to be so strict — e.g. in some
files the TEI might be set and analyze() might get called with a smaller
buffer than the one used for probing, resulting in a failure. -
Server-side generated video with custom texture - Where to start ?
12 février 2014, par opznhaarlemsI am working on a project in which a user can upload an image and then after uploading the image, a video is generated and then displayed, containing the image which was uploaded as some sort of texture/mask. (Like they do in Elf Yourself).
The original video should contain some sort of placeholder for the image to allow it to move around and be transformed on a matrix.
I'm not really sure where to start off or how I should even call such a merging/blending process in the first place.
A few requirements I've came up with so far :
- The server runs PHP
- I am able to use GD, Imagick and FFMPEGRegards