Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (68)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9490)

  • h264_mp4toannexb : Remove unnecessary check

    14 décembre 2019, par Andreas Rheinhardt
    h264_mp4toannexb : Remove unnecessary check
    

    There can be at most 31 SPS and 255 PPS in the mp4/Matroska extradata.
    Given that each has a size of at most 2^16-1, the length of the output
    derived from these parameter sets can never overflow an ordinary 32 bit
    integer. So use a simple uint32_t instead of uint64_t and replace the
    unnecessary check with an av_assert1.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_mp4toannexb_bsf.c
  • FFMPEG delaying the start of video when using between

    11 décembre 2019, par Michael Joseph Aubry

    ffmpeg -i "in.mp4" -i "./watermark.png" -f lavfi -i color=c=white:s=1080x1920 -filter_complex " [0:v]scale=2560:1440[ovr1], [1:v]scale=458:58[ovr2], [2:v][ovr1]overlay=-740:240:enable='between(t,2,7)'[int1], [int1][ovr2]overlay=W-500:H-100:enable='between(t,0,15)' [main] " -map "[main]" -ac 2 -vcodec libx264 -preset veryfast -crf 27 -vb 20M -t 00:00:15 out.mp4

    This command takes my second input (watermark) it overlays it on my first input (video). It also scales both of them accordingly. It also sets the times to appear and disappear throughout the video.

    The problem is [2:v][ovr1]overlay=-740:240:enable='between(t,2,7)'[int1] when I set my video input to appear between 2 seconds and 7 seconds. The result is as such, however, when it appears at the 2-second mark, the video is also starting at the 2-second mark when the video should start at its own 0-second mark within the new video.

    How can I adjust the ffmpeg command above to start the video input at 2 seconds within the video but have it start at the input video’s 0-second mark ?

  • avformat/mpegtsenc : allow any sensible PID for elementary and PMT PIDs

    11 novembre 2019, par Marton Balint
    avformat/mpegtsenc : allow any sensible PID for elementary and PMT PIDs
    

    This sets the range of the first automatically assigned PMT PID or elementary
    stream PID parameters to [0x20, 0x1ffa]. You can still assign manually a PID
    for a stream using AVStream->id in the wider [0x10, 0x1ffe] range as specified
    by ISO13818-1. But since DVB and ATSC both reserves some PIDs, let's not allow
    them to be automatically assigned.

    Also make sure that assigned PID numbers are valid and fix the error message
    for the previous PID collision checks.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/muxers.texi
    • [DH] libavformat/mpegts.h
    • [DH] libavformat/mpegtsenc.c
    • [DH] libavformat/version.h