Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (52)

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

  • FFmpeg - concat videos error, do not match the corresponding output link ?

    18 février 2021, par wensefu

    I'm trying to concat some video into one single video using ffmpeg.

    



    input information :

    



    a.mp4 1920x808 , b.mkv 1280x720

    



    First I tried command below and it works fine :

    



    


    ffmpeg -i a.mp4 -i b.mkv -f lavfi -t 0.1 -i anullsrc -filter_complex [1:v]scale=1920:808:force_original_aspect_ratio=decrease,pad=1920:808 :(ow-iw)/2 :(oh-ih)/2[v1] ; [0:v][0:a][v1][1:a]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] -vcodec libx264 -crf 27 -preset ultrafast -threads 2 out.mp4

    


    



    And then I put 'b.mkv' first :

    



    


    ffmpeg -i b.mkv -i a.mp4 -f lavfi -t 0.1 -i anullsrc -filter_complex [0:v]scale=1920:808:force_original_aspect_ratio=decrease,pad=1920:808 :(ow-iw)/2 :(oh-ih)/2[v0] ; [v0][0:a][1:v][1:a]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] -vcodec libx264 -crf 27 -preset ultrafast -threads 2 out.mp4

    


    



    but this time I got error :

    



    


    Input link in1:v0 parameters (size 1920x808, SAR 0:1) do not match the corresponding output link in0:v0 parameters (1920x808, SAR 3232:3231)

    


    



    I don't understand why ?

    



    Any ideas anyone ?

    



    Many thanks in advance.

    


  • test : hlsenc : Make the hls_fmp4 sample file name match the target

    1er août 2020, par Martin Storsjö
    test : hlsenc : Make the hls_fmp4 sample file name match the target
    

    Previously, with the file name not matching the target, the files
    were regenerated every time fate is rerun - contrary to the other
    test targets in the same file. (While regenerating it every time
    might be desireable, as that's what the test is about, the file
    at least has a dependency on the ffmpeg executable, making them
    regenerated every time the executable is updated - and this change
    at least makes it consistent with the rest.)

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tests/fate/hlsenc.mak
  • pixblockdsp : Have function pointer prototype match implementation

    31 octobre 2016, par Diego Biurrun
    pixblockdsp : Have function pointer prototype match implementation
    

    libavcodec/pixblockdsp.c(58) : warning C4028 : formal parameter 1 different from declaration
    libavcodec/pixblockdsp.c(63) : warning C4028 : formal parameter 1 different from declaration
    libavcodec/pixblockdsp.c(66) : warning C4028 : formal parameter 1 different from declaration

    • [DBH] libavcodec/pixblockdsp.h