Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (97)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (12219)

  • How to add custom thumbnail to a .mp4 file using ffmpeg

    16 février 2019, par cooder_one

    I am trying to get a command which adds a .png or .jpeg image as a thumbnail to a video using ffmpeg in C#.net.

    Everywhere I searched, it explains how to get a frame from inside a video while I want to use a specific image (e.g : A logo file) on video/Bunch of videos.

    This is what i Got so far, and it’s not working. It’s just removing the Default Thumbnail.

    ffmpeg -i INPUT.mp4 -i IMAGE.png -acodec copy -vcodec copy -map 0 -map 1:0 OUTPUT.mp4

    Is this even possible using ffmpeg.
    If yes, then please guide me towards the right direction.

  • Recording streams audio with ffmpeg for Cloud Speech-to-Text

    25 novembre 2019, par Ernesto Pariona Diaz

    Goodnight

    I am trying to record audio with the following features :

    codec : flac
    sampling rate : 16000hz

    I am testing with the following line of code :

    ffmpeg -t 15 -i http://198.15.86.218:9436/stream -codec:a flac -b:a 16k example.flac

    But when reviewing the output file, I get the following :

    codec : flac
    sampling rate : 44000hz

    I could guide the correct use of ffmpeg options.

  • Combining an audio file with video file in python

    3 février 2015, par Fahadkalis

    I am writing a program in Python on RaspberryPi(Raspbian), to combine / merge an audio file with video file.

    Format of Audio file is WAVE
    Format of VIdeo file is h264

    Audio and video already recorded and created at same time successfully, I just need to merge them now.

    Can you please guide me on how do I do that ?