Recherche avancée

Médias (91)

Autres articles (3)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (3508)

  • Split video every x secondes with ffmpeg

    30 mai 2017, par Boris ELOSHVILI

    I try to cut the mp4 video with ffmpeg.

    I have a mp4 video input and I want to split this video for all 1 second, so use the segment and save the file in the date format.

    I use the following command but apparently it does not work. But the files are not cut cleanly, there is always the difference between size and time. The files are not generating in any 1 second.

    ffmpeg -re -i im1.mp4 -threads 3 -c:v copy -f segment -segment_time 1 -strftime 1 -segment_format mp4 %Y-%m-%d-%H-%M-%S.mp4

    Someone has an idea ?

  • avcodec/videotoolboxenc : split initialization

    11 juin 2018, par Thomas Guillem
    avcodec/videotoolboxenc : split initialization
    

    Split vtenc_init() into vtenc_init() (VTEncContext initialization) and
    vtenc_configure_encoder() (creates the vt session).

    This commit will allow to restart the vt session while encoding.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/videotoolboxenc.c
  • How to split video or audio by silent parts

    9 février 2021, par TermiT

    I need to automatically split video of a speech by words, so every word is a separate video file. Do you know any ways to do this ?

    &#xA;&#xA;

    My plan was to detect silent parts and use them as words separators. But i didn't find any tool to do this and looks like ffmpeg is not the right tool for that.

    &#xA;