
Recherche avancée
Autres articles (79)
-
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 (10419)
-
Difference between ffmpeg and opencv [on hold]
19 février 2017, par mehdi karimiI tried to use
ffmpeg
on Android but I’ve encountered some problems.
A friend told me I can useOpenCV
orJavaCV
instead offfmpeg
withffmpeg
commands.
Can anybody advice me on how can I useOpenCV
orJavaCV
on Android ? -
what is the difference between time_base and fps in x264 and ffmpeg ?
20 mai 2021, par woderthere is codec parameters
time_base
andfps
in x264, we actually can inferfps
if we havetime_base
, so why x264 provide an extra parameterfps
? It really confuses me, and it seems thatfps
doesn't work if I set both of them. also, ffmpeg encoder context has these two parameters

typedef struct x264_param_t
{
 uint32_t i_fps_num;
 uint32_t i_fps_den;
 uint32_t i_timebase_num; /* Timebase numerator */
 uint32_t i_timebase_den; /* Timebase denominator */
} rc;



-
what is the difference between time_base and fps in x264 and ffmpeg ?
20 mai 2021, par woderthere is codec parameters
time_base
andfps
in x264, we actually can inferfps
if we havetime_base
, so why x264 provide an extra parameterfps
? It really confuses me, and it seems thatfps
doesn't work if I set both of them. also, ffmpeg encoder context has these two parameters

typedef struct x264_param_t
{
 uint32_t i_fps_num;
 uint32_t i_fps_den;
 uint32_t i_timebase_num; /* Timebase numerator */
 uint32_t i_timebase_den; /* Timebase denominator */
} rc;