Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • 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" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7068)

  • zmbvdec : Check the buffer size for uncompressed data

    11 novembre 2012, par Michael Niedermayer
    zmbvdec : Check the buffer size for uncompressed data
    

    Also don’t pointlessly set the buffer size to 1 after copying
    one packet.

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/zmbv.c
  • j2k/jpeg2000 : split data pointer in int & float.

    30 mai 2013, par Michael Niedermayer
    j2k/jpeg2000 : split data pointer in int & float.
    

    This fixes a TODO item and unifies both decoders structures
    It also fixes undefined behavior due to aliasing violations

    I choose 2 fields instead of a union because mistakely using the
    wrong type with a union will lead to hard to debug "wrong output"
    while with 2 fields mistakely using the wrong type will crash
    with a null pointer derefernce which is much easier to debug

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

    • [DH] libavcodec/j2k.c
    • [DH] libavcodec/j2k.h
    • [DH] libavcodec/j2kdec.c
    • [DH] libavcodec/j2kenc.c
    • [DH] libavcodec/jpeg2000.c
    • [DH] libavcodec/jpeg2000.h
    • [DH] libavcodec/jpeg2000dec.c
  • FFMPEG use -strict -2

    21 août 2020, par GILO

    Hi I've been recently using the command below

    &#xA;

    Ffmpeg -i song.mp3 -loop 1 -i image.jpg -filter_complex \&#xA;"[0:a]showfreqs=mode=line:ascale=log:fscale=log:s=1280x518[sf]; \&#xA; [0:a]showwaves=s=1280x202:mode=p2p[sw]; \&#xA; [sf][sw]vstack[fg]; \&#xA; [1:v]scale=1280:-1,crop=iw:720[bg]; \&#xA; [bg][fg]overlay=shortest=1:format=auto,format=yuv420p,drawtext=fontfile=/usr/share/fonts/TTF/Vera.ttf:fontcolor=white:x=10:y=10:text=&#x27;\"Rated80s Prophets Prey\" by Comics On Film&#x27;[out]" \&#xA;-map "[out]" -map 0:a -c:v libx264 -preset fast -crf 18 -c:a libopus output.mp4 &#xA;

    &#xA;

    from this post Showfreqs and showwaves over background image ?.

    &#xA;

    &#xA;

    However I changed the output file to from output.mkv to output.mp4 as I would prefer to use mp4

    &#xA;

    &#xA;

    I get the below error

    &#xA;

    [mp4 @ 0x7f962b816800] opus in MP4 support is experimental, add '-strict -2' if you want to use it.&#xA;Could not write header for output file #0 (incorrect codec parameters ?) : Experimental feature&#xA;Error initializing output stream 0:0 —&#xA;[libopus @ 0x7f962b819800] 1 frames left in the queue on closing

    &#xA;

    The main information from that error is

    &#xA;

    &#xA;

    opus in MP4 support is experimental, add '-strict -2' if you want to use it.

    &#xA;

    &#xA;

    but where do I use -strict -2 within the command to make the command possible

    &#xA;