Advanced search

Medias (0)

Tag: - Tags -/formulaire

No media matches your criterion on the site.

Other articles (91)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 April 2011, by

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Les autorisations surchargées par les plugins

    27 April 2010, by

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 June 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

On other websites (11091)

  • How to batch concatenate videos with an intro and an ending? [duplicate]

    19 January 2021, by Retro1191

    I have a video intro.mkv and ending,mkv

    


    I wanna concatenate them for each episode (epxx.mkv) that I have

    


    all the videos have the same resolution, etc.

    


    any ide to do it fast?

    


    P.D: I don't wanna re-encode them.

    


    thanks

    


  • FFMPEG: Terminal: Output name included original file ending ".mov" in output title: How to remove [duplicate]

    3 May 2022, by Gio

    I successfully outputted the desired effect for my FFMPEG command. I had been removing the audio from my videos with this line of code:

    


     for i in *.mov; do ffmpeg -i $i -c:v copy -an $i-noaudio.mp4; done


    


    The output results as "myInputvideo.mov-noaudio.mp4"

    


    How might I get this to output without the ".mov" in the title?
And how might I move all these outputs into a new directory entitled "no-audio"

    


    Thank you!

    


  • How to extend audio file into a new duration - adding silent to beginning and ending of the audio

    11 February 2023, by Furkan Gözükara

    I have a wav file named as a.wav.

    


    Let's say it is 9.432 seconds.

    


    I want to extend it to 13.321 seconds.

    


    So I need to add silence to both beginning and end of video to 1.945 seconds.

    


    The reason is I am working on a TTS application and I want to generate entire speech from a given subtitle srt or vtt file

    


    So how can I do this perhaps with ffmpeg?

    


    What command should I run?