Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (40)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to documentation

    13 avril 2011

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

Sur d’autres sites (4783)

  • ffmpeg video overlay between not responding to timestamp

    21 novembre 2022, par PiotrK

    Just cant get ffmpeg to overlay png at the desinged time. I tried all the options and its always displaying in wrong times.

    


    import subprocess

subprocess.call([
    'ffmpeg',
    '-y',
    '-i', 'out_1.mp4',
    '-i', 'overlay.png',
    '-filter_complex', "[0:v][1:v]overlay=0:0:enable='between(t,0,0)",
    '-codec:a','copy',
    'out_2.mp4'
])


    


    When I change between(t,0,0) its display in second from 0 to 10. I need this to display in second from 0 to 1 of the video. The video total duration is 50 seconds.
Here is the screen recording to show my problem

    


    https://www.youtube.com/watch?v=ZnFG1F172uU&ab_channel=KevinBestReviews

    


  • Anomalie #3809 (Nouveau) : Impossibilité d’écrire "javascript :" ou "data :" dans le texte d’un article

    21 juillet 2016, par Eric Beliveau

    SPIP 3.1.1 [22913]

    Il est impossible d’écrire "javascript :" ou "data :" dans le texte d’un article, que ce soit dans une balise

    , <cadre> ou simplement sans balise. Lors de l'enregistrement, une boîte rose avec le texte suivant apparaît : "Oups. Une erreur inattendue a empêché de soumettre le formulaire. Vous pouvez essayer à nouveau.".

    Voici un exemple qui ne fonctionne pas :

    </cadre>
    javascript:void(location.href=%22https://ezproxy.bibl.ulaval.ca/login?url=%22+location.href) 
    

    ou simplement :

    javascript :

  • ffmpeg encoding with VP8 producing bad looking video

    25 décembre 2017, par Radu

    I am working at a time lapse program that invokes ffmpeg via system() to encode a video from a sequence of JPGs. The user can chose a few options, including the compression codec.
    I am getting very good results when using libx264 and the mjpeg encoder. I am getting so and so results with VP9, and I am getting some horrible results with VP8.

    I am invoking ffmpeg like so : ffmpeg.exe -framerate 12 -i "./output/img_%05d.jpg" -dst_range 1 -color_range 2 -c:v libvpx -b:v 0 -threads 8 -speed 2 -crf 8 "./output/video.webm"

    I uploaded a sample to youtube : https://www.youtube.com/watch?v=eG2jxzR3Uxs (you can see the really bad frames after the 9 seconds mark.

    Any idea what I am doing wrong ?