Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (59)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (10093)

  • FPS shown in ffmpeg does not match with total frames/duration

    14 juin 2020, par Lincolnhuj

    FPS is defined as number of frames per second. But when I try to calculate FPS using total frames / duration, I get slightly different number than the FPS shown in ffmpeg :

    



    For this video http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4
using ffmpeg, we can get its FPS, duration and total frames :

    



    


    ffprobe -select_streams v -show_streams ForBiggerFun.mp4 | grep nb_frames

    


    



    nb_frames=1440

    



    


    ffmpeg -i ForBiggerFun.mp4

    


    



    23.98 fps
Duration : 00:01:00.07

    



    If we calculate duration per frame using nb_frames, we get
fps = nb_frames/Duration = 1440/60.07 = 23.972032628599965, which is different from 23.98

    



    Which value is more reliable ? Does the difference means duration of a frame might be different from others (frames are not evenly distributed) ?

    


  • Adjust printf conversion specifiers to match variable signedness

    15 décembre 2015, par Diego Biurrun
    Adjust printf conversion specifiers to match variable signedness
    
    • [DBH] libavcodec/dnxhddec.c
    • [DBH] libavcodec/dvdec.c
    • [DBH] libavcodec/dxv.c
    • [DBH] libavcodec/fraps.c
    • [DBH] libavcodec/txd.c
    • [DBH] libavformat/mov.c
    • [DBH] libavformat/rtpdec_jpeg.c
    • [DBH] libavformat/rtpdec_xiph.c
    • [DBH] libavformat/rtpenc.c
    • [DBH] libswscale/tests/swscale.c
  • FFmpeg + getID3() : Detect audio's average level volume and change another audio's volume to match it

    12 mars 2019, par lukistar

    I have two audio files.

    First audio could be anything.

    Second audio is always wav file, that contains sequence of silence(well I used adelay to create it)( 15 seconds) speech( 1 second) .. silence .. speech etc.

    I am using amix to combine them, but I need to adjust second audio to match the volume level of the first audio for best results.

    So first I need to detect the average volume level of the first audio and then change the volume level of the second.

    Any idea how to do that using ffmpeg(or even easier for me using getID3) ? Thanks.