Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (81)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (14606)

  • 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
  • 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
  • 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.

    &#xA;&#xA;

    input information :

    &#xA;&#xA;

    a.mp4 1920x808 , b.mkv 1280x720

    &#xA;&#xA;

    First I tried command below and it works fine :

    &#xA;&#xA;

    &#xA;

    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

    &#xA;

    &#xA;&#xA;

    And then I put 'b.mkv' first :

    &#xA;&#xA;

    &#xA;

    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

    &#xA;

    &#xA;&#xA;

    but this time I got error :

    &#xA;&#xA;

    &#xA;

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

    &#xA;

    &#xA;&#xA;

    I don't understand why ?

    &#xA;&#xA;

    Any ideas anyone ?

    &#xA;&#xA;

    Many thanks in advance.

    &#xA;