Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (47)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7279)

  • How to increase resolution in ffmpeg with rawvideo [closed]

    2 novembre 2020, par Jamie Hutber

    I am using my DSLR with loopback to use as a webcam, however the resolution is locked at 640x426 and I cannot seem to find a way to make this larger as the stream itself is 1080p from the camera.

    


    sudo modprobe v4l2loopback video_nr=2 exclusive_caps=1,1,1 card_label='Screenshare' && gphoto2 --stdout --capture-movie | ffmpeg -i - -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video2


    


  • How can I upscale videos with FFmpeg to a fixed resolution ?

    30 juillet 2020, par Tobias

    Resolution of an example video : 640x788

    


    Desired resolution of the new video : 1920x1080

    


    The aspect ratio of the video should be kept (the area left & right should be filled black).

    


    My current call looks like this : ffmpeg -i input.mp4 -s 1920x1080 -r 60 -aspect 1:1 -strict experimental output.mp4. The problem here is that the video is sometimes made narrower / wider (aspect ratio is not kept).

    


    Since I am no FFmpeg expert I hope for help here (maybe there is a padding property ?)

    


  • ffmpeg change resolution by condition

    29 août 2020, par Tom

    I want to change my video resolution with ffmpeg :

    



    -s 852×480


    



    How can I do it only when video width or height greater than 852×480 ?

    



    I want something like this with ffmpeg, not with my programming language :

    



    if video.width > 852:
   resize width and proportionally resize height

if video.height > 480:
   resize height and proportionally resize width

if video.width > 852 and video.height > 480:
   resize height width