Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (50)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

Sur d’autres sites (8178)

  • avutil/channel_layout : av_channel_layout_describe_bprint : Check for buffer end

    29 juin 2022, par Michael Niedermayer
    avutil/channel_layout : av_channel_layout_describe_bprint : Check for buffer end
    

    Fixes : Timeout printing a billion channels
    Fixes : 48099/clusterfuzz-testcase-minimized-ffmpeg_dem_MATROSKA_fuzzer-6754782204788736

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/channel_layout.c
  • ffmpeg eats up / cannot read variable names from script

    14 avril 2022, par mcExchange

    The following text file ("myTextFile.txt") is used to cut a video into chunks

    &#xA;

    00:00:00.0 video_name_1.mp4&#xA;00:10:00.1 video_name_2.mp4&#xA;00:20:00.1 video_name_3.mp4&#xA;

    &#xA;

    First columns are time stamps of cutting points [HH:MM:SS.millis].

    &#xA;

    I use the following command to read the txt file and cut a video called "input_video.mp4" into clips of 10 seconds each

    &#xA;

    while read line ; do &#xA;  start_time=$(echo $line | cut -d&#x27; &#x27; -f1);&#xA;  output_name=$(echo $line | cut -d&#x27; &#x27; -f2);&#xA;  ffmpeg -ss $start_time -t 00:00:10.0 -i input_video.mp4 ${output_name}; &#xA;done &lt; myTextFile.txt&#xA;

    &#xA;

    but it's not working. The output filenames are corrupt and I don't know why. I'm not using any special characters in the output filenames. Why is this happening ?

    &#xA;

    My current work around is printing the last line ("ffmpeg ...") into the console and then paste all commands into the console command and thereby executing them...

    &#xA;

  • avcodec/hevc/hevcdec : ensure a bit was read when checking for alignment_bit_equal_to_one

    2 mai, par James Almer
    avcodec/hevc/hevcdec : ensure a bit was read when checking for alignment_bit_equal_to_one
    

    Prevents printing bogus errors about the value being 0, when in fact we
    overread the available slice buffer.

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

    • [DH] libavcodec/hevc/hevcdec.c