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)

  • Output file #0 does not contain any stream android

    26 décembre 2018, par Gaurav Mandlik
    String cmd[] = {"ffmpeg -loop 1 -y -i " + imagePath + " -i " + newAudioPath + " -shortest " + outputVideo};

    I want to create video from compile one image and one audio,

    Here i pass image and audio path from device file location absolute file and last one pass the location needed to create video path.

    Am i doing wrong ? then guide me.

    Thanks.

  • Compile ffmpeg for WinRT with libvpx ?

    7 janvier 2018, par Sean O'Neil

    Following this guide :
    https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT

    Can anyone tell me if it’s possible to build and include libvpx into this ?

  • Add watermark to a video using ffmpeg in python

    22 décembre 2016, par AlphaWolf

    I want to add watermark for my video, with ffmpeg i found command :

    ffmpeg -i input.mp4 -i watermark.png -filter_complex "overlay=1500:1000" output.mp4

    But it run in cli, not in python code(i cannot found). So have anyway to embbeded it to python code(not call in subprocess) ?
    edit : i found pyffmpeg but no guide to use it too.