
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 (63)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (4289)
-
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.