Recherche avancée

Médias (91)

Autres articles (104)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

Sur d’autres sites (11885)

  • gxf : Add a local copy of the relevant parts of the frame rate table

    18 octobre 2012, par Martin Storsjö

    gxf : Add a local copy of the relevant parts of the frame rate table

  • h264 : remove redundant parts of old slice in extradata code.

    18 décembre 2012, par Michael Niedermayer

    h264 : remove redundant parts of old slice in extradata code.

  • how to remove multiple parts from a video, using ffmpeg ?

    26 septembre 2023, par jojo

    how to remove multiple parts from a video ?
for example i have a video of one minute and i want to delete following segments :

    


    from second 0.0 to second 10.0
from second 20.0 to second 30.0
from second 40.0 to second 45.0

    


    please remember i want to delete above mentioned segments, the output should not include these segments.
i have already tried all the answers, but they are all joining the trimmed segments, which i don't want.e.g :

    


    ffmpeg -i foo.mp4 -filter_complex "[0:v]trim=duration=30[av];[0:a]atrim=duration=30[aa];[0:v]trim=start=40:end=50,setpts=PTS-STARTPTS[bv];[0:a]atrim=start=40:end=50,asetpts=PTS-STARTPTS[ba];[0:v]trim=start=80,setpts=PTS-STARTPTS[cv];[0:a]atrim=start=80,asetpts=PTS-STARTPTS[ca];[av][aa][bv][ba][cv][ca]concat=n=3:v=1:a=1" out.mp4


    


    thank you.
note :(python version also accepted.)