
Recherche avancée
Autres articles (103)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7408)
-
avcodec/lossless_videoencdsp : Fix unaligned access
13 mars 2024, par Andreas Rheinhardtavcodec/lossless_videoencdsp : Fix unaligned access
HAVE_FAST_UNALIGNED being true does not imply that
one can simply read from any pointer via *(long*).
It is undefined behaviour in case the pointer is not
sufficiently aligned ; and even if it is, it is (likely)
a violation of the effective-type rules. Fix both
of these by using the appropriate AV_[RW]N macros.Also, the current code used sizeof(long) as if this
were the CPU's native arithmetic size, but this is
not true on 64bit Windows. This has been fixed, too.This affected huffyuv FATE-tests.
Tested-by : Sean McGovern <gseanmcg@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
taking time stamped sequence of images from a video using ffmpeg
11 septembre 2012, par user1662322How should I take time stamped images from a video using ffmpeg ?
for example ;image-0001 --> 0:00:00.0000
image-0002 --> 0:00:01.0000
image-0003 --> 0:00:02.0000
.....I have tried ;
ffmpeg -i input.flv -ss 00:00:00.0000 -r 1 image%4d.jpg
But it seems that using this code, ffmpeg does not take exactly one picture per second and the time of the taken pictures can not be calculated accurately from the image file number.
-
How to stream Windows desktop audio as RTSP/HTTP with ffmpeg ?
3 janvier 2019, par ValyaI’d love to stream desktop audio so I could listen to it in AIMP Android app. The app understands "http" links and I could successfully stream it with VLC HTTP streaming, however I could not get latency lower than 3 seconds.
How can I do the same thing with ffmpeg with lowest latency possible ?