Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (98)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9823)

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