
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (61)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (11849)
-
ffmpeg Error extracting one frame
24 août 2018, par Efrem BlazquezI need to extract a frame from a video to generate a thumbnail, and I’m using the next call to ffmpeg :
ffmpeg -i /projectes/macba/TEMP/video_test/DIG_A-HIS-04943_001_h.mov -r 1 -ss 00:00:59 -t 120:-1 test.jpg
and it results in a
[buffer @ 0x174efe0] Buffering several frames is not supported. Please consume all available frames before adding a new one.
And doesn’t generates the image, I’m not very used to use ffmpeg and I’m having trubbles to spot the problem.
Using ffmpeg version 0.8.17-4:0.8.17-0ubuntu0.12.04.2
Any hints ?
Thanks !
-
Difference of pixel value between MATLAB and OpenCV extracting frames from video
31 mai 2017, par Andrey KosmachevI’m trying to open a video file encoded with H264 using Matlab. I rip the first frame, analyze the north-western square 9x9, I get the following matrix :
116 128 126 126 127 126 127 126 130
125 128 127 131 131 130 131 129 127
147 150 150 152 157 151 157 152 149
145 152 158 151 155 158 154 158 156
145 155 157 155 154 161 152 158 154
149 154 151 156 158 152 157 152 156
151 152 155 152 158 151 155 150 151
148 161 156 157 155 155 152 152 154
150 157 150 152 151 149 151 156 155I try to do the same thing with OpenCV and have the following result :
116 128 125 125 126 125 126 125 130
124 128 126 131 131 130 131 129 126
146 150 150 152 157 151 157 152 149
145 152 158 151 154 158 153 158 156
145 154 157 154 153 160 152 158 153
149 153 151 156 158 152 157 152 156
151 152 154 152 158 151 154 150 151
147 160 156 157 154 154 152 152 153
150 157 150 152 151 149 151 156 154It is seen that approximately in 50 percent of cases the brightness value of the pixel in the first matrix is one more than in the second one. For this reason, the results of further processing, respectively, in Matlab and OpenCV are different. Can someone explain to me, what is this effect related to and how to overcome it ?
-
ffmpeg to encode with no compression and set bitrate from png to video
16 mai 2021, par cderI am using Google Colab, VSGan/ESRGan to run this, the notebook I am using has this ffmpeg command to encode the video.


!ffmpeg -f image2 -framerate 25 -i /content/ESRGAN/results/%04d.png -c:v h264_nvenc -preset slow -qp 18 -pix_fmt yuv420p output.mp4



What I want to accomplish is an encode in 8bit, a set bitrate and no compression. is it possible ? if so how ? just force bitrate flag ?