Recherche avancée

Médias (91)

Autres articles (43)

  • 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 ;

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5358)

  • Does h.264/ffmpeg do the inter and intra prediction per channel or per macroblock(3 channels together)

    17 juillet 2018, par Leo

    I.e.

    Could each color(YUV) channel in one macroblock be predicted to different marcoblock ?

  • Concatenating two audio files, keeping the channel count of the second file

    6 septembre 2019, par Jon H

    I am attempting to concatenate two MP3 files into a single MP3 file. So far this has worked fine with the following command :

    ffmpeg -y -i "first.mp3" -i "second.mp3" -c:a libmp3lame -qscale:a 1 -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[outa]" -map "[outa]" combined.mp3

    I wish to keep the channel count of the second input. For example, the first input is always mono, but if the second channel is stereo, I wish the output to be stereo. This command appears to always output the same channel count as the first input.

    I have tried reversing the order of the inputs, and reversing the mapping of the concat filter, but this had the same result.

    Any ideas ? Thanks.

  • animated gif watermark with logo, text and user id using ffmpeg [duplicate]

    2 décembre 2020, par Pythonsguru

    I have a video, want to add a rotating watermark.gif with draw text on video using ffmpeg command I am using following command, I am using following command for .png it is working fine

    


    ffmpeg -i vid1.mp4 -i watermark.png -filter_complex "[0:v][1:v]overlay=10:10,drawtext=fontfile=arial.ttf:text='Hello':fontcolor=white@1.0:fontsize=30:y=90:x=30:'" -c:a copy -movflags +faststart output.mp4

    


    and using .gif it working fine but

    


    ffmpeg -i "vid1.mp4" -ignore_loop 0 -i "logo.gif" -filter_complex "[1:v]scale=60:50,rotate=PI/6:c=black@0:ow=rotw(PI/6):oh=roth(PI/6) [rotate];[0:v][rotate] overlay=5:5:shortest=1," -codec:a copy -y output.mp4

    


    want to add rotating .gif and text on video in single command