
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (68)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (8024)
-
Anomalie #3259 : Auteur_modifier ne fait pas appel à auteur_instituer
4 octobre 2014, par cedric -tout à fait, c’est indiqué dans le PHPDoc de la fonction. Quand on demande un $force_update=true, les champs webmestre, pass et login sont modifiés par
objet_modifier_champs
.auteur_instituer
ne sait pas modifier elle meme login et pass : elle delegue a la fonction d’inc/auth correspondant au type de l’auteur (spip, ldap...). Dans le cas d’un auteur spip, auth/spip rappelle ensuiteauteur_modifier
avec force_update=true pour faire une modification directe en base des champs.On a donc un double passage par
auteur_modifier
dans ce cas, c’est un peu embrouillant et on aurait peut-être pu faire autrement. Ça pose un problème dans certains cas ? -
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 !