Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (64)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (10861)

  • How would i create a bash script to convert .wav files from folder [A] to mp3 format . then move them to new folder [mp3folder]

    14 septembre 2016, par Hayden Beasley

    I want this Script to run in a loop every hour. The main goal is to convert the wav files that I export to my VM share folder when using Ableton.

    Messy Idea of what I want but need lots of help with

    for file in /mnt/hgfs/VMshare/transfer/*

    do

    if ["$file" == "/mnt/hgfs/VMshare/transfer/*.wav]

    then


    find -name "*.wav" -exec ffmpeg -i {} -acodec libmp3lame -ab 128k {}.mp3 \;

    else
    echo "NO WAV TO CONVERT"
    mv /mnt/hgfs/VMshare/transfer/*.mp3 /root/Desktop/MP3Music/
  • IOS desktop streaming

    13 mars 2014, par user3415469

    I understand that you can use AirPlay to wirelessly stream your iPad desktop to an AppleTV. Also, there is a method to use a Raspberry PI and "rPlay" to do the same. I am not trying to reinvent the wheel, but I want to explore if there are other options to capture the iPad screen (a classroom full of iPads actually) and send it WIRELESSLY to an "aggregator" attached to an overhead projector.

    My thoughts would be to use ffmpeg or .h264 somehow and send it to the "aggregator". I apologize in advance if this is a silly or uninformed question. It is important the iPad not be jailbroken...

  • Extract final frame from a video using ffmpeg

    14 mai 2020, par Saavestro

    I know how to extract the first frame by using

    



    ffmpeg -ss 00:00:00 -i input.mp4 -vframes 1 -q:v 31 output.png

    



    Here, the option -ss requires to know the exact time of the frame to extract.

    



    I would like to have the final frame of any .mp4 without knowing the exact final time of the video.

    



    Is there a way to achieve this ?