
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (31)
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (4910)
-
Alter YUV values of AVFrames in FFMpeg
1er février 2012, par KageI'm trying to apply an effect to a video by altering the YUV values using FFMpeg programmatically in C.
Let's say I want to increase the luminescence of each pixel of each frame by 100.
I tried just altering the first frame of a video stream. I decoded the frame, added 100 to each Y value in the AVFrame->data[0], encoded the frame again and saved it into the video.
However when I play the video back, it is not only the first frame that has been altered, but the first 30 frames.
Why are the other frames effected when I only change the AVFrame->data of the first frame ?
I tried again by changing all the Y, U and V values in AVFrame->data to 0 for only the first frame.
When I play back the video, it starts off completely green like expected, after the first frame the video stays green for 30 frames. I can see the other frames start to come slowly through the green for 30 frames and then suddenly the green disappears and the video plays as normal. Why is it not just the first frame that is green ?
My method is as follows :
Video Stream
|
| *(Get a frame)*
|
vAVPacket (encoded data)
|
| *(Decode the frame)*
|
vAVFrame (raw data) --------------------------------------------------> AVFrame (raw data)
*(Edit AVFrame->data values)*
|
| *(encode frame)*
|
V
AVPacket (encoded data)
|
| *(save frame)*
|
V
Video StreamAm I doing something obviously wrong ?
How can I change just one frame without effecting the others ?
-
Mp4 takes too long to start
27 septembre 2013, par user2783132I'm converting my video to mp4 H.264 with ffmpeg than changing the moov atom to front with qt-faststart, so I can stream the video.
Everything works fine with small videos 5-10 minute, but when it comes to large ones 1-2 hrs it can take a significant time to start playing. it loads 6-10mb and only than start playing the video.
In flv that's not the case, it plays immediately no matter how large the video is. How can i fix that ?
-
Is android ffmpeg library able to play video located in the assets folder
23 août 2013, par NagarajuI am using the
ffmpeg
library to play videos in Android. Video plays well from the SDCard but I would prefer it to play from theassets
folder as it is more secure.Could anyone point me in the right direction ?