
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (78)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (8684)
-
ffprobe reading wrong frame rate, any workarounds besides MediaInfo ?
20 mai 2023, par MintyI want to check the frame rate of many videos. I decided to employ ffprobe :


ffprobe -v error -select_streams v -of default=noprint_wrappers=1:nokey=1 -show_entries stream=r_frame_rate faulty.mkv
=

500/21



That can't be right, what kind of fps is 500/21 ?


ffprobe faulty.mkv
(version 4.3.5-0+deb11u1+rpt3)

Stream #0:0: Video: (...), 23.81 fps, 23.81 tbr, 1k tbn, 23.98 tbc (default)



At least ffprobe 4 read the correct codec timescale i.e.
23.98 tbc (default)
, but in later versionstbc
has been deprecated :

Stream #0:0: Video: (...), 23.81 fps, 23.81 tbr, 1k tbn (default)



However, MediaInfo gets it right :


mediainfo faulty.mkv
=

(...)
Frame rate mode : Constant
Frame rate : 23.976 (24000/1001) FPS
(...)



I tried using
-count_packets
to then dividenb_read_packets
of the stream by theduration
of the file, I'm getting 1 second per hour error. This is much better compared to 23,8095, but packets are not frames, and only the prohibitively, unusably slow-count_frames
gets me the exact value.

The rest of my workflow uses ffprobe, so I'm reluctant to switch to MediaInfo completely. I get that the file is, well, faulty, but if
mediainfo
can do it, is there a way to make sure the correct frame rate is read withffprobe
without decoding the entire file as-count_frames
seems to do ?

-
Why is ffmpeg cut setting the wrong duration on my output file
9 mai 2023, par danielson317Setup


I am trying to break a video up into parts using some basic commands I have seen available.


I have tried :


ffmpeg -ss 00:00:00 -t 00:11:42 -i 'original.m4v' -acodec copy -vcodec copy 'output.m4v'


I also tried more generic (and much slower) :


ffmpeg -ss 00:00:00 -t 00:11:42 -i 'original.m4v' 'output.m4v'


I am on Ubuntu 20 with ffmpeg 4.2.7-0. I know it is a little outdated but this computer lost it's network card so I cannot update it at this time.


The problem


In both cases the video cuts correctly to only have the first 11:42. However the video properties state the video is 31 minutes long (the length of the original). This file size also reflects the reduced size I would expect from the cut. When I play the video in VLC it reports the video is 31 minutes long but scanning or playing past 11:42 "crashes" the playback.


Question


Why is the new video reporting the wrong length and how do I correct this ? Preferably in the conversion process not a secondary command.


-
ImageJ / Fiji shows wrong number of frames in video (FFMPEG import)
28 avril 2023, par locoric_polskaI am counting the number of animals in a an area using Fiji. I import the video through the FFMPEG plug-in (videos are mp4 with mpeg-4 codec). However, I noticed that when I import the videos Fiji uploads the wrong number of frames, and I cannot understand why and how.


An example. I have a video shot at 25fps which is 1582s long. If I do the calculations the video should have 39550 frames in total (1582*25). When I open it through a Computer vision package in R, I see that the video correctly contains 39550 frames. However, when loaded in Fiji, the shown number of frames is 49511. So Fiji is adding 9961 frames to the video. This is consistent across all videos that are recorded in 25fps, while it does not appear in videos shot at 24fps.


Curiously, I found that the ratio between the number of frames read by Fiji and the 'real' number of frames is consistent between 0.79 and 0.80. This makes me think that Fiji is expecting the video to be 30fps and (possibly) duplicating frames to adjust the video to this assumption.


Unfortunately, I discovered all this after finishing my analysis and while trying to merge this dataset with another obtained through CV. The number of frame does not match between datasets and I am not sure how to solve this.


Any help would be greatly appreciated !!


An idea is to multiply all the frame numbers by 0.8 to adjust them to the old assumption. This solution assumes that Fiji is duplicating frames throughout the video in a consistent way