Recherche avancée

Médias (91)

Autres articles (75)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • List of compatible distributions

    26 avril 2011, par

    The 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 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6559)

  • 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.
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 ?

    


  • 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.

    


  • avcodec/vvc/ctu : Simplify code at the end of pred_mode_decode()

    18 mai 2024, par Michael Niedermayer
    avcodec/vvc/ctu : Simplify code at the end of pred_mode_decode()
    

    This simplification assumes that the code is correct

    Fixes : CID1560036 Logically dead code

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vvc/ctu.c