Recherche avancée

Médias (91)

Autres articles (58)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

Sur d’autres sites (9478)

  • Merge commit ’6641819feedb086ebba3d2be89b8d33980f367e1’

    26 juin 2016, par Hendrik Leppkes
    Merge commit ’6641819feedb086ebba3d2be89b8d33980f367e1’
    

    * commit ’6641819feedb086ebba3d2be89b8d33980f367e1’ :
    build : Ignore generated mapfile and remove it on distclean

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] .gitignore
    • [DH] Makefile
  • FFMPEG ignores bitrate

    24 avril 2016, par Kevin Brydon

    I am new to video encoding so bear with me.

    I am using FFMPEG. I have an mp4 file which is 640 x 350 with an average bitrate of around 2000kb (I think) and a filesize of 80Mb. I want to convert this to an ogv file with a much lower bit rate (128kb) but the same width and height. I am using the following command...

    ffmpeg -i input.mp4 -b:v 128k output.ogv

    ... but FFMPEG seems to ignore my bitrate option and outputs a file with a bitrate of around 600kb and a filesize of around 3Mb.

    I can do this using FFMPEG2THEORA using the following command ...

    ffmpeg2theora -V 128 input.mp4 -o output.ogv

    ...but I was wondering if it was possible using FFMPEG.

    Any ideas ?

    Edit

    mark4o solved my problem. It turns out that the default audio codec was bumping up the filesize. Changing it to libvorbis has reduced the filesize dramatically. Final command looks like

    ffmpeg -i input.mp4 -b:v 128k -b:a 128k -codec:a libvorbis output128.ogv
    • -i = input file
    • -b:v = the bitrate of the video stream
    • -b:a = the bitrate of the audio stream
    • -codec:a = override the default audio codec
  • Normalise video aspect ratio with ffmpeg

    4 juillet 2022, par Benjamin Tamasi

    I'm parsing a video stream from an application that receives an h264 stream and writes it to a file. (The frame data is an unencrypted depacketized H.264 elementary stream).

    &#xA;

    I use ffmpeg to resize it to a fixed resolution. (I overlay it on a black canvas with -f lavfi -i color=c=black:s=1920x1080:r=30) and -filter_complex [1][0]scale2ref=w=&#x27;if(gt(mdar\,dar),iw,oh*mdar)&#x27;:h=&#x27;if(gt(mdar\,dar),ow/mdar,ih)&#x27;[2mp4][base];[base][2mp4]overlay=x=&#x27;(W-w)/2&#x27;:y=&#x27;(H-h)/2&#x27;:eof_action=pass[vout]

    &#xA;

    My issue is, that since this stream is coming from a phone's camera, whenever the orientation of the phone changes, the stream's aspect ratio changes. It can go from portrait to landscape, and back, in the same stream. When I open the file in vlc, it handles it quite nicely by resizing the window of the player to match the aspect ratio as it changes.

    &#xA;

    How can I "normalise" the video, so it's always nicely overlayed on my black canvas as the aspect ratio changes ? Currently it's just using the initial aspect ratio, and if that changes mid stream, it will ignore the change, effectively distorting the stream by squishing or stretching it.

    &#xA;

    Is there some way I can get ffmpeg to do this ?

    &#xA;