Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (39)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (5932)

  • Documentation #4098 : Compléter la documentation de #TRI pour générer un lien de tri avec un sens ...

    28 septembre 2018, par cedric -

    Juste pour être sûr, ce que Jean-Luc précise c’est que tu peux générer deux liens de changement de sens de tri avec la syntaxe suivante :

    [(#TRI’>’, #CHEMIN_IMAGEtri-asc-16.png|balise_img<:par_tri_croissant :>)]
    [(#TRI’<’, #CHEMIN_IMAGEtri-desc-16.png|balise_img<:par_tri_decroissant :>)]
    


    comme dans https://zone.spip.org/trac/spip-zone/browser/spip-zone/_plugins_/albums/branches/v2/prive/objets/liste/albums.html#L47
    Ce sont 2 liens uniques qu’on met en général en début de bare de tri.
    Mais tu peux aussi les générer de manière contextuelle à côte de chaque lien en testant le champ de tri :

    [(#TRIid_album, <:medias:par_id :>)]
    [(#TRI|==id_album|oui)
      [(#TRI’>’, #CHEMIN_IMAGEtri-asc-16.png|balise_img<:par_tri_croissant :>)]
      [(#TRI’<’, #CHEMIN_IMAGEtri-desc-16.png|balise_img<:par_tri_decroissant :>)]
    ]
    

    Bon je réponds un petit peu à côté de la question mais quand même donc : on peut générer des liens de sens de tri dynamique, et les mettre en contextuel à côté de chaque lien de tri si c’est ce que tu veux.

    C’est vrai que le même lien qui change le sens du tri "comme dans phpMyAdmin" ce n’est pas prévu, mais a moitié aussi parce que je ne suis pas du tout certain que ce soit une bonne pratique accessibilité/usabilité
    (ie le même lien dont l’action change selon le contexte, ce n’est pas hyper cognitif)

    Donc à voir/discuter sous cet aspect peut-être aussi avant de coder quoi que ce soit de plus

  • Is there a way to extract a video frame, encode a sentence behind it, put it back, and then decode it ?

    29 juillet 2021, par Jesse Hix

    I am trying to do stenography on an MP4 video where I am pulling a frame out at a certain time, 5.52 sec, saving that frame as a jpg or jpeg using any image stenography tool, in this case stegosuite, to encode a sentence behind the image and then reinsert that image back into the video at the same time and then extract it again with the same command and using the same steno tool read the message.

    &#xA;

    Up until decoding the message everything runs without issue.&#xA;I know that it is not working because the videos are not the same in size meaning that the frankenstein video is not the same as the original and thus messing up the frame extraction.

    &#xA;

    Question :
    Is there a way to extract a frame encode a sentence behind it put it back and then decode it ?

    &#xA;

    What I tried :
    &#xA;Used to extract the frame both times :

    &#xA;

    ffmpeg -ss 5.52 -i original.mp4 -vframes 1 frames_%d.jpg&#xA;

    &#xA;

    Used to combine the image back into the video :

    &#xA;

    ffmpeg -i original.mp4 -i frames_1_embed.jpg -filter_complex "[1]setpts=5.52/TB[im];[0][im]overlay=eof_action=pass" -c:a copy out_1.mp4&#xA;

    &#xA;

  • log : allow color highlighting in Cygwin’s mintty

    4 avril 2014, par James Darnley
    log : allow color highlighting in Cygwin’s mintty
    

    Configure will detect the availability of the Windows’ console functions and set
    HAVE_SETCONSOLETEXTATTRIBUTE. Meaning av_log will use those functions to
    control colours. When ffmpeg is run in Cygwin’s mintty terminal emulator it
    will not use colour highlighting in this case.

    Mintty responds to the usual escape code colours (it even supports 256 colours).
    Windows’ cmd.exe does not. Fortunately it seems that Cygwin’s emulation layer
    now translates the basic 16 colours into Windows’ Console command functions.

    That means that we can have av_log use the standard colour commands and let
    ffmpeg print colours in both mintty and cmd.

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

    • [DH] libavutil/log.c