
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (92)
-
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 ;
-
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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7940)
-
Docker ffmpeg exit code 1
9 septembre 2021, par Alex KhonkoI install docker image :


FROM jrottenberg/ffmpeg:4.0-alpine

RUN apk update && apk upgrade
RUN apk add php7

EXPOSE 8082

CMD sh -c 'php7 -S 0.0.0.0:8082 -t /www/public/'
ENTRYPOINT []



and have index.php and audio in the same folder.


After, I call this :


$out = $resCode = null;

$command = "ffmpeg -i /www/public/audio_2021-09-09_12-53-47.ogg -vn -ab 128k -ar 44100 -y /www/public/test.mp3";
exec($command,$out,$resCode);



and resCode is 1, output is empty string.


What can be the problem, or how to fix it ?


-
I would make the fadeout this code go to the volume 0.1 is possible
18 décembre 2015, par wildsonI would make the fadeout this code go to the volume 0.1 is possible ?
exec("ffmpeg -i audio.mp3 -af 'afade=t=out:st=30:d=5' out.mp3");
-
C++ code for ffmpeg terminal command [on hold]
17 janvier 2018, par KingWealthPlatform - Linux
I created a v4l2loopback device by following the guide.
The following terminal command is used to write the video testsrc.avi into the loopback device /dev/video1ffmpeg -re -i testsrc.avi -f v4l2 /dev/video1
Now the question is, I want the c++ code for the above mentioned to terminal comment.
Note - c++ code for
-f v4l2 /dev/video1
is enough too.The actual program and logic is really long and irrelevant to explain.
The problem is, i want to write ffmpeg avframes into the loopback device but using fwrite is giving disturbed output.