Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (73)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8250)

  • Steganography in video ffmpeg

    28 mars 2018, par SMT

    I need to take frames from video, save them as images. After that, i change images, set lsb green bits. After that i need new images to become video (WITH quality LOSELESS). Then i need to convert video to frames and get info.

    So scheme is video->frames->frames+inc-è>video->frames+inc-è>info.

    Problem is, frames+info before converting to video and after converting are different ! So, no info.

    Are there any ffmpeg keys, frames before and after creating video can be the same ?

  • Merging RGB Channels in FFMPEG [migrated]

    14 octobre 2016, par Draconis

    I have three grayscale videos, representing the red, green, and blue channels from a video. I extracted them using the extractplanes filter, and sent them through different pipelines.

    Now I would like to combine them again. But while extractplanes is working perfectly, mergeplanes is not. My initial attempt was this :

    [r][g][b] mergeplanes=0x001020 [output]

    This interprets my RGB channels as YUV, which is not what I want. My next attempt was this :

    [r][g][b] mergeplanes=0x001020:rgb24 [output]

    But according to the error message, Only planar formats with more than one component are supported. (Same for all other RGB and RGBA pixel formats I tried.)

    Is there another way to put these channels back together ? Or some way to convince mergeplanes to output RGB ?

  • 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

    


    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"


    


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

    


    container1 = client.containers.run("alpine", ["echo", "hello", "world"],name='autotest', detach=True)


    


    2 Questions

    


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