Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12374)

  • Revision 5973 : Augmenter la taille des select multiples ici à un maximum de 20 en ...

    2 octobre 2011, par kent1 — Log

    Augmenter la taille des select multiples ici à un maximum de 20 en fonction du nombre d’articles disponibles

  • Revision 5973 : Augmenter la taille des select multiples ici à un maximum de 20 en ...

    2 octobre 2011, par kent1 — Log

    Augmenter la taille des select multiples ici à un maximum de 20 en fonction du nombre d’articles disponibles

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