Recherche avancée

Médias (91)

Autres articles (103)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (12630)

  • truehd : break out part of rematrix_channels into platform-specific callback.

    20 mars 2014, par Ben Avison
    truehd : break out part of rematrix_channels into platform-specific callback.
    

    Verified with profiling that this doesn’t have a measurable effect upon
    overall performance.

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

    • [DH] libavcodec/mlpdec.c
    • [DH] libavcodec/mlpdsp.c
    • [DH] libavcodec/mlpdsp.h
  • truehd : break out part of output_data into platform-specific callback.

    20 mars 2014, par Ben Avison
    truehd : break out part of output_data into platform-specific callback.
    

    Verified with profiling that this doesn’t have a measurable effect upon
    overall performance.

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

    • [DH] libavcodec/mlpdec.c
    • [DH] libavcodec/mlpdsp.c
    • [DH] libavcodec/mlpdsp.h
  • ffmpeg : After using scale2ref and concat filter only part of video is encoded [closed]

    19 mai 2024, par Ricardo Bohner

    I'm trying to select some parts of an video, concat them, and apply an overlay that should have 1/6 of the video width :

    &#xA;

    ffmpeg -reinit_filter 0 -i "input.mp4" -t 12 -loop 1 -i flag.webp -an -filter_complex "[0]select=&#x27;between(t,3,9)&#x27;,setpts=PTS-STARTPTS[P1];[0]select=&#x27;between(t,12,15)&#x27;,setpts=PTS-STARTPTS[P2];[0]select=&#x27;between(t,60,70)&#x27;,setpts=PTS-STARTPTS[P3];[P1][P2][P3]concat=n=3:v=1:a=0[vid];[1][vid]scale2ref=w=iw/6:h=ow/mdar[flag][vid];[vid][flag]overlay=x=20:y=20:enable=&#x27;between(t,1,7)&#x27;[vid]" -map [vid] -c:v libx264 -b:v 900K -y "output.mp4"&#xA;

    &#xA;

    The output video results in a video that contains only the first part of the selections [P1] (or even less)...

    &#xA;

    Strangly if I use something like this without using concat filter everything works like expected :

    &#xA;

    ffmpeg -reinit_filter 0 -i "input.mp4" -t 12 -loop 1 -i flag.webp -an -filter_complex "[0]select=&#x27;between(t,3,9)&#x2B;between(t,12,15)&#x2B;between(t,60,70)&#x27;,setpts=N/FRAME_RATE/TB[vid];[1][vid]scale2ref=w=iw/6:h=ow/mdar[flag][vid];[vid][flag]overlay=x=20:y=20:enable=&#x27;between(t,1,7)&#x27;[vid]" -map [vid] -c:v libx264 -b:v 900K -y "output.mp4"&#xA;

    &#xA;

    Does anyone know what I'm doing wrong or how to use concat with scale2ref and overlay together ? Thanks...

    &#xA;