
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (25)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (3923)
-
Crop black padding and resize back to original 1920x1080
1er juin 2020, par Satish KumarI have video of resolution 1920x1080 (16:9 aspect ratio). When played its padded with black box on all sides. How to remove the black boxes to get the 1920x1080 video ?






Below the audio and video details :



Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Maths Logic.mp4':
 Metadata:
 major_brand : isom
 minor_version : 512
 compatible_brands: isomiso2avc1mp41
 encoder : Lavf58.19.102
 Duration: 00:43:11.24, start: 0.000000, bitrate: 1475 kb/s
 Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 1405 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc (default)
 Metadata:
 handler_name : VideoHandler
 Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 64 kb/s (default)
 Metadata:
 handler_name : SoundHandler



-
How do I cut black frames from video with ffmpeg ?
13 mai 2020, par h0dgesI've got a timelapse video with overnight frames that are not illuminated and would like to know how to either :



- 

- Cut the black frames (
pblack=99
) out of the video AND correspondingly reduce the
length of the output video (i.e. not duplicate or interpolate frames) - Analyse the input images before generating the timelapse video in order to exclude the overnight images from the video.







Just to be awkward I'd like to use the
jrottenberg/ffmpeg
docker image.


This is the command I'm currently using to generate the timelapse video :



docker run -v timelapse-images:/images -v timelapse-videos:/videos jrottenberg/ffmpeg -y -f image2 -framerate 30 -pattern_type glob -i '/images/*.jpg' /videos/timelapse.mp4



- Cut the black frames (
-
FFMPEG - crop and pad a video (keep 3840x1920 but with black borders)
23 avril 2020, par SteenPetersenI am trying to crop a video so that I can remove a chunk of the content from the sides of a 360-degree video file using FFmpeg.



I used the following command and it does part of the job :



ffmpeg -i testVideo.mp4 -vf crop=3072:1920:384:0,pad=3840:1920:384:0 output.mp4




This will remove the sides of the video and that was initially exactly what I wanted (A). Now I'm wondering if it is possible to crop in the same way but to keep the top third of video. As such, A is what I have, B is what I want. :






I thought I could simply do this :



ffmpeg -i testVideo.mp4 -vf crop=3072:1920:384:640,pad=3840:1920:384:640 output.mp4




But that doesn't seem to work.



Any input would be very helpful.