Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (66)

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

  • Passer Podcasts en SPIP 3.0

    27 novembre 2012

    Rendre compatible le plugin Podcasts avec SPIP 3.0

    • brancher le plugin (trunk / branches) ;
    • Utiliser paquet.xml ;
    • Utilise podcasts_administrations.php ;
    • Ne plus utilise cfg ni spip_bonux ;
    • tester ;

    ...

  • How to mix srt subtitle in ffmpeg with flv output ?

    15 janvier 2019, par Pir

    I’m trying to mix mkv (video & audio) with str (subtitle) and an output to flv rtmp in ffmpeg, but nothing works.

    This is one of the instructions :

    ffmpeg -re -i video.mkv -f srt -i mysubt.srt -vcodec copy -acodec aac -scodec copy -strict -2 -f flv rtmp ://usr:psw@1.2.3.4:1935/live/myStream

    the result is :

    Blockquote
    Subtitle codec ’subrip’ for stream 2 is not compatible with FLV

    I used Ubuntu server with ffmpeg version 3.4.4-1 16.04.york0

    Or better than... How can I send to rtmp (wowza) a video with external subtitle with ffmpeg ? I have some events and conferences in foreigner language and need mix their subtitle.

    Any ideas ?

    Thanks.

  • Trying to link Mingw-w64 compiled FFMpeg libraries in Visual Studio

    16 juin 2014, par LostBoy

    I’m trying to use the FFMpeg libraries in a Windows application. I use MingW-w64 to compile FFMpeg with static libraries with architecture once with x86 and once with x86_64.
    Currently I’m trying to link the 32bit x86 libraries with my VS2008 application.
    The libraries are added to the library path and VS does not complain about being unable to load a .a file.

    However I get several uneresolved symbol errors like
    ait_rtp_receiver.lib(ait_decoder_lib.obj) : error LNK2001 : unresolved external symbol _av_free

    I import the FFMpeg header files as extern C and I can see the symbols in the .a without the leading underscore.
    What can I do to make the name decoration of Mingw-w64’s gcc and of the VS compiler suite compatible ?