Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (78)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 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 (...)

Sur d’autres sites (9589)

  • lavf/rtpdec : fix RTCP SR packet length check

    24 avril, par Marvin Scholz
    lavf/rtpdec : fix RTCP SR packet length check
    

    The minimum valid packet length is 28, given that the length includes
    the packet header.

    This didn't cause any issues so far as the code did not care about the
    last two fields in the SR section, but will be relevant in a future
    commit.

    • [DH] libavformat/rtpdec.c
  • avcodec/cbs_h265 : fix range of sps_max_sub_layers_minus1

    8 juillet 2024, par James Almer
    avcodec/cbs_h265 : fix range of sps_max_sub_layers_minus1
    

    The VPS referenced by the SPS must always be present as the max value for
    sps_max_sub_layers_minus1 is vps_max_sub_layers_minus1. This replaces a buggy
    custom range check for the aforementioned field.
    Also, add the missing conformance check for sps_temporal_id_nesting_flag while
    at it.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_h265_syntax_template.c
  • Translating a multiple line terminal command into a single line terminal command

    5 décembre 2019, par andy stumpf

    Does anyone have any direction or suggestion on how to translate this command into a single line command ? I need to keep this in a terminal command and no use a shell. Thank you so much for any help and direction.

       for event in */; do
       (
       echo "$event"
       cd "$event"
       for segment in */; do          
           (                      
               cd "$segment"
               echo "$segment"          
               for f in *-0.ts; do
                   (
                       echo $f
                   )
               done
               (printf "file '$PWD/%s'\n" *.ts | sort -n -k1.$(($(printf "file '$PWD/$f'" | wc -c) - 4))) > fraglist.txt
               ../../ffmpeg -f concat -i fraglist.txt -c copy ../../"${segment[@]%.hls/}.ts"
           )
       done
       )
    done

    I’ve tried something like the following but the outcome is not the same

    for s in *.*; do ffmpeg -f concat -i &lt;(for f in $s/*.ts; do echo 'file '$PWD/$f''; done) -c copy ${s[@]%.hls/}.ts; done