
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (66)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (6303)
-
How to overlay audio over video in ffmpeg ? [duplicate]
24 avril 2019, par Rohan PatilThis question already has an answer here :
I wanna make a android app which can overlay a audio to a video by clicking a button and I am using ffmpeg. The format of my video and audio are mp4 and mp3. I want the output video format is mp4. I have searched for many solutions but none of them give me a satisfied result. All of them are just replaced the original audio of my video to the audio of the audio file. What I want is to overlay my aduio file to the video file and keep the sound of the video at the same time. Does anyone have any idea to do this ? Thank you !
command = new String[]{"-i", input_movie.mp4,"-i", input_audio.mp3, "-c", "copy", "-map", "0:0", "-map", "1:0", output.mp4};
-
ffmpeg on aws-lambda not converting GIF to MP4 all the way
1er septembre 2019, par JayThis is my input gif
Using Windows CMD my output is exactly what I want
ffmpeg -i in.gif out.mp4
Same code on AWS Lambda results in mp4 cut short
Might help knowing im running python 3.2
os.system("/tmp/ffmpeg -i /tmp/input.gif -c:v libx264 -preset veryslow -qp 0 /tmp/out.mp4")
I already tried -stream_loop -1 and that did not work
Already tried -movflags faststart -pix_fmt yuv420p
Already tried uploading the latest static files for ffmpeg 4.2
I also verified that the input.gif was not corrupted in the tmp directory
I’ve also seen other ffmpeg question for linux and people report their mp4 being short...what can I do ?
See the comment for the top answer.
-
Convert raw RGB32 file to JPEG or PNG using FFmpeg
16 décembre 2019, par PhotometricStereoContext
I used a
C++
program to write raw bytes to a file (image.raw) inRGB32
format :R G B A R G B A R G B A ...
and I want to be able to view it in some way. I have the dimensions of the image.
My tools are limited to command line commands (e.g.
ffmpeg
). I have visited theffmpeg
website for instructions, but it deals more with converting videos to images.
Questions
Is it possible to turn this file into a viewable file type (e.g.
.jpeg
,.png
) usingffmpeg
. If so, how would I do it ?If it’s not possible, is there a way I can use another command ?
It that’s still not viable, is there any way I can manipulate the
RGB32
bytes inside a C++ program to make it more suitable without the use of external libraries ? I also don’t want to encode.jpeg
myself like this.