
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (73)
-
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 ;
-
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 -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (9428)
-
How do Iuse FFMPEG API to add AV_CODEC_ID_ASS stream to my MPEGTS video format
31 juillet 2020, par Meir IvryI want to add an ASS/SSA subtitle stream to my video format using FFMPEG API.


The specification for that format is in the following link :
ASS file format specification
(http://www.tcax.org/docs/ass-specs.htm)


I know how to that with video, where it compirsed of the following steps


- 

- get the desired
AVCodec
- create new
AVStream
- create new
AVCodecContext
- create the proper
AVFrame
for each raw video frame. - use
avcodec_send_frame
to encode frame - use
avcodec_receive_packet
to get the frame packets - use
av_interleaved_write_frame
to write the packets
















My question is the same procedure applies to subtitles and, if so, how do I initialize the
AVFrame
?
Moreover, is there more to know other than that ?

Thanks.


- get the desired
-
Audio Video Editing in Python : How to do it ? [on hold]
12 mai 2019, par DoakCodeDoes anyone know how to do it ? It’s a bit more complex then then the usual docs I’ve read, so I don’t know where to start and I’d appreciate someone leading me to the right docs or the right path.
The software should be doing following :
- Taking a background picture and making it blurred -> The background
- In the front should be :
- A picture
- Text
- A progressing timer (which displays the current status of the video)
- Last, but not least, audio should be added to the video or vice versa as the video is supposed to end when the audio ends to round things up.
As this all is pretty complex editing for a python programme, I don’t know which library(ies) to use.. If someone has a solution / idea please reply !
-
AVFrame / AVPicture change color component
26 avril 2014, par RoeeLGiven a video stream (runs with SDL), I need to somehow make the video’s frames color green only, blue only and red only (depends on input).
How can I do that ? How can I set the color component to be RED only for instance ? (R = 255, G = 0, B = 0)
Didn’t manage to find anything on google. would love to get some assistance.
thanks