Recherche avancée

Médias (91)

Autres articles (56)

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

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

  • avformat/util : change av_find_default_stream_index() to use a score based system

    1er août 2014, par Michael Niedermayer
    avformat/util : change av_find_default_stream_index() to use a score based system
    

    Disfavor video streams with unknown resolution and no packets
    Fixes seeking in audio-only-speex.flv

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/utils.c
  • Precision of timestamps by ffmpeg based on framerate ?

    17 avril 2023, par Doopy

    Here is my current command based on this answer :

    &#xA;

    ffmpeg \&#xA;-hide_banner \&#xA;-r $FRAMERATE \&#xA;-s $(((WIDTH &#x2B; 63) / 64 * 64))"x"$(((HEIGHT &#x2B; 15) / 16 * 16)) \&#xA;-f rawvideo \&#xA;-pix_fmt yuv420p \&#xA;-i - \&#xA;-filter_complex "crop=$WIDTH:$CROPPED_HEIGHT:0:0,settb=1/1000,setpts=RTCTIME/1000-1500000000000,split[out][ts];[out]setpts=N/FRAME_RATE/TB[out]" \&#xA;-map [out] \&#xA;-c:v ffv1 \&#xA;-vsync passthrough \&#xA;-f matroska \&#xA;"$OUTPUT_PATH/${FILENAME}.mkv" \&#xA;-map [ts] \&#xA;-flush_packets 1 \&#xA;-f mkvtimestamp_v2 \&#xA;"$OUTPUT_PATH/${FILENAME}_ts2.txt"&#xA;

    &#xA;

    $FRAMERATE is set to 4. Here is the _ts2.txt output :

    &#xA;

    # timecode format v2&#xA;181489707750&#xA;181489708750&#xA;181489708751&#xA;181489709000&#xA;181489709250&#xA;181489709251&#xA;181489709500&#xA;181489709501&#xA;181489709750&#xA;181489710000&#xA;181489710001&#xA;181489710250&#xA;181489710500&#xA;181489710750&#xA;181489711000&#xA;181489711250&#xA;...&#xA;

    &#xA;

    As you can see, except for the hiccups at the beginning (no idea why), it only generates timestamps that are a multiple of 250ms, i.e. 1/$FRAMERATE. How can I make these timestamps more precise, ideally on milliseconds level ?

    &#xA;

  • How to rescale image based on long side with ffmpeg ?

    10 février 2024, par mj2

    I want to rescale an image based on the long side of the image.

    &#xA;

    If I have a landscape format image e.g. 4000x3000px then this is the right command :

    &#xA;

    ffmpeg -i input.jpg -vf scale=1500:-1 scaled.jpg

    &#xA;

    If I have an upright format image e.g. 3000x4000px then this is the right command :

    &#xA;

    ffmpeg -i input.jpg -vf scale=-1:1500 scaled.jpg

    &#xA;

    Can I do this in one command ? Another option is to check the format manually with ffmpeg but I don't know how.

    &#xA;