
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (37)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (6980)
-
Round number of bits read to next byte
4 décembre 2014, par watwat2014I have a header that can be any number of bits, and there is a variable called ByteAlign that’s calculated by subtracting the current file position from the file position at the beginning of the file, the point of this variable is to pad the header to the next complete byte. so if the header is taking up 57 bits, the ByteAlign variable needs to be 7 bits in length to pad the header to 64 bits total, or 8 bytes.
Solutions that don’t work :
Variable % 8 - 8, the result is the answer, but negative.
8 % Variable ; this is completely inaccurate, and gives answers like 29, which is blatantly wrong, the largest number it should be is 7.
how exactly do I do this ?
-
How can I use ffmpeg's swscale to convert from NV12 to RGB32 ?
22 avril 2013, par AsikSay I have an NV12 frame in memory as an array of bytes. I know :
- its Width and Height
- its Stride (total width of a line including padding), which is the same for Y and UV components as per NV12 specification
- I know where Y begins, U begins at Y + (Stride * Height), and V begins at U + 1 (interleaved with U).
Now this is what I have so far :
SwsContext* context = sws_getContext(frameWidth, frameHeight, AV_PIX_FMT_NV12, frameWidth, frameHeight, AV_PIX_FMT_RGB32, 0, nullptr, nullptr, nullptr);
sws_scale(context,So I don't know what the parameters to sws_scale should be :
- srcSlice : a pointer to the array of bytes ? It should apparently be a
pointer to a pointer, but what I have is just a single-dimensional
array of bytes. - srcStride : apparently expects an array of strides, but I have just one stride for the entire file. Should I pass an array with just
one element ? - srcSliceY : an offset to the first byte I guess ? Should be 0 then.
- srcSliceH : the frame height I guess
- dst : once again, pointer to a pointer, but my destination output is actually just another array of bytes...
- dstStride : Width * 4 I guess ?
Any help appreciated.
-
h.264 video in mp4 container jumps when played in VLC
30 avril 2013, par Jayanth NayakI have H.264 video and AAC audio generated in Andriod phone recieved wirelessly using SIP protocol and muxed using FFMPEG APIs, The generated mp4 when played through VLC or other player is never in Sync.
when I see the time bar of Video, it skips after a certain duration.For example :
in a video of 20s, the time bar seeks upto 14s properly, then it jumps to 18s and finishes at 20. The audio plays properly.I have following questions :
- Is PTS DTS calculations really required for muxing WITHOUT Encoding ? :
we used
PTS = (90000 * (1/FPS) * FrameNumber) - although this did not work :(
currently FFMPEG is taking care of it internally.
- Why the video jumps ? is it because of less number of frames or wrong PTS values or something else ?
-
For the following cases although There is jump, I am getting a good AV sync
-15,20,25 FPS qCIF & AAC AudioBut for 15 & 20 FPS of qVGA & VGA the audio lags by 0.5 seconds and for 25 FPS, the Video is just playing fast.
thus why is there a delay for qVGA and VGA but not present for qCIF ? any dependency of Resolution on Time Stamp (PTS) calculation ??Analysis of 25 FPS Video showed that there are enough number of frames for 10s but the total time for the video shown by VLC is 14s. Why is this so ? and again, this video also jumps from 9s to 13s.