
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (35)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5843)
-
Using NReco FFMpegConverter in an azure function or in a azure web job
10 septembre 2020, par Manojb86Currently, I'm working on POC which converts h264 stream to MP4 file. I'm using NReco FFMpegConverter for that purpose and also use the Azure Cloud Service to host my service.

This Azure Cloud Service capture concurrent streams and convert the respective MP4 file. From the testing of this app so far I realize better to use Azure Function or Azure WebJobs to use only for the conversion of H264 stream to MP4 file. Then cloud service has more room to handle concurrent streams.

That I want to know, Is it possible to use NReco FFMpegConverter in Azure Function or Azure WebJobs without an issue ? are there any special configurations to consider because FFmpeg runs in a separate thread with NReco FFMpegConverter ?


-
How to initialize video decoder with a already decoded frame ?
27 mars, par Ragdoll CarLet's say I have an FFmpeg video decoder x264 initially initialized with some parameters. I am using C++ in my scenario. In normal conditions we push an encoded I-frame into such decoder and then referencing encoded P-frames.


I have a special case where my I-frame is already decoded. So in my case I want to :


- 

- push already decoded I-frame into my decoder
- push referencing encoded P-frames into my decoder






How can I initialize the decoder state with already decoded I-frame ? Currently to bypass these limitations I have to :


- 

- create a new temporary encoder
- encode already decoded I-frame
- decode encoded I-frame
- and then I am able to push referencing encoded P-frames










-
How to initialize video decoder with a already decoded frame ?
27 mars, par Ragdoll CarLet's say I have an FFmpeg video decoder x264 initially initialized with some parameters. I am using C++ in my scenario. In normal conditions we push an encoded I-frame into such decoder and then referencing encoded P-frames.


I have a special case where my I-frame is already decoded. So in my case I want to :


- 

- push already decoded I-frame into my decoder
- push referencing encoded P-frames into my decoder






How can I initialize the decoder state with already decoded I-frame ? Currently to bypass these limitations I have to :


- 

- create a new temporary encoder
- encode already decoded I-frame
- decode encoded I-frame
- and then I am able to push referencing encoded P-frames