Recherche avancée

Médias (91)

Autres articles (61)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5497)

  • Has anyone used the speech driven animation and can you make it work ?

    16 août 2020, par hopw Jan

    I'm talking about this repo. I installed all the dependencies but I can't make it work. Any help is highly appreciated ( :

    


    I'm running python 3.7.5.

    


    This is my code :

    


    import sda
import scipy.io.wavfile as wav
from PIL import Image

va = sda.VideoAnimator(gpu=0, model_path="crema")# Instantiate the animator
fs, audio_clip = wav.read("example/audio.wav")
still_frame = Image.open("example/image.bmp")
vid, aud = va(frame, audio_clip, fs=fs)
va.save_video(vid, aud, "generated.mp4")


    


    Sadly it doesn't seem to work and it gives me this error :

    


    Warning (from warnings module):&#xA;  File "C:\Users\Alex\AppData\Local\Programs\Python\Python37\lib\site-packages\pydub\utils.py", line 170&#xA;    warn("Couldn&#x27;t find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)&#xA;RuntimeWarning: Couldn&#x27;t find ffmpeg or avconv - defaulting to ffmpeg, but may not work&#xA;Traceback (most recent call last):&#xA;  File "C:\Users\Alex\Desktop\test\test.py", line 8, in <module>&#xA;    vid, aud = va(frame, audio_clip, fs=fs)&#xA;NameError: name &#x27;frame&#x27; is not defined&#xA;</module>

    &#xA;

    Spent about 2 hours and I can't do anything, I'm out of ideas.&#xA;If you take the time to help me thank you from the bottom of my heart.

    &#xA;

  • Node.js ffmpeg creating a mp4 video from 2 or more jpg images

    9 mai 2020, par programmerRaj

    I am making a video animator that first generates .jpg images from an html canvas tag and then use the images as frames for the video. I am using ffmpeg to do the video generating.

    &#xA;&#xA;

    It works when only using 1 image

    &#xA;&#xA;

    const ffmpeg = require(&#x27;fluent-ffmpeg&#x27;);&#xA;ffmpeg.setFfmpegPath("C://Program Files/ffmpeg/bin/ffmpeg.exe");&#xA;&#xA;var command = ffmpeg();&#xA;&#xA;command&#xA;    .input("./test.jpg")&#xA;    .save("./test.mp4")&#xA;    .outputFPS(1)&#xA;    .on(&#x27;end&#x27;, () => {&#xA;        console.log("done");&#xA;    });&#xA;

    &#xA;&#xA;

    I got it to make a mp4 video that is 1 second long with this code, but this is only with one image/frame.

    &#xA;&#xA;

    What I'm trying to do (2+ images)

    &#xA;&#xA;

    const ffmpeg = require(&#x27;fluent-ffmpeg&#x27;);&#xA;ffmpeg.setFfmpegPath("C://Program Files/ffmpeg/bin/ffmpeg.exe");&#xA;&#xA;var command = ffmpeg();&#xA;&#xA;command&#xA;    .input("./test.jpg")&#xA;    .input("./another.jpg")&#xA;    .save("./test.mp4")&#xA;    .outputFPS(1)&#xA;    .frames(2)&#xA;    .on(&#x27;end&#x27;, () => {&#xA;        console.log("done");&#xA;    });&#xA;

    &#xA;&#xA;

    This doesn't work as it generates the same video as the first example. Instead of showing one image for the first second and another image for the second second, it generates a one second long video that only has the first image.

    &#xA;&#xA;

    Can someone please show how to fix this ?

    &#xA;

  • avcodec/jpeg2000htdec : Consolidate jpeg2000 spec bits in jpeg2000_bitbuf_refill_backw...

    2 août 2023, par Michael Niedermayer
    avcodec/jpeg2000htdec : Consolidate jpeg2000 spec bits in jpeg2000_bitbuf_refill_backwards()
    

    Code should make more sense now

    Fixes : out of array access
    Fixes : 58299/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-6627570448465920

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Pierre-Anthony Lemieux <pal@sandflow.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/jpeg2000htdec.c