
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (70)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (12014)
-
ffmpeg drawtext to overlay text repeatedly over the whole video space
5 avril 2022, par Osama Bin SaleemI want a specific text like
Hello world
to be spread across multiple rows and over the whole video space/page like this.


I'm running ffmpeg commands in the python script using bash as a subprocess. Sample code :




subprocess.run(
[
"ffmpeg",
"-i",
input_file,
"-vf",
f"drawtext=font=font_family:text=watermark_text:fontcolor=font_color:fontsize=font_sizebackground_box :watermark_position",
"-codec:a",
"copy",
"-preset",
encoding_preset,
f"./watermark/media_id.mp4",
]
)




Is there any good way to achieve this ?


-
ffmpeg how to attach & extract text/data file to audio or video stream ?
9 février 2021, par user2718593I have :


1/ AUDIO.m4a stream


2/ a cover album jpeg


3/ an UTF8 text file


I wish to bind all of them into a mkv/mp4 container.


To bind the audio & image I can


ffmpeg -y -i "AUDIO.mp4" -attach COVER.jpg -metadata:s mimetype="image/jpeg" -c:a copy "AUDIO_COPY_WITH_COVER.mka"


Further to bind the text file


ffmpeg -y -i "AUDIO_COPY_WITH_COVER.mka" -c copy -attach "TEXT.txt" -metadata:s:2 mimetype=application/octet-stream "AUDIO_JPEG_TEXT.mkv"


If I check I get :




Input #0, matroska,webm, from 'AUDIO_JPEG_TEXT.mkv' :
Metadata :
MINOR_VERSION : 512
COMPATIBLE_BRANDS : M4A isomiso2
MAJOR_BRAND : M4A
ENCODER : Lavf58.45.100
Duration : 00:36:10.36, start : 0.000000, bitrate : 67 kb/s
Stream #0:0 : Video : mjpeg (Baseline), yuvj420p(pc, bt470bg/unknown/unknown), 320x240 [SAR 1:1 DAR 4:3], 1k tbr, 1k tbn, 1k tbc (default)
Metadata :
FILENAME : COVER.jpg
MIMETYPE : image/jpeg
DURATION : 00:00:00.000000000
Stream #0:1 : Audio : aac (HE-AAC), 44100 Hz, stereo, fltp (default)
Metadata :
HANDLER_NAME : SoundHandler
MIMETYPE : image/jpeg
DURATION : 00:36:10.358000000
Stream #0:2 : Attachment : none
Metadata :
filename : TEXT.txt
mimetype : application/octet-stream




Question :


1/ How do I extract my text file ?


ffmpeg -i "AUDIO_JPEG_TEXT.mkv" -map 0:t -metadata:s:2 mimetype=application/octet-stream "my text.txt"



I get the error :
Unable to find a suitable output format for 'my text.txt'
my text.txt : Invalid argument


**2/If I replace the command with **


ffmpeg -y -i "AUDIO_COPY_WITH_COVER.mka" -c copy -attach "TEXT.txt" -metadata:t:2 mimetype=application/octet-stream "AUDIO_JPEG_TEXT.mkv"


Excuting
ffmpeg -i "AUDIO_JPEG_TEXT.mkv"


get error


EBML header parsing failed
AUDIO_JPEG_TEXT.mkv : Invalid data found when processing input


2/ How can I write in one command the 3 attachments(audio,img,document) ?


Thanks


-
ffmpeg command line write output to a text file
16 avril 2015, par Asanka sanjayaI’m using this script for shot detection in ffmpeg.
ffprobe -show_frames -of compact=p=0 -f lavfi "movie=test.mp4,select=gt(scene\,0.3)"
I need to write the output into a text file in order to read the output from a c program. How can I do this ? Any help is appreciated.