Recherche avancée

Médias (91)

Autres articles (39)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

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

Sur d’autres sites (7761)

  • how i can rotate video for 20 degrees ?

    2 août 2014, par user3447705

    How i can rotate video for 20 degrees ?

    FFMPEG not have option, where i can manual set degree.

    ffmpeg -i video.mp4 -acodec copy -sameq -vf transpose=1 out.mp4

    The various parameter values for "transpose" are :
    0 : rotate by 90 degrees counterclockwise and vertically flip
    1 : rotate by 90 degrees clockwise
    2 : rotate by 90 degrees counterclockwise
    3 : rotate by 90 degrees clockwise and vertically flip

  • How to remove 6 seconds and keep the next 20 seconds of both video and audio and repeat it with ffmpeg

    16 juillet 2018, par Adam Estel

    I tried to figure a way to to remove 6 seconds of both video and audio every 20 seconds.This is my code :

     ffmpeg -y -i "input.mp4" -vf "select='not(lt(mod(t,20),6))',setpts=N/FRAME_RATE/TB,setpts=PTS-STARTPTS" -af "aselect='not(lt(mod(t,20),6))',asetpts=N/SR/TB,asetpts=PTS-STARTPTS" -preset superfast out.mp4

    But it resulted not that I want,the wrong timings being selected.
    I don’t know what did i do wrong here ?
    Sorry for my bad english.Thank you

  • How to remove 6 seconds of both video and audio and repeat it after every 20 seconds with ffmpeg

    15 juillet 2018, par Adam Estel

    I tried to figure a way to to remove 6 seconds of both video and audio every 20 seconds.This is my code :

     ffmpeg -y -i "input.mp4" -vf "select='not(lt(mod(t,20),6))',setpts=N/FRAME_RATE/TB,setpts=PTS-STARTPTS" -af "aselect='not(lt(mod(t,20),6))',asetpts=N/SR/TB,asetpts=PTS-STARTPTS" -preset superfast out.mp4

    But it resulted not that I want,the wrong timings being selected.
    I don’t know what did i do wrong here ?
    Sorry for my bad english.Thank you