Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (97)

  • 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (11644)

  • What transcoding services can people recommend ? [closed]

    3 mai 2013, par Adrian Lynch

    A client of mine needs to accept a bunch of different video files and convert them to FLV. My experience with FFMEG on a previous project has highlighted that there will be some troublesome files.

    Depending on the price my client will pay for a professional service.

    What are people using and how are you finding the service ?

    Thanks.

  • Too small ffmpeg rtsp decoding buffer

    30 janvier 2013, par gregoiregentil

    I'm decoding rtsp on Android with ffmpeg, and I quickly see pixelization when the image updates quickly or with a high resolution :

    working decoded frame

    non working decoded frame

    After googling, I found that it might be correlated to the UDP buffer size. I have then recompiled the ffmpeg library with the following parameters inside ffmpeg/libavformat/udp.c

    #define UDP_TX_BUF_SIZE 327680
    #define UDP_MAX_PKT_SIZE 655360

    It seems to improve but it still starts to fail at some point. Any idea which buffer I should increase and how ?

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