Recherche avancée

Médias (91)

Autres articles (33)

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

  • is there any functional build of ffmpeg to android

    11 mai 2018, par Rafael Lima

    I’ve searching the last 3 days for a usable API for android access ffmpeg.
    Since FFMpeg group doesn’t release an official lib for android I found several paralel projects trying to build it.

    So it brings me to my nightmare that is called compile.

    i’ve followed all these tutorials : https://trac.ffmpeg.org/wiki/CompilationGuide/Android

    And others found in different places. but none of them build

    NONE OF THEM IS LESS THAN 3 YEARS OLD

    Sorry for the caps, but it is frustrating... no ffmpeg build projects I found deal with nkd above 14 and google doesn’t keep in archive nkds older than that, so even if i agree with get all outdated libraries source i cant reproduce de compiler i cant download the same ndk...

    The only api i manage to download with a functional build of ffmpeg probably was compiled without some codecs, because on my tests i can only handle few types of videos

    ===============================================================

    The question is, does anyone know an actual, stable, project for building ffmpeg to android ?

    I’m even willing to pay in order to get a working version of it

  • avconv/ffmpeg command to encode nice full hd webm for chrome

    18 mars 2016, par xavier.seignard

    People from the artistic direction gave me big .mov and .mp4 that I need to put on a web app, but so far they are so huge that decoding/rendering is kinda bad on chrome (this is a chrome only experience since it will run on electron at the end).

    I’d like to re-encode them in .webm since it seems to have the best support in chrome.

    But I’m kinda lost on how to re-encode them without significative visual quality lost.

    For now I use (taken from https://trac.ffmpeg.org/wiki/Encode/VP8)

    ffmpeg -i myVid.mp4 -c:v libvpx -crf 8 -b:v 2M -c:a libvorbis myVid.webm

    So, does anyone have a nice avconv/ffmpeg command that will produce nice and easy to render .webm ?

    Regards.

  • gdb and ffmpeg compilation

    6 octobre 2019, par toutou0091

    I installed ffmpeg using the instructions of the web site ffmpeg : http://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide, compilation works fine, they generates a file "ffmpeg_201207131721-git-1_amd64.deb " then, I excute

    sudo dpkg-i ffmpeg_201207131721-git-1_amd64.deb

    When I excute the command

    ffmpeg -i -f toto.flv mp3-vn-acodec copy new_video.mp3

    file "new_video. mp3" is well established. I would like to know what is the command "gdb" that I could use to find the file that have been consulted when i run the command ffmpeg -i -f toto.flv mp3-vn-acodec copy new_video.mp3

    Thank you in advance

    Toufik