Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (30)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6700)

  • Grunt : Update default task to run concat first

    25 janvier 2014, par jzaefferer
    Grunt : Update default task to run concat first
  • Is it possible to get ffmpeg-concat running in windows ?

    7 décembre 2018, par jem

    I’d like to use ffmpeg-concat running on a Windows server as a CLI. I’ve tried using nexe and pkg to creat an executable but both come up with (different) errors when I try it. This is my first foray into node.js, so apologies for noob questions.

    Has anyone else managed to do this, or can point me to a Windows build somewhere ?

  • How to trim single ts file and concat with everything after with ffmpeg

    22 mai 2019, par user3321348

    I have a number of ts files (h264, AAC) and I want to quickly cut out a portion without re-encoding more than the first chunk and last chunk. Then I want to concat them back together and make an mp4.

    So I have 1.ts - 100.ts and each chunk is roughly 10 seconds. I want to cut from 1:05 to 10:05 minutes. I have code that finds the first and last ts file needed (let’s say it’s 11.ts for 1:05 and 61.ts for 10:05)

    I run this to trim the first ts file to only the portion I need :

    ffmpeg -i 11.ts -ss 5.0 -c:v libx264 -c:a aac 11.new.ts

    Roughly the same thing happens to 61.ts to create 61.new.ts.

    Now I want to concat 11.new.ts, 12.ts, 13.ts, ..., 61.new.ts into an mp4 without having to re-encode every single chunk. Currently, the resulting video plays the remaining portion of the first chunk just fine. After that point the audio continues but there’s no more video. I’m sure that has something to do with start time offsets that’s in the metadata of each ts file, but I can’t figure out how to solve that. Is this even possible ? And is this the best way to quickly do something like this ?