
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (104)
-
Personnaliser les catégories
21 juin 2013, parFormulaire 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, parLes 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 2011MediaSPIP 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 Hammarstrandconfigure : 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. -
Anomalie #3366 (Nouveau) : Rester identifié quelques jours
16 décembre 2014, par sophie drouvroyQuand 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 KishoreGoal : Embedding some textual information into a video(steganography) using LSB encoding. And retrieving the embedded text.


Procedure followed :


- 

- Extracted one frame from video :
ffmpeg -i -vf "select=eq(n,34)" -vframes 1 out.bmp
- LSB encoding of text into out.bmp using C-code :
NOTE : Decoding of embedded text from out.bmp is working fine[c-code]
- 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
- Extracted frames from encoded video "output.mp4" :
ffmpeg -i output.mp4 frames%d.bmp
NOTE : Replaced image is present in extracted frames
- 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.












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.