
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (37)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (4491)
-
Is it possible to fetch some key-frames of a video by using the HTTP Range header
9 décembre 2020, par pvdI've read the SO problem , and it seems not applying to my specific case.


Is it possible to fetch some key-frames of a video from web server by the HTTP Range header ? For example, for a 30 seconds duration video, we'd like to analysis the I-frame around 00:00:02, 00:00:15, 00:00:28.


I need to analysis the videos from internal web server to detect if there's specific watermarks in it and some other analysis.


Since the first I-frame might be invalid sometimes(Logo for example), we were planning to extract the I-frame from the 00:00:02, the middle I-frame, and the last 2nd second I-frame.


For example, for a 30 seconds duration video, we'd like to analysis the I-frame around 00:00:02, 00:00:15, 00:00:28.


We could make it works while download the whole video, since most of the data we downloaded from the server are not being used. I was wondering if maybe we could only use the HTTP Range header to download partial data and analysis it ?


-
How to correct crop image using FFMPEG&XILINX
17 mai 2023, par DmytroI use AWS vt1 with Xilinx SDK and FFMPEG. All from the AWS box with pre-built SDK and so on.
I need to extract frames from fullHD but scale it to 480p
I stuck with it. Could someone help with the correct options ?


I have this Python-based code :



 # If the video is greater than 480p, resize the frames to 480p
 if height > 480:
 command = [
 ffmpeg_path,
 '-c:v', 'mpsoc_vcu_h264',
 '-i', temp_video,
 '-filter_complex',
 'multiscale_xma=outputs=1: out_1_width=848: out_1_height=480: out_1_rate=half:[b]; [b]xvbm_convert[b1]',
 '-pix_fmt', 'yuv420p',
 '-ss', str(median_time),
 '-map', '[b1]',
 '-vframes', '1',
 '-q:v', '2',
 '-f', 'image2pipe',
 '-vcodec', 'mjpeg',
 '-y', '-'
 ]
 else: # Preserve the original resolution
 command = [
 ffmpeg_path,
 '-c:v', 'mpsoc_vcu_h264',
 '-i', temp_video,
 '-vf', 'xvbm_convert',
 '-pix_fmt', 'yuv420p',
 '-ss', str(median_time),
 '-vframes', '1',
 '-q:v', '2',
 '-f', 'image2pipe',
 '-vcodec', 'mjpeg',
 '-y', '-'
 ]
 output = subprocess.run(command, capture_output=True)
 frame = output.stdout




The second option with '-vf', 'xvbm_convert', work perfectly.
But the issue with the first.


-
Ffmpeg sidechaincompress with different input audio lengths
29 janvier 2023, par user19313832There are two input files :


- 

- First entry is a video with music - 6 min.
- Second entry - voice - 3 min.
Here
compr
will contain the audio of video that is muted when start talking (second input).






ffmpeg -y -i %pathToVideo% -i %pathToAudio% -filter_complex ^ ^"[0:a][1:a]sidechaincompress=threshold=0.015:ratio=19:level_sc=1:release=1400:attack=1[compr]^" ^ -c:v copy -map 0:v -map [compr]:a %out%


Problem - sound of the video is completely turned off when the voice ends, at the 3rd minute.


This works well for the first 3 minutes.
Then the sound of the video is turned off.


Half of the video remains without sound.
It is necessary that the sound of the video remains, and not turned off.
It looks like it only works on audios of the same length, but here the audios are different lengths ???????????


It is necessary that the sound of the video does not turn off after the 3rd minute. Because the voice file is only 3 minutes.