
Recherche avancée
Autres articles (56)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (9237)
-
AV1 libaom encoder option aq-mode description
6 juin 2023, par Chinmaey ShendeI could not find the official description for AOM encoding options. There are some documentations available online. However I get following contradicting explanations for aq-mode.
can someone help me with the correct documentation ?


https://api.encoding.com/reference/adv-av1-libaom says the default value for aq-mode is 0 and "ffmpeg -h encoder=libaom-av1" gives default value = -1.


-
ffmpeg output blank image files on CentOS 6.4 [closed]
19 avril 2013, par Juneyoung Oh0I am trying to capture thumbnail images from a video by using ffmpeg.
So I typed command like Below.
ffmpeg -i MyVideo.mp4 -s 480x270 -f image2 -vf fps=fps=1/600 thumb%03d.png
just like what ffmpeg official site suggested.
The length of
MyVideo.mp4
is01:46:03
, So I expected total 10 images from it.(because
fps=fps=1/600
part means 10minute 1piece.)But output is 12 pieces, and especially first one is broken.
When I check it's information in GUI, it says "failed to load information".
-
ffmpeg encoder (h264) example yields invalid video
18 mai 2017, par Jason MI am trying to implement the h264 encoder (no audio) for my c++ program with ffmpeg (3.24). I started out with running the supposed official example but got a unplayable video. When I probed it with my ffmpeg decoder, which works nicely on other h264 videos, it shows that the video has a time_base = 1/1200000, nb_frames = 0, avg_frame_rate = 25 and duration and start_time of large negative numbers.
What may have caused the problem ? Is there other up-to-date encoder examples out there ?