Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (61)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8848)

  • Can I use ffserver to stream multiple video files from multiple users ?

    4 août 2017, par zeroh7

    First, forgive me for not having good English.

    I learned about ffmpeg and I’m studying it.

    I have a question, but I can not find any related documents on the Internet.

    Here are my questions.

    1. Can I use ffserver to stream multiple video files from multiple users ?

    2. Can I use the ffmpeg command to generate and destroy a feed in server.conf

    please : )

  • Insert frame in video at specific position with ffmpeg

    19 juin 2017, par user2712414

    I’m trying to hold a specific frame of my video for a number of seconds and then resume the video again with ffmpeg.
    For example let’s say that I have a video “movie.mp4” and I want to hold the frame at second 10 for 20 seconds. So I want ffmpeg to create a video that looks like :
    10 first seconds of movie.mp4 -> 20 seconds of the frame -> the rest of movie.mp4

    In resume, I want to insert a frame in the video.
    My video has audio, that’s one of the things that’s giving me a headache.
    Any idea on how to do it ?
    Thank you !

  • Mp3 volume up and down within specific parts Android

    23 mai 2017, par Vivek Bhatt

    I want to alter the volume of an audio file(mp3) within specific parts.

    Eg : In 5-10 sec, 10-15 sec, ... 10% of the original volume of audio and in rest for the part 100% of the original volume of audio.
    I have tried with FFmpeg by the following command but it’s taking to much time if audio file is of longer duration

    ffmpeg -i "input.mp3" -af volume=0.1:enable=’between(t,5,10)+between(t,5,10)’ -preset ultrafast "output.mp3

    Is there any other way around which is bit quick.

    Thanks in advance