Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (51)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (6072)

  • avfilter/vf_chromanr : split inner loops

    6 décembre 2022, par Paul B Mahol
    avfilter/vf_chromanr : split inner loops
    

    Makes overall faster processing in default case.

    • [DH] libavfilter/vf_chromanr.c
  • split a video with overlap between segments

    6 mai 2017, par John Pankowicz

    I need to split a video into a sequence of segments like the following : (numbers are mm:ss) 00:00 to 03:05, 03:00 to 06:05, 06:00 to 09:05, etc. In other words, each segment will have 5 seconds of overlap with the following segment. The purpose of this is for a transcription program. Each 3 minute segment will be transcribed separately. The 5 seconds of overlap will help in stitching the transcribed text segments back together.

    Do I need to extract each 3 minute and 5 second segment separately ? For example, by doing the following :

    ffmpeg -ss 00:03:00 -i in.mp4 -t 00:06:05 -vcodec copy -acodec copy -y out.mp4

    Or is there a way to do all the segments in one pass ?

    [ Project is : Govmeeting ]

  • split a video with overlap between segments

    7 mai 2023, par John Pankowicz

    I need to split a video into a sequence of segments like the following : (numbers are mm:ss) 00:00 to 03:05, 03:00 to 06:05, 06:00 to 09:05, etc. In other words, each segment will have 5 seconds of overlap with the following segment. The purpose of this is for a transcription program. Each 3 minute segment will be transcribed separately. The 5 seconds of overlap will help in stitching the transcribed text segments back together.

    



    Do I need to extract each 3 minute and 5 second segment separately ? For example, by doing the following :

    



    ffmpeg -ss 00:03:00 -i in.mp4 -t 00:06:05 -vcodec copy -acodec copy -y out.mp4


    



    Or is there a way to do all the segments in one pass ?

    



    [ Project is : Govmeeting ]