Recherche avancée

Médias (91)

Autres articles (105)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Evolution #4319 (Fermé) : Embarquer aussi jquery.min.js

    11 février 2021, par cedric -

    Il y a plusieurs sujets :
    - le minifieur buggait souvent sur les fichiers déjà minifiés, mais c’est résolu normalement
    - le compresseur pourrait reconaitre et utiliser les fichiers .min.js
    - mais ça veut dire double maintenance et risque que les utilisateurs modifient le fichier .js et pas le .min.js et s’etonnent que ça marche pas, ou alors on va devoir ajouter des conditions de date etc..
    - de toute façon il faudrait enlever jquery du core :p

    je ferme ici donc, car je pense que c’est beaucoup de complexite pour peu d’avantage au final

  • piping in ffmpeg in c#

    6 septembre 2013, par user846281

    I have a directory full of images. I convert these images into a flv file. Then i convert that flv into a mp4 file (i have my reasons to do this). I can achieve this OK using the process method in c#. Currently i call this twice (with different arguments) First call it converts the images to flv and the second call converts that flv to mp4. is there a way to do this in 1 process and not actually write the flv to disk ?

    For example in sudo code :

    ffmpeg -allmyjpgs this.flv | final.mp4
  • ffmpeg : overlaying two videos is deliting audio from one

    27 octobre 2022, par shish

    i'm trying to overlay two videos with ffmpeg, but in the output there is only the audio of the first video.
Using

    


    ffmpeg -i screen.mkv -vf "movie=webcam.mp4, scale=600: -1 [inner]; [in][inner] overlay = main_w - (overlay_w + 10) : main_h - (overlay_h + 10)" output.mp4


    


    from cmd, in the final output i have only the audio from the first video specfied (screen.mkv).
how can i solve ?