
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (34)
-
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 (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (5745)
-
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 HixI 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.


Up until decoding the message everything runs without issue.
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.


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

What I tried :

Used to extract the frame both times :

ffmpeg -ss 5.52 -i original.mp4 -vframes 1 frames_%d.jpg



Used to combine the image back into the video :


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



-
doc/ffmpeg : improve -disposition, -stats, and -progress documentation
17 octobre 2024, par Soma Luczdoc/ffmpeg : improve -disposition, -stats, and -progress documentation
disposition :
Clarify the meaning of the default value, and how the '+' and '-'
prefixes work. Add more examples.stats :
Clarify that it appears as an "info"-level log.progress :
Add info about the "progress" key's value being "continue" or "end".
Add an example of logging to stdout.Signed-off-by : Soma Lucz <luczsoma@gmail.com>
Signed-off-by : Anton Khirnov <anton@khirnov.net> -
Solution Merge mp3+mp4 together with FFMPEG or other
7 juin 2018, par SandyUgaleI have been working on a project where I have .mp3 and video file (.MP4). I have FFMG on my AWS server and I’m providing both to FFMPEG give me complete video file with provided audio file. Then I send this file to my AWS S3 and then fetch this video as needed in my web app.
Problem/Use Case :
If I have 10 mp3 and 10 mp4 video files then I have to wait the until it complete all videos then only I can send them on S3, so Im waiting for long as number goes up.
Can I control this ?
Solution-1 : Don’t need to wait for loop
Meaning instead of starting all merging together parallel I would like merging to be done one by one. Referencing above example
First merge of 1.mp3 + 1. Mp4= 1.mp4 (complete file) –upload s3.
Second merge of 2.mp3 + 2. Mp4= 2.mp4 (complete file) –upload s3.
Tenth merge of 10.mp3 + 10. Mp4= 10.mp4 (complete file) –upload s3.Solution-2 : send video as they ready
How I can know which video has been ready to send to s3 ?
Solution-3 : other service
Is there any other online API or services where I can pass mp3 + mp4 and give me video url simply after merging so technically video will hosted on either their platform or on my S3 doest matter.