Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (4281)

  • avfilter/f_setcmd : fix null pointer dereference on using dash as interval

    8 février 2017, par Marton Balint
    avfilter/f_setcmd : fix null pointer dereference on using dash as interval
    

    Fixes Coverity CID 1396259.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/f_sendcmd.c
  • How can I generate a multiple period DASH manifest with ffmpeg ?

    14 août 2023, par Robert Simmons Jr.

    I am looking to encode a file and generate multiple periods rather than just one period. When I try to run ffmpeg with the below command, the result is a single period with multiple adaptation sets so clearly that is the wrong approach. I had thought by breaking the files by time this might work but apparently not. Any advice would be appreciated :

    &#xA;

      ffmpeg -i ~/Downloads/turkish-horses.mp4 \&#xA;  -map 0:v:0 -b:v:1 1000k -ss 0 -t 5 -c:v:1 libx264 -filter:v:1 "scale=640:-1"  \&#xA;  -map 0:v:0 -b:v:2 1000k -ss 5 -c:v:2 libx264 -filter:v:2 "scale=640:-1"  \&#xA;  -map 0:v:0 -b:v:3 3000k -ss 0 -t 5 -c:v:3 libx264 -filter:v:3 "scale=1280:-1" \&#xA;  -map 0:v:0 -b:v:4 3000k -ss 5 -c:v:4 libx264 -filter:v:4 "scale=1280:-1" \&#xA;  -map 0:a\?:0 -ss 0 -t 5 -c:a aac -b:a 192k \&#xA;  -map 0:a\?:0 -ss 5 -c:a aac -b:a 192k \&#xA;  -use_timeline 1 -use_template 0 \&#xA;  -adaptation_sets "id=0,streams=0,2  id=1,streams=4 id=2,streams=1,3 id=3,streams=5" \&#xA;  -f dash output.mpd&#xA;

    &#xA;

  • avformat/dashenc : Associate mpd extension with dash muxer

    22 novembre 2017, par Karthick J
    avformat/dashenc : Associate mpd extension with dash muxer
    

    Reviewed-by : 刘歧 <lq@chinaffmpeg.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dashenc.c