Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (111)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (8046)

  • 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) ?