Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (18)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (4695)

  • Remove specific part from multiple videos using ffmpeg

    28 avril 2022, par che10

    I am new to ffmpeg and I am trying to cut the first 20 seconds of each video in a folder. So the output videos will be without the first 20 seconds. I know how to do it for 1 video but how to do it in a batch for multiple videos ? I am using windows 10. Thanks in advance !

    


    what I am using for 1 video file is :
ffmpeg -i "filename.mkv" -ss 00:00:20 output.mkv

    


  • Using FFmpeg to zoom in then zoom out in a video

    5 juillet 2020, par david

    I would like to use FFmpeg on a video to zoom in and stay zoomed for 3 seconds then zoom out to full screen and stay like that for 3 seconds and repeat this cycle through the whole video
Thanks in advance.

    


  • Finding audio peaks in video files

    23 octobre 2013, par Adam Langsner

    I have a bunch of video files that I want to process. I want to write a program that can find the audio peaks in each file and return the times where those peaks occurred.

    I've looked for a lot of different APIs in different languages but couldn't get any of them to work. I am partial to php and java, so if anyone knows any good audio processing libraries in those languages that would be great ! But really I don't care too much about the language. I will need to run this program on a cron.

    Also, is it possible to use system calls to ffmpeg from within a script to accomplish this ? Thanks in advance.