Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (15122)

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