Advanced search

Medias (91)

Other articles (30)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 January 2010, by

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation; Oggz-tools : outils d’inspection de fichiers ogg; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores;
    Binaires complémentaires et facultatifs flvtool2 : extraction / (...)

  • Support audio et vidéo HTML5

    10 April 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 January 2010, by

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier; La génération d’une vignette : extraction d’une (...)

On other websites (2937)

  • ffmpeg generate encoded sequence of videos from playlist

    20 January 2018, by Massimo Vantaggio

    i use ffmpeg to encode my videos to be ready for mpeg dash process:

    ffmpeg -y -i legend.mp4 -c:a copy -c:v libx264 -x264opts 'keyint=48:min-keyint=48:no-scenecut' -r 24 -b:v 1500k -maxrate 1500k -bufsize 1000k -vf "scale=-1:816" out.mp4

    This command line work fine, and i wonder to know how to create a mp4 encoded file like above from a sequence of videos?
    I try to get a faster process, and i think that i don’t need to encode separately all videos and after create a sequence (a big video) with post production software.. I wish to resolve all by a sigle command line,
    Is there a way to give a playlist for input to get only one output video within the sequence of the playlist all with the same encoding assuming that all videos have same frame rate and same resolution?
    Thanks,
    Dan

  • avformat/hlsenc: Add CODECS attribute to master playlist

    19 January 2018, by Karthick Jeyapal
    avformat/hlsenc: Add CODECS attribute to master playlist
    
    • [DH] libavformat/dashenc.c
    • [DH] libavformat/hlsenc.c
    • [DH] libavformat/hlsplaylist.c
    • [DH] libavformat/hlsplaylist.h
  • Hls media playlist request url override

    16 January 2018, by Tomasz Kowalczyk

    Trying to implement hls support on my platform build with laravel. Testing both ffmpeg and AWS Elastic transcoder solutions. The problem is that i’ve got custom url for requesting files for security purposes. That url then returns the hls master playlist, but subsequent request for media playlists has wrong url. This is because the paths in master playlist are not absolute. I tested it with absolute paths and it worked, but I changed the paths manually, can’t see it as an option on AWS Elastic Trancoder, and not tested it yet on ffmpeg package. I’m not really sure what generates the subsequent request for the media playlists? Is it the video player or hls codec/plugin? Can i tinker the original response headers to modify the subsequent requests? Or am I going the wrong way about it?
    Any help would be greatly appreciated.