Recherche avancée

Médias (91)

Autres articles (26)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (5296)

  • doc : add basic documentation for libdav1d

    20 mai 2019, par James Almer
    doc : add basic documentation for libdav1d
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/decoders.texi
    • [DH] doc/general.texi
  • dsicinav : Clip the source size to the expected maximum

    19 juillet 2013, par Luca Barbato
    dsicinav : Clip the source size to the expected maximum
    

    A packet larger than cin->bitmap_size does not make sense.

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org

    • [DH] libavcodec/dsicinav.c
  • FFMPEG not “cutting” as expected in Android

    30 décembre 2020, par Anees U

    I referred FFMPEG not "cutting" as expected to split video in chunks in below format :

    &#xA;

    00:00:00 - 00:00:01

    &#xA;

    00:00:01 - 00:00:02

    &#xA;

    00:00:02 - 00:00:03

    &#xA;

    00:00:03 - 00:00:04

    &#xA;

    00:00:04 - 00:00:05

    &#xA;

    Here is the command i used :

    &#xA;

    String[] cmd1 = new String []{"-ss", "00:00:00.000", "-i", inputVideoUrl, "-t", "00:00:01.000", "-c:v", "libx264", "-strict", "-2", outputPath};&#xA;&#xA;String[] cmd2 = new String []{"-ss", "00:00:01.000", "-i", inputVideoUrl, "-t", "00:00:02.000", "-c:v", "libx264", "-strict", "-2", outputPath};&#xA;&#xA;String[] cmd3 = new String []{"-ss", "00:00:02.000", "-i", inputVideoUrl, "-t", "00:00:03.000", "-c:v", "libx264", "-strict", "-2", outputPath};&#xA;&#xA;String[] cmd4 = new String []{"-ss", "00:00:03.000", "-i", inputVideoUrl, "-t", "00:00:04.000", "-c:v", "libx264", "-strict", "-2", outputPath};&#xA;&#xA;String[] cmd5 = new String []{"-ss", "00:00:04.000", "-i", inputVideoUrl, "-t", "00:00:05.000", "-c:v", "libx264", "-strict", "-2", outputPath};&#xA;

    &#xA;

    And i use this library :&#xA;https://github.com/teanersener/mobile-ffmpeg

    &#xA;

    implementation &#x27;com.arthenica:mobile-ffmpeg-full-gpl:4.2.2.LTS&#x27;&#xA;

    &#xA;

    When i execute i get the duration starting from beginning of the video all the time. Please suggest what am i doing wrong, i searched and tried changing commands but nothing works.

    &#xA;

    00:00:00 - 00:00:01

    &#xA;

    00:00:00 - 00:00:02

    &#xA;

    00:00:00 - 00:00:03

    &#xA;

    00:00:00 - 00:00:04

    &#xA;

    00:00:00 - 00:00:05

    &#xA;

    Let me share another example to explain my requirement :&#xA;inputVideoUrl contains a video of any length(ex : 5min)&#xA;I want to cut a user selected portion of it(ex first one minute) in the form of 5 split videos.

    &#xA;

    split 1 : 00 sec - 12.0sec

    &#xA;

    split 2 : 12.1 sec - 24.0sec

    &#xA;

    split 3 : 24.1 sec - 36.0sec

    &#xA;

    split 4 : 36.1 sec - 48.0sec

    &#xA;

    split 5 : 48.1 sec - 60.0sec

    &#xA;

    And later i will provide these split videos to a player playlist.

    &#xA;