
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (61)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (5922)
-
Issue in displaying Large Video Files in MedisElement using ASP.NET JQuery
13 novembre 2015, par SarahNThere are some large .Mp4 files encoded with FFmpeg in another
project .I use MediaElement.js to display the video for user (look after the video name in another server, copy it into a Webserver location , and play it) .
for larger video files, they Cant be played . Does it mean MediaElement load whole Video file , and then play them ?
What should I do for buffering separate section , to avoid this issue ?This is the code I use :
if ($('#player1')) {
player = new MediaElementPlayer("#player1",
{
//...
alwaysShowControls: true,
success: function(mediaElement, domObject) {
mediaElement.play();
}
});
}I found this link MediaElement.js - Flash Video Wont Play Until Fully Loaded , I ’m not sure if its useful for me or not ?
Please let me know if any solution comes into your mind, Thanks .
-
fate/cover-art : Add test for writing id3v2 tags and apic with AIFF/MP3
10 avril 2021, par Andreas Rheinhardtfate/cover-art : Add test for writing id3v2 tags and apic with AIFF/MP3
Notice that the order of the APIC tracks is currently wrong. This is
a superposition of two bugs : (i) Both muxers write the attached
pictures in the order they arrive in the muxer and not in the
stream_index order, leading to attached pictures that are copied being
written earlier because their timestamp is AV_NOPTS_VALUE, whereas the
timestamp of the encoded pictures is 0. (ii) A bug in the id3v2 parsing
code reverses the order of the parsed pictures.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Make picture from stream(webcam) by ffmpeg [on hold]
29 novembre 2018, par SkiFI have webcam and I want to store video from it. I need to store just last one hour. Can I limit space or time for ffmpeg out file ?
Second and the main problem is make pictures every minute. I want make pictures from actual webcam state. with minimal delay.
Based on my current knowledge I think the best solution is make 3 processes.
The Fist will capture video for one minute and there will be 60 files with time stamp in name and every minutes ffmpeg will be restarted by script and script remove the oldest file. The Second will share video steam and The Third will take last frame from the newest video file. Maybe some one know better solution for this problem.I think bash is the best tool for this problem. Solution is based on c++ or python also welcome.