
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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.
Sur d’autres sites (10067)
-
checkasm : x86 : post commit review fixes
22 décembre 2015, par Janne Grunau -
ffmpeg taking so much time to extract frames from mpeg-ts file
19 septembre 2016, par Syed AzaruddinI got a problem from one mpeg-ts video. Actually it was created by some one else and even I don’t know how they are created. The problem is that, ffmpeg is taking so much time to decode all frames from the mpeg-ts video. The command I used for this operation is...
ffmpeg -i shame-run.mov -r 24/1 test/output%d.jpg
Actually my application is integrated with ffmpeg v2.1.1. and I had a code for detecting black frames in a mpeg-ts video. Here, my code is not able to detect all black frames from ffmpeg for this mpeg-ts video. So, I taken standalone ffmpeg of same version as mentioned above and decoded standalone. But, it is taking so much time i.e., it is taken half an hour for decoding 1 min duration video.
So, is there any reason is that ffmpeg not able to extract as fast as required, and is there any reason that video got some errors.
-
What's the proper way to use Docker multi-stage builds to copy a package installed with apt ?
25 décembre 2023, par Leo JiangI have
apt-get -y install ffmpeg --no-install-recommends
in my dockerfile and it's taking up more than half the image size (500MB). I read somewhere that I can try using Docker multi-stage build to reduce the file size.

Am I supposed to do something like :


FROM node:20.9.0-slim
RUN apt-get -y update \
 && apt-get -y install ffmpeg --no-install-recommends \
 && apt-get clean

FROM node:20.9.0-slim
COPY --from=0 /usr/bin/ffmpeg
COPY --from=0 /usr/bin/ffplay
COPY --from=0 /usr/share/ffmpeg/ffprobe.xsd
COPY --from=0 /usr/share/lintian/overrides/ffmpeg



I ran
dpkg -L ffmpeg
to see that ffmpeg has 30 files. Am I supposed to copy over all of the files or is just/usr/bin/ffmpeg
enough ? If I have to copy all of them, it seems like it'll break easily.