Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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, par

    MediaSPIP 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, par

    Le 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 Yeamin

    I 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 Dalot

    Bonjour
    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 Herz

    I'm trying to combine an image with an audio file and convert them to mp4.&#xA;I found this command line and I used it. It works perfectly.

    &#xA;

    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

    &#xA;

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

    &#xA;

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

    &#xA;

    import ffmpeg&#xA;&#xA;input_still = ffmpeg.input("image.jpg")&#xA;input_audio = ffmpeg.input("audio.wav")&#xA;&#xA;(&#xA;ffmpeg&#xA;.concat(input_still, input_audio, v=1, a=1)&#xA;.output("output.mp4")&#xA;.run(overwrite_output=True)&#xA;)&#xA;

    &#xA;

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

    &#xA;

    but how to do it ?

    &#xA;