Recherche avancée

Médias (91)

Autres articles (75)

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

  • How to make doppler effect on audio with ffmpeg [duplicate]

    3 janvier 2019, par Adam Estel

    This question already has an answer here :

    How can i make the doppler effect on audio with ffmpeg.I mean : Sound run from left to right and opposite, just like this video :
    https://www.youtube.com/watch?v=j35K4QC_9bM
    I research ffmpeg for a while but I can’t firgure the audio filter i can start with
    Thank you for helping me
    Have a nice day.

  • How to create video with dynamic pictures like Facebook Friend's Day video

    21 février 2019, par Vinicius

    How to create a video with pictures from a user just like Facebook does with their Facebook Friend’s day video ?

    Example : https://www.youtube.com/watch?v=mNWJ_XxfQfU

    The intention is to generate this sort of video with images that a visitor will upload to a website. FFMPEG does support images animation but it seems that a bit of 3d animations like the above needs ages to be done with FFMPEG. I wonder if there is an alternative to FFMPEG that can generate this sort of animations, or maybe a software like After Effects that can either generate a template that can be used on ffmpeg (or any command line alternative) or has its own command-line interface that can be executed in a linux machine to do such thing.

    Basically, the user would upload the pictures, the server would crop them to have the same size and then it would convert it to a video like the one mentioned above.

  • c# using pipes to get output stream

    1er janvier 2017, par lilscarecrow

    I am trying to pipe youtube-dl output to ffmpeg as input, but cannot seem to get the piping part to work. In normal cmd, I can do something like

    C:\YT\youtube-dl.exe -o - https://www.youtube.com/watch?v=L4aLQ0ki9Tk | ffmpeg -i pipe:0 -f asf pipe:1

    but in c# this doesn’t work. Currently, I have c# create 2 processes :

    one for youtube-dl

    C:\YT\youtube-dl.exe -o - https://www.youtube.com/watch?v=L4aLQ0ki9Tk

    and another for ffmpeg

    ffmpeg  -i {yt.StandardOutput} -f s16le -ar 48000 -ac 2 pipe:1

    The problem is with the {yt.StandardOutput} (where yt is the process name of the youtube-dl process and -i specifies the input file/stream). Using pipe:0 doesn’t work either and I am not sure how to link the piped output of the first to the input of the second.