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)

  • movenc : Add support for writing language codes into ISML manifests

    27 septembre 2016, par Jan Ekström
    movenc : Add support for writing language codes into ISML manifests
    

    Streaming servers appear to ignore all other language metadata.

    Signed-off-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : Josh de Kock <josh@itanimul.li>

    • [DH] libavformat/movenc.c
  • how to extract multi frames from video with ffmpeg exact and fast

    24 février 2018, par Questioner

    i want extract frame from video with ffmpeg

    for example

    ffmpeg.exe -an -r 21 -ss 00:17:50 -i "K :\test.mkv" -t 00:00:30 -s 560x314 -q:v 1 "T :\GIF\test_%05d.png"

    the command what i intend is

    extract frame from K :\test.mkv(O)

    start at 00:00:30 (O)

    extracted image size is 560x314 (o)

    output path and file name format T :\GIF\test_%05d.png (O)

    extract 30seconds from start point -t 00:00:30 (X)

    with frame rate 21(so if video’s original fps is 24fps, then it reduced to fps22)(maybe ? X)

    anyway this is not collect

    i got 660 images, image number is collect but this is not 30seconds video data
    only 15seconds data. this is too large error, so i can’t ignore it

    i think i can fix it by -ss move to after -i , but this need really a lot of time..

    how can i solve this problem
    little error is ok but error is too large

    i just want time x to time y, and capture picture every 1000/22 seconds captured

  • avutil/rational : never return greater num/den than the maximum allowed in av_d2q

    10 novembre 2024, par Marton Balint
    avutil/rational : never return greater num/den than the maximum allowed in av_d2q
    

    This reverts 887d74c47efa70d7d1513e9492d41cf7f88dee0b, because it ignores the
    maximum allowed numerator/denominator. Even if the result was rounded to zero
    or infinity, it should not be cause to ignore the maximum allowed number, this
    "feature" is unintuitive and undocumented.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/rational.c