Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (105)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (14846)

  • How can I determine the resolution of incoming RTMP streams with ffmpeg ?

    12 mars 2019, par toastedDeli

    I’m using ffmpeg to transcode RTMP from my own RTMP server into HLS ready H.264. At the moment, I’m executing a command of the following form

    ffmpeg -i rtmp://<ip>:<port> <options for="for" 480p="480p"> <options for="for" 720p30="720p30"> <options for="for" 720p60="720p60"> <options for="for" 1080p="1080p">
    </options></options></options></options></port></ip>

    This is causing me to attempt to transcode lower resolutions to higher resolutions.

    The RTMP server I’m using is nginx with RTMP module

    Is there a way I can determine the source resolution, so that I only transcode into resolutions smaller than the source one ?

  • Convert s3 video files resolution and store it back to s3

    5 avril 2019, par Pritam Roy

    I want to convert s3 bucket video file resolutions to other resolutions and store it back to s3.
    I know we can use ffmpeg locally to change the resolution.
    Can we use ffmpeg to convert s3 files and store it back using Django ?

    I am puzzled as from where to start and what should be the process.
    Whether I should have the video file from s3 bucket in buffer and then convert it using ffmpeg and then upload it back to s3.
    Or is there anyway to do it directly without having to keep it in buffer.

  • decreasing video resolution using ffmpeg increases file size

    11 octobre 2024, par user270700

    I try to decrease video resolution using ffmpeg by,

    &#xA;&#xA;

    ffmpeg -y -hide_banner -loglevel panic -i "input.mp4" -vf "scale=-1:256" -q:v 1 -c:a copy -threads 1 "output.mp4"&#xA;

    &#xA;&#xA;

    But the video file size is increased. &#xA;The original height is larger than 256.&#xA;Why the file size is increased though the resolution is decreased ?

    &#xA;