Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (50)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7198)

  • Strange error [adding watermark to flv video with ffmpeg on linux centos 6]

    20 juillet 2012, par igor

    I have tried to do the job with following code :

    ffmpeg -i /home/igordr/video.flv -vf "movie=/home/igordr/wm.jpg [watermark]; [in][watermark] overlay=main_w/2-overlay_w/2:main_h/2-overlay_h/2 [out]" /home/igordr/outputvideo.flv

    Also tried :

    ffmpeg -i /home/igordr/video.flv -b:a 300k -ar 22050 -t 10 -f flv -s 352x288 -vf "movie = /home/igordr/wm.png [watermark]; [in][watermark] overlay =0:0 [out]" /home/igordr/out.flv

    I get errors :

    Unrecognized option 'vf'

    Unrecognized option 'b:a'

    Also, I am interested, how I can add just one big image, before video starts, without watermark, and does it possible ?

    How can i check ffmpeg version, and install new one if it's old ?

  • FFMPEG - 2-pass video conversion final file size is larger than expected

    14 juin 2022, par Kevin Korb

    We are converting files and the target filesize is important. For one version of the video it can not be above 750KB.

    


    We are using the 2-pass encoding and specifying the target audio bitrate and target video bitrate, however the longer the duration of the video, the larger the file becomes and exceeds our 750KB target.

    


    


    For example, our file is 53.3 seconds, we know our final target of
750KB. We like our audio at 48kbps (mono).

    


    So we calculate our target (total) bitrate at : 750*8/53.3 = 112.57
total kbps Audio bitrate = 48kbps Video bitrate = 112-48 = 64kbps
video

    


    We would expect the file produced to be 746.2KB. (112*53.3 / 8)

    


    The file produced is 850k(ish).

    


    


    Is there something that takes up space in the file that isn't video or audio that we need to take into consideration ?

    


  • FFmpeg synthesizes multiple videos, the final result is only sound, no picture display

    6 juillet 2023, par Halifax

    1、I first converted mp4 to ts:

    


    -i MyVideo.mp4 -vcodec copy -acodec aac -b:v 10000k MyVideo.ts


    


    2、Then scale the ts and fill the empty space:

    


    -i MyVideo.ts -vf pad=width=iw:height=ih:x=-1:y=0:color='White' -b:v 10000k MyVideo_transform.ts


    


    3、Finally use concat to merge into mp4 files:

    


    -i "concat:MyVideo_transform1.ts|MyVideo_transform2.ts" -acodec copy -vcodec copy -absf aac_adtstoasc -b:v 10000k $outputFilePath"


    


    Finally use concat to merge into mp4 files。

    


    I hope that the final merged result can see the video picture。