Recherche avancée

Médias (91)

Autres articles (84)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (9977)

  • ffmpeg compression commands to make diffrent video formats like youtube ?

    9 juillet 2022, par Sahll saharn

    I am trying to make a video streaming clone. suppose i got the raw video and wanted to compress in diff formats and store it into database so what command should i use to convert same video to multiple quality formats like in other streaming platforms 720p , 480p , 360p
suppose our raw file is input.mp4

    


  • How to make ffmpeg write its output to a named pipe

    14 juillet 2018, par Bastian35022

    I know i can make ffmpeg put its output to stdout and stderr using pipe:1 and pipe:2, respectively, as output_file parameter. (Docs)

    But what about named pipes, can i make it write to one ?

    If not, is there a way to redirect the data in stdout to a named pipe in Linux ? (something like ffmpeg <parameters> | pipe123</parameters>)

    This question is a follow-up of this question.

  • FFMPEG make thumbnail and add watermark one command

    27 décembre 2020, par NimaS5

    I need a onc ffmpeg command to first make thumbnail and after this add watermark to video output.

    &#xA;

    ffmpeg -i INPUT -i watermark.png -filter_complex \&#xA;"[1]colorchannelmixer=aa=0.5,scale=iw*30/100:-1[wm];[0][wm]overlay=x=(main_w-overlay_w-5):y=(main_h-overlay_h-5)/(main_h-overlay_h-5),drawtext=fontfile=myfont.ttf: \ text=&#x27;mysite.com&#x27;: fontcolor=white@0.5: fontsize=18: x=w-tw-10:y=h-th-10" -codec:a copy -movflags &#x2B;faststart OUTPUT.jpg OUTPUT.mp4&#xA;

    &#xA;