Recherche avancée

Médias (91)

Autres articles (12)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (3143)

  • How can we use ffmpeg 'amix' and 'concat' in single command

    23 novembre 2022, par Manikanta Ottiprolu

    I am currently mixing two audio files using amix, here is my command

    


    ffmpeg -i point_1.mp3 -i point_2.mp3 -filter_complex amix=inputs=2:duration=shortest:dropout_transition=0 output.mp3


    


    and I want to concat another audio file to my output.mp3. Can any one please help me to complete this in single command.

    


  • Combining two ffmpeg commands into single command

    18 juin 2019, par 4k wallpaper

    I want to combine two ffmpeg commands to single ffmpeg command.

    exec("ffmpeg -i mimic/api/video/1560754087943.mp4 -i logo.png -filter_complex"." overlay=20:20"." topleft.mp4");



    exec('ffmpeg -i topleft.mp4 -vf drawtext="fontfile=ARIBLK.ttf: text=sonukh3921: fontcolor=white: fontsize=20: x=20: y=65" output_video.mp4');

    Is this possible to use the output from the first command for the second line, without using two separate commands ?

  • FFMPEG Add 2 watermarks to an Image using single command

    20 décembre 2019, par thatman

    How to add 2 watermarks to one image using ffmpeg. This is the command I am using for adding single watermark

    ffmpeg -i actual-image.jpg -i watermark.png -filter_complex "overlay=5:5"  output.jpg

    But i am not able to add 2 arguments for this. Thanks for help in advance