
Recherche avancée
Autres articles (80)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (9319)
-
ffmpeg make video from multiple images and one audio with specific timestamps for each image [closed]
2 juin 2024, par TrojoshI have an audio file and I have 15 images. I would like to make a video from these 15 still images. Each image may appear for different number of seconds.
E.g. Image 1,2,3 will take 3 seconds each but image 4 may take 40 seconds because it is more complex.


How can I use ffmpeg to specify timestamp for each image and add audio to the same.


Also note that the sum of timestamps of all images = running time of the audio.


I looked at this question and image2 filter option from the official documentation but no luck in producing such a video


-
H264 to jpeg FFMPEG decoding/encoding in C
2 décembre 2023, par Vikram KamathI'm trying to write a script in C to decode H264 frames and then encode them to jpeg/png format, frame-by-frame.


I'm going off of the tutorials given in the official decoder and encoder examples, but with a decoder type of AV_CODEC_ID_H264 and an encoder type AV_CODEC_ID_MJPEG, the files I am saving seem to be unreadable. Am I using the incorrect codecs ?


-
LibAV FFMPEG How to get devices list ?
23 septembre 2020, par FennecFixI looked up to documantation and found a very convenient
AVInputFormat
's funcitonget_device_list
. But the problem is I can't use it.

Here's my short code snippet


#include <qdebug>

extern "C"
{
#include <libavformat></libavformat>avformat.h>
#include <libavdevice></libavdevice>avdevice.h>
}

int main(int argc, char *argv[])
{
 avdevice_register_all();

 AVFormatContext *formatContext = avformat_alloc_context();

 AVInputFormat *inputFormat = av_find_input_format("dshow");

 AVDeviceInfoList devices;
 inputFormat->get_device_list(formatContext, &devices);

 qDebug() << devices.nb_devices;

 avformat_free_context(formatContext);

 return 0;
}
</qdebug>


And that code CRASHES when I'm trying to print
devices
. How do I use that function properly ? The official domentation has no examples using that function.