Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (47)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

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

  • Revision 9596a4cc54 : vpxdec : add —loops option Allows vpxdec to operate multiple times on the same

    13 juin 2013, par John Koleszar

    Changed Paths :
     Modify /vpxdec.c



    vpxdec : add —loops option

    Allows vpxdec to operate multiple times on the same input. Mostly
    useful for debugging/development.

    Change-Id : Icf25ece22e387052eade4438971eee5ff4f798ba

  • avcodec/get_bits : Avoid reading multiple times in get_bits_long

    22 juin 2022, par Andreas Rheinhardt
    avcodec/get_bits : Avoid reading multiple times in get_bits_long
    

    Due to non-byte-alignment a read of 32 bits guarantees only
    25 usable bits ; therefore get_bits_long() (which is used to
    potentially read more than 25 bits) performs two reads in case
    it needs to read more than 25 bits and combines the result.

    Yet this is not necessary : One can just read 64 bits at a time
    to get 32 usable bits (57 would be possible). This commit does so.

    This reduced the size of .text by 30144B for GCC 11.4 and 5648B
    for Clang 14 (both with -O3).

    (get_bits_long() is a building block of show_bits_long()
    and get_ue_golomb_long(), so this patch affects these, too.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/get_bits.h
  • Looping video for x times with ffmpeg [duplicate]

    18 mars 2017, par senty

    This question already has an answer here :

    I am trying to loop a video input for x times with ffmpeg. I tried the solution that I found on this answer, but it is throwing a syntax error for me

    ffmpeg -f concat -i &lt;(for i in {1..4}; do printf "file '%s'\n" input.mp4; done) -c copy output.mp4

    PHP Parse error : syntax error, unexpected ’’\n" input.mp4 ; done) -c copy ’ (T_CONSTANT_ENCAPSED_STRING), expecting ’,’ or ’)’ in /home/vagrant/Code/index.php


    I also tried this approach, but this time I am getting another error

    ffmpeg -i input.mp4 -c copy input.mkv
    ffmpeg -stream_loop 4 -i input.mkv -c copy looped.mp4

    Unrecognized option ’stream_loop’.

    Error splitting the argument list : Option not found


    Am I missing out something or is it related with the versions ? I use ffmpeg v2.8.11. I also use php and shell_exec('') for each line.