Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (67)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10717)

  • Anomalie #2417 : Icone edit-24.png

    15 novembre 2011, par Joseph Larmarange

    oki doki. Ceci dit, quand les nouvelles icônes de SPIP ont été réalisées, quelqu’un a-t-il garder un historique du ’edit-24.png’ utilisé pour générer les icônes ’article-edit-24.png’, ’rubrique-edit-24.png’ etc. ? De même, pour une mini icône ’err’ utilisée notamment par ’plugin-err-32.png’ ? Car si j’ai (...)

  • lavc/dxv : align to 4x4 blocks instead of 16x16

    9 février 2024, par Connor Worley
    lavc/dxv : align to 4x4 blocks instead of 16x16
    

    The previous assumption that DXV needs to be aligned to 16x16 was
    erroneous. 4x4 works just as well, and FATE decoder tests pass for all
    texture formats.

    On the encoder side, we should reject input that isn't 4x4 aligned,
    like the HAP encoder does, and stop aligning to 16x16. This both solves
    the uninitialized reads causing current FATE tests to fail and produces
    smaller encoded outputs.

    With regard to correctness, I've checked the decoding path by encoding a
    real-world sample with git master, and decoding it with
    ffmpeg -i dxt1-master.mov -c:v rawvideo -f framecrc -
    The results are exactly the same between master and this patch.

    On the encoding side, I've encoded a real-world sample with both master
    and this patch, and decoded both versions with
    ffmpeg -i dxt1-master,patch.mov -c:v rawvideo -f framecrc -
    Under this patch, results for both inputs are exactly the same.

    In other words, the extra padding gained by 16x16 alignment over 4x4
    alignment has no impact on decoded video.

    Signed-off-by : Connor Worley <connorbworley@gmail.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/dxv.c
    • [DH] libavcodec/dxvenc.c
    • [DH] tests/ref/fate/dxv3enc-dxt1
  • Python Docker SDK long command to container [duplicate]

    2 avril 2021, par Neil Bernard

    I need to send a fairly long command using python docker SDK

    &#xA;

    ffmpeg -f lavfi -re -i smptebars=duration=60:size=1280x720:rate=30 -f lavfi -re -i sine=frequency=1000:duration=60:sample_rate=44100 -pix_fmt yuv420p -c:v libx264 -b:v 1000k -g 30 -keyint_min 120 -profile:v baseline -preset veryfast -f mpegts "srt://127.0.0.1:4200?pkt_size=1316"&#xA;

    &#xA;

    I have an example where you ned to wrap each element in double quotes.

    &#xA;

    container1 = client.containers.run("alpine", ["echo", "hello", "world"],name=&#x27;autotest&#x27;, detach=True)&#xA;

    &#xA;

    2 Questions

    &#xA;

    Is there an elegant way to do this ?&#xA;If not how do I handle the bits that already have quotes ?

    &#xA;