Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (78)

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

  • Use FFmpeg (or sox) to reduce stereo

    24 juin 2019, par Joschua

    The ffmpeg wiki has this method to mix stereo to stereo :

    enter image description here

    ffmpeg -i input.mp3 -af "pan=stereo|c0code>

    How could I do this but reduce the volume of the right part mixed into the left and the left part mixed into the right (diagonal arrows) by 60%, while leaving the volume of both channels as is (downward arrows) ?

    (If this could be done with sox, it be great too.)

  • Implementing hardware accelerated decoding on windows with FFMPEG

    24 juillet 2019, par sacha legrand

    Intel processor incorporates hardware acceleration capabilities for video encoding / decoding.

    I use :

    Intel 5 series HD graphics & Processeur Intel Core i7-620UE

    and/or

    Intel Gen9 HD Graphics Engine & Processor Intel Core i7-6600U

    So wich hardware acceleration should I use (H264, VC1, H265, etc.) to be more efficient ?

    The FFMPEG library provides everything you need to perform decoding.

    We accessed these hardware acceleration features by default ?

    Should I use a specific API or library ?

    I finnally find in
    https://trac.ffmpeg.org/wiki/HWAccelIntro
    It is Libmfx how seems the best for my case (Windows & Intel)

    Am I on the right way ?

    I should explaine all the possibility so if you have any other doc about that it’s could be cool.

    Thank you

  • Stream and control a playlist to RTMP

    20 décembre 2016, par Eight

    I’m currently trying to stream a playlist of files from ffmpeg to an RTMP server.
    I’ve managed to get a single file to be streamed correctly, and (I think) a playlist by using :

    "concat:file1.pm4|file2.mp4|file3.mp4"

    I then tried to use the concatenation method from a txt file they explain here :
    https://trac.ffmpeg.org/wiki/Concatenate

    And was able to get it to work. However I seem to have some problems with controlling it. For example, I have no idea if it is possible to tell ffmpeg to skip this file and play the next one in the list, or to pause the stream at all. I already tested editing the txt file while it is streaming, but that didn’t seem to affect what was already streaming at all.

    Any idea how I can control my stream from the console ? My end goal would be to make the control into a full web interface later, but I’m not even sure if ffmpeg is my best option to do this.

    Any help with ffmpeg or any other options to do this would be greatly appreciated.