
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (62)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (11972)
-
HLS.js append a new .m3u8 media file
23 novembre 2019, par HastalavistababymlHow can I append a new media file using HLS.js
window.hls = new Hls();
let VideoElement = document.getElementById('video')
let VideoViewr = (dir, element) => {
if (Hls.isSupported()) {
hls.attachMedia(element);
hls.loadSource(dir)
hls.on(Hls.Events.MEDIA_ATTACHED, function () {
console.log("video and hls.js are now bound together !");
hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
console.log("manifest loaded, found " + data.levels.length + " quality level");
console.log(video.buffered.end(0)-video.currentTime)
});
});
}
}
VideoViewr('./video/dir-1/chunk.m3u8', VideoElement)
VideoViewr('./video/dir-2/chunk.m3u8', VideoElement)
VideoElement.play()HTML
<video width="400" height="400" controls="controls"></video>
After the first instance, I want to append another .m3u8 file but getting last appended video in the player
HLS.append(m3u8file)
HLS.append(m3u8_another_file)
-
ffmpeg install on my machine but not display in phpinfo()
17 février 2017, par Pratik Bachchheffmpeg extension not loaded in
phpinfo()
when I follow the steps below :- Download ffmpeg from here : https://ffmpeg.org/download.html
- Copy
php_ffmpeg.dll
from thephp5
folder to theC:\wamp\bin\php\php5.2.9-2\ext
- Copy files from
common
to thewindows/system32
folder - Add
extension=php_ffmpeg.dll
tophp.ini
file (\apache...php.ini
) - Restart all services (Apache, PHP...)
- Enable
extension=php_ffmpeg.dll
directive in yourphp.ini
.
-
I get an error when republishing the image I shot with ros2 run ffmpeg [closed]
29 mars 2024, par Seher Elbasan BüyükI get the following errors when republishing the image I took with ros2 run ffmpeg. ;


ros2 run image_transport republish ffmpeg in/ffmpeg:=image_raw/ffmpeg raw out:=image_raw/uncompressed --ros-args -p "ffmpeg_image_transport.map.hevc_rkmpp:=hevc"`



terminate called after throwing an instance of 'image_transport::TransportLoadException'
 what(): Unable to load plugin for transport 'image_transport/ffmpeg_sub', error string:
According to the loaded plugin descriptions the class image_transport/ffmpeg_sub with base class type image_transport::SubscriberPlugin does not exist. Declared types are image_transport/compressedDepth_sub image_transport/compressed_sub image_transport/raw_sub image_transport/theora_sub
[ros2run]: Aborted



I don't want to replace the parameters specified in the errors. I want to do this with ffmpeg. how can i fix this


After running ros2, I want to list the topics, echo them and view them with rviz2 and image uncompressed.Afterwards, I want to use and show this uncompressed image in my Python detection project.