Recherche avancée

Médias (91)

Autres articles (104)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • 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 (12667)

  • configure : allow the gas-preprocessor to be called with an absolute path.

    16 avril 2013, par Lars Hammarstrand
    configure : allow the gas-preprocessor to be called with an absolute path.
    

    Allow the configure tool to call the gas-preprocessor with an absolute
    path when included with either the "—as" or with a separate "—gas"
    option. The patch is backward compatible and will not break any current
    configuration setups.

    The new behavior that comes with this option can be utilized in the
    following ways :

    Examples :

    - Just as single option that includes both the gas-preprocessor.pl and
    cc/as at the same time :

    $ configure —as="/opt/app/build-tools/gas-preprocessor.pl \
    /Applications/Xcode.app/.../Developer/usr/bin/gcc"

    - Call gas-preprocessor with a separate option in conjunction with —as :

    $ configure —gas="/opt/app/build-tools/gas-preprocessor.pl" \
    —as="/Applications/Xcode.app/.../Developer/usr/bin/gcc"

    - Address only the the gas-preprocessor and it will automatically fall
    back to as or cc whichever that’s defined :
    $ configure —gas="/opt/app/build-tools/gas-preprocessor.pl"

    - Or if no gas-preprocessor.pl is explicitly defined, it falls back to
    the old behaivor.

    • [DH] configure
  • Anomalie #3366 (Nouveau) : Rester identifié quelques jours

    16 décembre 2014, par sophie drouvroy

    Quand un rédacteur coche "rester identifé quelques jours" ce n’est pas pris en compte.
    Il faut qu’il active manuellement le cookie de correspondance dans le back-office.

  • Data lost in ffmpeg in overlay / steganography using ffmpeg

    3 août 2020, par g Kishore

    Goal : Embedding some textual information into a video(steganography) using LSB encoding. And retrieving the embedded text.

    


    Procedure followed :

    


      

    1. Extracted one frame from video :
ffmpeg -i -vf "select=eq(n,34)" -vframes 1 out.bmp
    2. 


    3. LSB encoding of text into out.bmp using C-code :
NOTE : Decoding of embedded text from out.bmp is working fine[c-code]
    4. 


    5. Insert out.bmp back into original video :
ffmpeg -i -i out.bmp -filter_complex "[0:v][1:v]overlay=enable='between(n,0,0)'[out]" -acodec copy -map
"[out]" -map 0:1 output.mp4
    6. 


    7. Extracted frames from encoded video "output.mp4" :
ffmpeg -i output.mp4 frames%d.bmp
NOTE : Replaced image is present in extracted frames
    8. 


    9. Decoding the text from frames0.bmp, frames1.bmp, frames2.bmp using C-Code
NOTE : not able to decode the text. I tried comparing image data of out.bmp & frames0.bmp, frames1.bmp, frames2.bmp. Lots of changes are there.
    10. 


    


    PS :
. C-code used to encode & decode text into the image is working well. No ambiguity in it.
. Encoded video is playable properly. Only issue is loss of embedded text while overlaying the encoded image back into the video

    


    Any help is appreciated.