Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (38)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (5421)

  • Split bulk video fast by using ffmpeg ? [duplicate]

    9 avril 2014, par user3513568

    This question is an exact duplicate of :

    I have a lot of videos, so I want to split them automatically. And they will be divided into 2 parts :

    Part 1: 15 minutes
    Part 2: the rest

    This is code I have

    ffmpeg -i input -t 00:15:00 -codec copy output
    ffmpeg -ss 00:15:00 -i input -codec copy output

    However, I don't know how to split batch all video in 1 folder because I have a lot of file !

    Searched a lot, but did not find. Please, help.

    I use windows OS and I want to stream copy.

  • FFmpeg : How to split video to 2 equal chunks ?

    4 mai 2023, par Alon G

    I wish to split a large avi video into two smaller consecutive videos. I am using ffmpeg.

    


    I don't know what is the length of the video.

    


  • Parsing split video with ffmpeg

    13 mai 2016, par mtomy

    I have video file split into few chunks. Split done and random file positions, but chunks are large enough.

    I need to parse every part with different instances of AVFormatContext. Chunks come one after another in right order. I think there are two options here :

    1. Being able to save and restore AVFormatContext state ;
    2. Save video file header (from first chunk) and attach it to every chunk.

    I tried both but no success. First approach requires to go too deeply beyond public API of ffmpeg. With second approach I am unable to merge header with new chunk so that ffmpeg can handle it.

    Can you help me with this ?

    Thank you.