
Recherche avancée
Médias (1)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (18)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (2545)
-
Command of FFMPEG to make a video from Image(JPEG) + Audio(.mp3) & Share video in Whatsapp
22 novembre 2018, par Neel MevadaI am trying to create a video .mp4 file from .mp3 audio & .jpeg image.
I am able to make a video and able to play in Video Players in Android devices.
But after creation of file when i tried to Share that Video in Whatsapp, at that time it shows a message "The file format not supported".
I am using below FFMPEG Command :
"-loop 1 -r 1 -i " + imageFilePath + " -i " + audioFilePath + " -c:v libx264 -crf 27 -tune stillimage -c:a copy -pix_fmt yuv420p -preset ultrafast -shortest " + pathOutputVideo(sectionName);
And for Sharing video , i am using below Code :
MediaScannerConnection.scanFile(ShareQuestionAudioActivity.this, new String[]{FfmpegController.pathOutputVideo(qModel.getSectionName().toUpperCase().replaceAll(" ", "_"))},
null, new MediaScannerConnection.OnScanCompletedListener() {
public void onScanCompleted(String path, Uri uri) {
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("video/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(FfmpegController.pathOutputVideo(qModel.getSectionName().toUpperCase().replaceAll(" ", "_"))));
startActivity(Intent.createChooser(shareIntent, "Share Question"));
}
});From this Link I found that i need to use H264 + AAC. but still not able to share video with supported file format
-
sending video issue whatsapp-web.js
13 mai 2024, par ShaharI'm trying to send an mp4 video as a sticker but i get an error, here's my code


client.on("message", (message) => {
 const media = MessageMedia.fromFilePath("./vid.mp4");
 client.sendMessage(message.from, media, { sendMediaAsSticker: true });
}



but I get this error


handleExit(new Error('ffmpeg exited with code ' + code));
 ^

Error: ffmpeg exited with code 1: pipe:0: Invalid data found when processing input
Cannot determine format of input stream 0:0 after EOF
Error marking filters as finished
Conversion failed!



its working with other mp4 files but with this one it doesnt, this is a good working mp4 file I generated with ffmpeg using the concat method.


-
Revision e66e9ddfb4 : Optimizes updates of encoder block ptrs Precalculated block ptrs do not need up
24 avril 2012, par Attila NagyChanged Paths : Modify /vp8/encoder/encodeframe.c Modify /vp8/encoder/ethreading.c Modify /vp8/encoder/firstpass.c Modify /vp8/encoder/onyx_if.c Optimizes updates of encoder block ptrs Precalculated block ptrs do not need updates during encoding. Set these at init stage. Moved the allocation of (...)