Recherche avancée

Médias (91)

Autres articles (63)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11533)

  • MediaConvert split video into multiple chunk but in different duration length

    12 novembre 2020, par Sandip

    I have one video with 1 hr time.

    


    i want to chunk in different part by specified range.

    


    ex :

    


      

    1. 0 to 10 min
    2. 


    3. 10 to 40 min
    4. 


    5. 40 to 60 min
    6. 


    


    I know it is possible by ffmpeg but i want to do this with MediaConvert.

    


    here is sample for ffmpeg but same thing i want do using MediaConvert

    


    ffmpeg -i input.mp4 -c copy -f segment -segment_times 0,600,2400 output%d.mp4


    


  • Revision a16f075375 : Corrected value range of —cpu-used for vp9 This commit removes undefined value

    18 décembre 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/vp9_cx_iface.c


     Modify /vpxenc.c



    Corrected value range of —cpu-used for vp9

    This commit removes undefined value options of cpu-used for VP9 and
    changed vpxenc prompt to reflect the usable range of [-8,8]

    Change-Id : Ib80fef3dbb6ec9aabac45ed13e8ab6fbaf94f55e

  • mov : Fix handling of zero-length metadata values

    15 décembre 2014, par Martin Storsjö
    mov : Fix handling of zero-length metadata values
    

    Since 3cec81f4d4, a zero-length metadata value would try to
    allocate 2*0 bytes, where av_malloc() returns NULL.

    Always add one to the allocated length, to allow space for
    a null terminator in the zero-length case.

    Incidentally, this fixes fate-alac on RVCT 4.0, where a compiler
    bug seems to mess up the mov muxer to the point that it writes
    the wrong sort of metadata. Previously this bug was undetected,
    but since 3cec81f4d4 such mov files started returning
    AVERROR(ENOMEM) in the mov demuxer.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mov.c