Advanced search

Medias (91)

Other articles (112)

  • Gestion générale des documents

    13 May 2011, by

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet; la récupération des métadonnées du document original pour illustrer textuellement le fichier;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP sur (...)

  • Des sites réalisés avec MediaSPIP

    2 May 2011, by

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 April 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

On other websites (12231)

  • Looping video for x times with ffmpeg [duplicate]

    18 March 2017, by 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 <(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.

  • avcodec/get_bits: Avoid reading multiple times in get_bits_long

    22 June 2022, by 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
  • Revision 9596a4cc54: vpxdec: add —loops option Allows vpxdec to operate multiple times on the same

    13 June 2013, by 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