Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (88)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • How to convert YUV420SP to YUV420P using ffmpeg sws_scale or other efficient method ?

    3 septembre 2011, par limitfan

    Thanks in advance. Any suggestion will be appreciated.

  • FFMPEG - 4K HDR - MPEG - BIG FILE convert

    8 mars 2018, par Ian Lodanko

    I would like to ask how through ffmpeg to achieve the smallest file size and yet keep the best quality [LIKE Youtube convert].

    Currently used :

    ffmpeg -i "/home/sampe_4K_HDR.mkv" -map 0:00 -c:v libx264 -preset ultrafast -b:v 66718k -pix_fmt yuv420p10le -x264-params "colorprim=bt2020:transfer=smpte2084:colormatrix=bt2020nc" -crf 18 -c:a libfdk_aac -profile:v baseline -level 3.0 "/home/sampe_4K_HDR.mp4"

    But the size of the video after conversion is very large, I would like to preserve as much as possible the quality of the original video and get the smallest possible video size.

    Could you please advise ? Write some examples of how to get better with smaller sizes ? Thank you in advance and I apologize for my English in advance.

  • creating mp4 url from m3u8 url from ffmpeg

    17 mai 2016, par user3440716

    I have a m3u8 url :

    http://esioslive6-i.akamaihd.net/hls/live/202874/AL_P_ESP1_INTER_ENG/playlist_1000.m3u8

    and i am trying to convert this link to mp4 in url form.

    what i am trying :

    ffmpeg -i  http://esioslive6-i.akamaihd.net/hls/live/202874/AL_P_ESP1_INTER_ENG/playlist_1000.m3u8 -c copy -bsf:a aac_adtstoasc http://esioslive6-i.akamaihd.net/hls/live/202874/AL_P_ESP1_INTER_ENG/output.mp4

    is it possible ?

    code which i am trying :

    <?php
    $i = "ffmpeg -i  http://esioslive6-i.akamaihd.net/hls/live/202874/AL_P_ESP1_INTER_ENG/playlist_1000.m3u8 -c copy -bsf:a aac_adtstoasc http://esioslive6-i.akamaihd.net/hls/live/202874/AL_P_ESP1_INTER_ENG/output.mp4";

    ?>








    <video controls="controls" tabindex="0" autoplay="autoplay" loop="loop">
    <source src="&lt;?php">></source></video>

    I am new and I also saw this post FFMPEG mp4 from http live streaming m3u8 file ? but i dont understand why something is not happening.