Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (83)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (15127)

  • aarch64 : hevc : Split the qpel_*_hv functions into two parts

    21 mars 2024, par Martin Storsjö
    aarch64 : hevc : Split the qpel_*_hv functions into two parts
    

    The first horizontal filter can use either i8mm or plain neon
    versions, while the second part is a pure neon implementation.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/hevcdsp_qpel_neon.S
  • aarch64 : hevc : Split the epel_*_hv functions into two parts

    12 mars 2024, par Martin Storsjö
    aarch64 : hevc : Split the epel_*_hv functions into two parts
    

    The first horizontal filter can use either i8mm or plain neon
    versions, while the second part is a pure neon implementation.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/hevcdsp_epel_neon.S
  • FFmpeg : Split video and preserve input source time

    27 janvier 2015, par Arun

    I’m trying to split a large video into chunks with the below command based.

    ffmpeg -i input.avi -vcodec copy -an -ss 0 -t 60 output-1.avi
    ffmpeg -i input.avi -vcodec copy -an -ss 60 -t 60 output-2.avi

    and so on.

    I need to preserve the frame timestamps in the output video chunks. That is, if the video is 10 minutes long and if each video chunk is 5 min, the second chunk’s starting timestamp should be 05:00 and not 00:00.

    As mentioned in the FFMpeg documentation, I tried the -copyts option with -start_at_zero without any luck.

    At present, I have a work around to pass the offset (05:00) along with the file name externally so that the frame timestamp can still be tracked. But this is not the ideal solution, I believe.