Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (53)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (7442)

  • the ffmpeg python library doesn't work on heroku

    24 mars 2020, par Androeed Hack

    There is a python application (3.6.10) on Heroku. The app has functions for playing music in voice chat when using the FfmegAudio module. When calling the command, it returns an error :

    ...
    raise CommandInvokeError(exc) from discord.ext.commands.errors ... AttributeError 'NoneType' object has no attribute 'stop'

    My app has a buildpack package https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git
    Localy everthing works.

  • fluent-ffmpeg filePath to blob

    10 avril 2020, par J D

    The fluent ffmpeg library generates a screenshot of a given image/video, and returns a file path to that screenshot. I'm wondering if it is possible to get the blob/file object of that screenshot from the library directly ? Instead of having to reading it back in and converting to blob.

    


  • simple loop saying no file found terminal

    29 mai 2021, par Frodo Baggins

    I have this command which I am trying to find all movie files in all directories, convert them, and remove the original, within all sub directories. It displays the file names but it returns no such file found.

    


    for oggfile in "$(find . -iname '*.mp4' -or -iname '*.avi' -or -iname '*.mov')"
do
ffmpeg -i ${oggfile} -b:a 320000 -vcodec libx264 ${oggfile}_newCompressed.mp4
rm $oggfile
done ```