Recherche avancée

Médias (91)

Autres articles (81)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10604)

  • ffmpeg tpad adding delay to start and stop of film

    10 octobre 2020, par Devin Dixon

    In ffmpeg there is the -filter_complex "tpad=stop_duration=20" that adds 20 seconds to back of video/stream, or -filter_complex "tpad=start_duration=20" which adds it to the front.

    


    How can I add it to both ? Something like ffmpeg  -re -i {$file} -filter_complex "tpad=stop_duration=20&start_duration=20" duration does not work, and there is no documentation I can find on using both filters in one command.

    


  • avcodec/libdav1d : add an option to toggle Film Grain

    29 novembre 2018, par James Almer
    avcodec/libdav1d : add an option to toggle Film Grain
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libdav1d.c
  • Is possible to make watermark film with libav without decoding full video ?

    2 août 2018, par hawk.hsieh

    Ther is a small png image and a video film.
    I want to overlay this png image into video film and I did it by libavcodec.
    The CPU loading of this overlay process is extermely high.
    To reduce the performance impact, I have the png overlaid in 10 seconds and then copy stream from old file to new ones after 10 seconds.
    The problem is, the video is ok before 10 seconds with png overlaid video.
    After 10 seconds, the video is stalled and begin to show abnormal green block at top of the screen.
    I figure out the spspps maybe different between the original stream and the transcoded stream. Is this a root to cause the video stalled after 10 seconds ?

    Thank you.