Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (99)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (5470)

  • Evolution #3962 : Générer des JPEG progressifs

    18 juin 2017, par Michel Bystranowski

    Mmm, ça a l’air un peu plus compliqué qu’au premier abord effectivement. J’ai trouvé cet article qui compare le taux de compression et recommande de ne le faire que pour les fichiers de plus de 10k, sous peine d’obtenir des fichiers plus gros (https://yuiblog.com/blog/2008/12/05/imageopt-4/). Du coup il faudrait s’arranger pour ne cibler que les gros JPEGs.

    Par côté compatibilité des navigateurs ça semble ok pour tous les navigateurs récents (https://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28graphics%29#JPEG_support).

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

  • 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