Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (85)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (4399)

  • Which library does Youtube use to process videos on their server ?

    25 janvier 2020, par Ali Raza

    I want to know which library/component does Youtube use to process videos amazingly fast on their server ? I am using FFMpeg to process my video right now but it takes much time to process and create different qualities using bitrate.

    Are there any better alternatives to FFMpeg that can process videos faster like youtube ?

  • Combining sampled videos from multiple sources using ffmpeg

    4 juin 2016, par Mrunal Gawade

    If I have two videos shooting the same subject but from different angles, and then I want to create a single video, but the combination is not just concatenation but a time lined sample linearly from each of the video to create the same time line output video. Is it possible ?

    For e.g. if both videos were shot for 1 minute each. then when I combine I want to combine 0-15 secs from 1st then 15-30 secs from second, then 30-45 from 1st, then 45-60 from second video. to create a 1 minute video.

    Also as a generic case if above is possible, the time sample need not be uniformly distributed but random from each videos, as long as the total clips add upto original shoot time.

    As a more generic case if above is possible, extending it to more than two video sources, lets say 3 videos combined in the above manner in a random time clips to create a single video.

    many thanks
    Mrunal

  • Android - concatenate two videos

    4 décembre 2016, par Marc Plano-Lesay

    I’m trying to concatenate two videos on Android. I’m already using ffmpeg for other needs, but I’m using halfninja’s one, which is only 0.9. The 0.9 one doesn’t allow the following ways to do it :

    // filter_complex isn't recognized
    vk.run(new String[] {
           "ffmpeg",
           "-i",
           inputFile1,
           "-i",
           inputFile2,
           "-filter_complex",
           "'[0:1] [0:0] [1:1] [1:0] concat=n=2:v=1:a=1 [v] [a]'",
           "-map",
           "'[v]'",
           "-map",
           "'[a]'",
           outputFile
    });

    // Or, after converting the two videos to ts, trying to merge them: concat:file1.ts|file2.ts: No such file or directory
    vk.run(new String[] {
           "ffmpeg",
           "-i",
           "'concat:" + ts1 + "|" + ts2 + "'",
           "-vcodec",
           "copy",
           "-acodec",
           "copy",
           "-absf",
           "aac_adtstoasc",
           output
    });

    The third thing I tried is to use the concat demuxer explained here, which isn’t recognized with ffmpeg 0.9 either.

    Is there any way to concatenate two videos on Android with ffmpeg 0.9 (or another library) ?