
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (14)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (3926)
-
ffmpeg - How to auto crop Harry Potter moving newspaper style video ?
18 mai 2019, par hahahhhhhhaThe Harry Potter moving newspaper is like a video overlay on a static background. Here is an example youtube video :
https://youtu.be/qQUUNmd3aco?t=1m17s the video starting from 1min, 17sec.HOWTO crop only the video part ? I have an image to show what i mean by the moving newspaper and what area does the video locate and what is the static background part. Please refer to the image. The area I draw by pink is where i mean by real video and any area except the video, is the static part.
here is an illustration image :
https://imgur.com/s6vRqekI understand if the frame size of the video does not change, I can specify the w, h, x, y to crop. But what if the frame size changes ? ie. w, h, x, y changes.(w, h : width, height of the video. x, y: Coordinate system starting point ) Is there a way to autodetect the static part and only crop the real video part ? like ffmpeg cropdetect for letterboxing. I tried cropdetect but failed. Any suggestion is welcome and I prefer using ffmpeg but any other softwares are welcome !
-
Why does ffmpeg return a different framecount than ffprobe for the same file ?
5 mars 2018, par GregI’m trying to count the number of frames in a video but ffmpeg and ffprobe are giving me two different answers.
$ time ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 myvideo.mp4
2858
real 0m2.987s
user 0m2.740s
sys 0m0.172sWhen I check the same file with ffmpeg I get 2 more frames...
$ time ffmpeg -y -i myvideo.mp4 -vcodec copy -acodec copy -f null /dev/null 2>&1 | grep 'frame=' | awk '{print $2}'
2860
real 0m0.127s
user 0m0.080s
sys 0m0.032sI used ffprobe to output all of the frames and count the number of "[FRAME]"s in the resultant output...
ffprobe -i myvideo.mp4 -show_frames -v error | grep -o '\[FRAME\]' | wc -l
2858Which as you can see shows the number ffprobe thought there were.
Obviously I would prefer to use ffmpeg here because it is significantly faster than ffprobe and I am dealing with thousands of videos that need parsing and indexing. However the failure isn’t consistent across multiple videos ; sometimes it’s 1 out, other times it’s 2 or more...
Unfortunately, I have been counting frames for the past two years using the ffmpeg method, so I have a significant library of videos to reprocess now ... he gulps... I guess its a good way to verify the readability of the files on the cluster... even so, its going to take probably a few weeks to recalculate all of the existing video frame sizes.
-
How to play every audio frame using python-ffpmeg ?
15 octobre 2019, par GflunkyI have audio frames
(numpy.ndarray)
and i want to play them in real time usingffmpeg
. How can i do that ?