
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (57)
-
(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 (...) -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7806)
-
How to specify size of output image in FFmpeg command ?
30 juillet 2023, par saladguyI'm extracting frame images from an MP4 video using
ffmpeg
in terminal.


I used the command :



ffmpeg -i Video.MP4 Pictures%d.bmp




Problem is that the extracted images have a size of 4.5-5MB ! I want smaller images, say around 1-2 MB. How do I limit the size of output images ?


-
fate/gif : Remove nonsense requirement
28 avril 2022, par Andreas Rheinhardtfate/gif : Remove nonsense requirement
It seems as if it was intended to declare fate-gif-color as prerequisite
of the fate-gifenc% tests. Yet the latter do not need anything from
the former, so this would be unnecessary. Furthermore, given that this
line has no associated recipe, it actually cancels implicit rules for
fate-gifenc% instead of adding a prerequisite.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
HEVC/H.265 interlaced format support in ffmpeg or VLC
30 décembre 2020, par Ernestas Gruodis"Music Box Russia" channel over satellite transmits in HEVC 1920x1080 25fps interlaced - and after recording VLC recognizes file as 50 fps, and resolution 1920x540 - half a height. But on satellite tuner the player works fine - it plays a file as 1920x1080 25fps... When we can expect support for HEVC/H.265 interlaced ? Here is recorded file (Garry Grey & Eva Miller - wtf). Also - a lot of lost frames in VLC player statistics..


EDIT :


I found some interesting info how in HEVC the interlace video content can be indicated here :




Unlike to H.264/AVC, interlace-dedicated coding in HEVC is not exist :


- 

- No mixed frame-field interaction (like PAFF in H.264/AVC)
- No interlace scanning of transform coefficients
- No correction MVX[1] (or y-component of MV) if current and reference pictures are in different polarity (top-bottom or
bottom-top).








However, in HEVC the interlace video content can be indicated
(signaled in VPS/SPS and
pic_timing
SEI messages the latter are
transmitted for every picture in the sequence). Interlace-related
setting :

- 

-
in VPS/SPS set
general_interlaced_source_flag=1
andgeneral_progressive_source_flag=0
. Indeed, the HEVC standard says :

if
general_progressive_source_flag
is equal to0
and
general_interlaced_source_flag
is equal to1
, the source scan type of
the pictures in the CVS should be interpreted as interlaced only.

-
in VPS/SPS set
general_frame_only_constraint_flag=0


-
in SPS VUI set
field_seq_flag=1
andframe_field_info_present_flag=1
. Notice that if these flags are ON
then picture timing SEIs shall be present for each picture.

-
transmission of Picture Timing SEI per picture with the following parameters :


source_scan_type = 0
to indicate interlace mode
for top field picture signalpict_struct=1
and for bottom field picturepict_struct=2














Perhaps it is possible to pass these parameters to ffmpeg/vlc before playing a file ?