Recherche avancée

Médias (91)

Autres articles (64)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (14673)

  • Add an animated image to a video with FFMPEG

    3 juin 2019, par Wessam Sharaf

    I have a video named "input.mp4" and an image named "input.png", and I need an FFMPEG command to add the image to the video such that :
    * The image’s upper left point locates at position (image_x, image_y).
    * The image fades in the first t1 seconds and remains on the screen for t2 seconds and fade out till it disappears for t3 seconds. Meaning that t1 + t2 + t3 = total animation duration.

  • What does 'dash' option in ffmpeg command do ?

    29 janvier 2020, par Hyldrean

    What is the effect or meaning of the -dash option in a ffmpeg command (extracting a track for DASH streaming) ? E.g this one :

    ffmpeg -i in.video -vn -acodec libvorbis -ab 128k -dash 1 audio.webm

    I can’t find anything about it in the ffmpeg documentation.

  • batch file for encoding videos with ffmpeg - "variable" : %%a

    8 juin 2015, par labrat

    what is the meaning of ’%%a’ and ’%% na’ in this expression : http://www.pasteall.org/58875 ?

    for %%a in ("*.*") do ffmpeg -i "%%a" "newfiles\%%~na.mp4"pause

    I want to batch encode a couple of video files. all are in the same folder with nothing else in it. I found explanations which tell that it is a variable. but for what does a variable like this stand ?

    working on win 7 ult 64bit.