Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (43)

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

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

  • ffmpeg pixelated logo and video, how do i improve ?

    4 janvier 2017, par S Xhaferaj

    i’m trying to instert a logo over a stream, the logo and stream after i start become very much so pixelated. Is there a way just to insert the logo and not mess with the stream or is there any way to improve the quality of the logo & stream.

    -fflags +genpts -i {INPUT} -i http://sample.com/logo.png -filter_complex "overlay=10:10"

    Thank you. =/> FFMPEG COMMAND PICTURE

  • Loss less conversion using FFMPEG in react native while adding logo to video

    6 décembre 2019, par Rishav Kumar

    I am using RN-FFMPEG to embed a thumbnail in a video using FFmpeg.
    The problem is that the video quality is highly deteriorated while adding a logo.
    Also, the issue is logo gets highly stretched and distorted in landscape videos but works great in portrait video.

    Can someone help me to have a max-width and max-height to the watermark along with high processing time with lossless conversion ?

    RNFFmpeg.execute('-i ' + video + ' -i ' + logo +' -filter_complex overlay=main_w-overlay_w-25:main_h-overlay_h-25 -codec:a copy /storage/emulated/0/ABC/ABC-' + name + '.mp4')

    This is my FFMPEG code

    Here, video is path of video file.
    logo is path of the watermark
    name is any random number

  • Batch overlay logo to directory of video files with scale watermark in percentage of video resolution

    28 septembre 2017, par Aariyan mind

    help me how to add auto scale watermark in percentage of video resolution code in this ?

    for %%I in ("C:\Users\demo\*.mp4") do ffmpeg.exe -i "%%I"  -filter_complex "movie=180n.png[watermark];[watermark][0]scale2ref=350*iw/2140:42*iw/2140[wm][v];[wm]setsar=1[logo];[v][logo] overlay=10:10:enable=not(between'(t,30,210)')[watermark]" -map "[watermark]" -map 0:a -codec:v libx264 -codec:a copy "C:\Users\files\%%~nI.mp4"
    pause