Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (13291)

  • decreasing video resolution using ffmpeg increases file size

    11 octobre 2024, par user270700

    I try to decrease video resolution using ffmpeg by,

    



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


    



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

    


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

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