
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (12798)
-
Android - Fatal crash 'signal 11 (SIGSEGV), code 1 (SEGV_MAPERR) strcmp'
23 juillet 2021, par Md YeaminI am using 'mobile-ffmpeg' from here in one of my android project. Recently I'm seeing a lot of native crash as following :


signal 11 (SIGSEGV), code 1 (SEGV_MAPERR)
strcmp



Stacktrace :


*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
pid: 0, tid: 0 >>> com.example.myapp <<<

backtrace:
 #00 pc 000000000007f758 /apex/com.android.runtime/lib64/bionic/libc.so (strcmp+24)
 #00 pc 00000000002d3b10 /data/app/com.example.myapp-BkrKS2bGJO8lBYjvIITTkw==/lib/arm64/libavcodec.so



I am completely clueless about how to debug this.


-
Anomalie #3305 (Nouveau) : Balise fermée automatiquement dans un bloc code
21 octobre 2014, par Franck DalotBonjour
Je viens de me rendre compte d’un bug sur contrib (le bug est également présent sous SPIP 3.0.18-dev [21616]) mais semble absent sous spip 3.1
Quand une personne répond dans le forum en entourant par "code"<necessite version="[2.0.0;2.1.99]"></necessite>
La prévisalisation est ok, par contre après avoir valider le message, cela écris :<necessite version="[2.0.0;2.1.99]"></necessite>
Cordialement, Franck -
How can I convert an FFmpeg command line to python code
1er janvier 2023, par Ali HerzI'm trying to combine an image with an audio file and convert them to mp4.
I found this command line and I used it. It works perfectly.


ffmpeg -loop 1 -i 01_Prologue.png -i 01_Prologue.wav -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest out.mp4


I want to use python because I want to combine multiple images with multiple audio files


I used this code to combine the same audio and image files but it gave me a blank video file.


import ffmpeg

input_still = ffmpeg.input("image.jpg")
input_audio = ffmpeg.input("audio.wav")

(
ffmpeg
.concat(input_still, input_audio, v=1, a=1)
.output("output.mp4")
.run(overwrite_output=True)
)



I'm guessing that is because I didn't add the filters to the code, and the problem happened.


but how to do it ?