Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (45)

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

  • 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

Sur d’autres sites (8041)

  • srt : Set srto_sender flag to sender srt socket

    7 février 2019, par Sven Dueking
    srt : Set srto_sender flag to sender srt socket
    

    SRT API Documentation :
    This flag is superfluous if both parties are at least version 1.3.0
    (this shall be enforced by setting this value to SRTO_MINVERSION if
    you expect that it be true) and therefore support HSv5 handshake,
    where the SRT extended handshake is done with the overall handshake
    process.

    This flag is however obligatory if at least one party may be using
    SRT below version 1.3.0 and does not support HSv5.

    • [DBH] libavformat/libsrt.c
  • How to use FFMPEG to add different pictures into one video

    24 juillet 2012, par user1546926

    What I want to do is to display different pictures on specific time periods of the video.

    I have got a solution which is using FFMPEG to split the video into several components and then adding pictures as watermark into those components, and finally join them together.

    However, I don't think it is very efficient when tackling with large videos.

    Any idea ? doesn't need to be done in a single command, could even be a script. thanks in advance.

    this is what I did :

    Codes for adding watermark

    ffmpeg -ss 00:00:00 -t 00:01:30 -i test.mpg -vf "movie=logo1.png [watermark];[in]
    [watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out1.avi

    ffmpeg -ss 00:01:30 -t 00:03:00 -i test.mpg -vf "movie=logo2.png [watermark];[in]
    [watermark] overlay= main_w-overlay_w-10:main_h-overlay_h-10 [out]" -vcodec flv -sameq out2.avi

    Codes for joining avi(running on Windows)

    copy out1.avi /b + out2.avi /b output.avi /b
  • How to setting pictures and audio to mp4 ffmpeg ?

    25 juin 2015, par Jhon Lemmon

    I’m trying to set some pictures and audio to mp4 using ffmpeg

    I tried with these commands :

    -i %02.png -pix_fmt yub420p -vcodec mjpeg -qmin 1 -qmax 1 -r 25 -i loop.pm3 -ar 22050 -ab 192k -aframes 25 -shortest out.mp4

    -r 60 -f image2 -i %02.png -i loop.mp3 -vcodec libx264 -b:c -vpre -acodec copy out.mp4

    -r 60 -f image2 -i %02.png -i loop.mp3 -vcodec libx264 -b:c -vpre -acodec copy -strict -experimental out.mp4

    -r 60 -f image2 -i %02.png -i loop.mp3 -map 0 -c:v libx264 -vpre -acodec copy -strict -2 out.mp4

    Some commands create the out.mp4 file, but I can’t seem to reproduce them in Android
    I just want to know the correct command to set a pictures group and an audio to a video