Recherche avancée

Médias (91)

Autres articles (107)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (14424)

  • How can i insert 10 seconds of silent audio(null audio without images or video or black video) into video repeat every 15 seconds with ffmpeg ?

    1er septembre 2018, par Adam Estel

    I have a clip video.mp4 . How can i insert 10 seconds of only silent audio into this clip repeat every 15 seconds until the end of this clip with ffmpeg ?
    I know anullsrc is an audio so i can’t use overlay filter. I research on google for a while but the only option i have is gte(mod(t,15),10)).

    Thank you.

  • ffmpeg command to insert the Static frames in a video, if the video has the gaps inside of it ?

    1er septembre 2020, par geo-freak

    I have a 10 min video file(.ts file), it has the gaps(empty video) from 4th min to 7th min. I want to insert the static frames from start of the gaps to end of the gap.

    


    I have a command to create the static video with null(silent) audio.

    


    ffmpeg -loop 1 -i img002.jpg -f lavfi -i anullsrc=channel_layout=5.1:sample_rate=48000 -c:v libx264 -t 10 -pix_fmt yuv420p -vf scale=480:320 -y output.ts


    


    I want to add this static video with silent audio in a a recording from specific period.

    


    How can I achieve it ?

    


    Thanks in advance.

    


  • How to bookmark a video, to skip the video to a cetain duration ?

    17 août 2016, par Prasanth Kumar Arisetti

    I am encoding the incoming camera data, using x264 encoder and mpegtsmux to a filesink .ts files.

    I am pushing the buffers to the pipeline, using, g_signal_emi_by_name.

    Pipeline is something like this :

    gst-launch-1.0 v4l2src ! videoconvert ! video/x-raw,width=720,height=576,framerate=25/1 ! x264enc ! mpegtsmux ! filesink  location=test.ts

    Now, for that video, i would like to add bookmarks for certain duration to directly skip the video to that duration, when click on that duration.

    How can i add bookmarks to that video ?