Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (94)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (7811)

  • how to play blocks one by one with no pops and clicks ?

    5 février 2016, par Stepan Yakovenko

    I have two tags like this :

    <audio src="lub0.mp4"></audio>
    <audio src="lub1.mp4"></audio>

    I want to play them one by one, i.e. .play() first one and when it launches onend event, I’ll .play() the second one. Unfortunately this gives me a pop sound in between. Is there any correct crossbrowser way to do this without click ?

    The files themselves are fine, if I glue them to each other in ffmpeg, sound is perfect.

    Thanx.

  • How to set the same size for the input color as the video size ?

    3 janvier 2021, par Yaroslav Akulov

    I have many videos with different widths and heights on which I need to overlay a random color. And I don't know how to set the same size for the color input as the size of each of all of my videos...

    &#xA;

    The exact color size only works for the video with the same size. But when the queue comes to another video with different width and height the error popping up.

    &#xA;

    enter image description here

    &#xA;

    for %%i in (*.mp4) do ffmpeg /&#xA;-i "%%i" -f lavfi -i "color=random@1:s=624x1110" /&#xA;-hide_banner -y -c:v libx264 -preset slow /&#xA;-filter_complex /&#xA;"[0:v]setsar=sar=1/1[ckout]; /&#xA; [ckout][1:v]blend=shortest=1:all_mode=overlay:all_opacity=0.05[out]" -map "[out]" "output/%%~ni.mp4"&#xA;

    &#xA;

  • I am trying to recode my m4v video files with DRM to regular mp4 so I can play on Android [closed]

    5 novembre 2012, par user1708282

    I have several video files from itunes that are .m4v with normal Apple DRM.

    As my PC (Windows Vista) is authorised to play the video I can play them either through itunes or with VLC

    I know it is possible to do this with commercial software, most of which seems to play the video (on an authorised computer) and then re-encode the output stream. This is the approach I would like to take.

    My problem is that I can't get ffmpeg or Mencoder to play the DRM file... but surely it must be possible if VLC can play the file ???

    The goal is to ultimately play the new file on an Android device, but the re-coding will be done (I assume) on a PC.