
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (59)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (4546)
-
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. -
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");
-
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 ?