
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (55)
-
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 (8333)
-
Need to know how to send Rtp packet to vlc from reading H265 video
16 septembre 2021, par dinesh47I am trying to send the rtp packet to vlc to play h265 mp4 file i have derived the packet formation from ffmpeg source code


uint8_t nal_type = (buf[0] >> 1) & 0x3F;
 /*
 * create the HEVC payload header and transmit the buffer as fragmentation units (FU)
 *
 * 0 1
 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 * |F| Type | LayerId | TID |
 * +-------------+-----------------+
 *
 * F = 0
 * Type = 49 (fragmentation unit (FU))
 * LayerId = 0
 * TID = 1
 */
 s->buf[0] = 49 << 1;
 s->buf[1] = 1;

 /*
 * create the FU header
 *
 * 0 1 2 3 4 5 6 7
 * +-+-+-+-+-+-+-+-+
 * |S|E| FuType |
 * +---------------+
 *
 * S = variable
 * E = variable
 * FuType = NAL unit type
 */
 s->buf[2] = nal_type;
 /* set the S bit: mark as start fragment */
 s->buf[2] |= 1 << 7;



but i am geting a scrambled image only like the following



all i can see is one still scrambled image.i am adding some header in the code for time stamp and other thing and i am packing the buf from 5 position excluding start code


-
Combine multiple images into a video using ffmpeg [closed]
13 avril 2021, par Mayank ThapliyalI want to combine multiple images into a video. I will use
ffmpeg
with Python as Python script will help me select images accordingly. And I have to fulfill multiple conditions :

- 

-
Frame-rate will be 0.2 (5 second for each image).


-
Screen-Ratio should be 18:9. But all images have different dimensions. And neither I want to crop nor I want to stretch them. So I want to pad them with a black background.


-
Ability to add background music.










But the issue is that I am not able to adjust images. Either images get stretched to full screen or they get cropped. So currently first I use
PIL
library to adjust images first then combine them withffmpeg
. But it takes a good amount of time and I don't like this approach.

Please help me solve my issue by only using
ffmpeg
(I guess that it will be fast enough).

-
-
Revision f68aaa38d6 : Modified frame buffer handling This patch is the first step toward simplifying
11 juillet 2014, par Adrian GrangeChanged Paths :
Modify /vp9/common/vp9_alloccommon.c
Modify /vp9/common/vp9_alloccommon.h
Modify /vp9/common/vp9_postproc.c
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/encoder/vp9_encoder.c
Modified frame buffer handlingThis patch is the first step toward simplifying the
frame buffer handling.The final goal is to have a common frame buffer handling
framework for both encoder and decoder that incorporates
the existing ability to use externally allocated memory.Change-Id : I2c378a4f54a39908915f46c4260e17a080db7ff1