Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (78)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene 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, par

    Par 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, par

    MediaSPIP 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)

  • Video duration time FFMpeg PHP

    11 août 2016, par Eliott

    This is probably a dumb question, im trying to get the duration from a video using FFMpeg : Video Duration Time = 1m:47s

    My function

    $ffmpeg = \FFMpeg\FFProbe::create();
    $duration = $ffmpeg->format($videos[0]->real_path)->get('duration');

    Now if i print $duration : "109.713333"

    How can i get the video duration time from $duration ??

    Note :

    I Tried this

    109.713333 / 60 = 1.82
    82/60 = 1.36 and 82-36 = 46
  • rtpdec : make the NTP time values unsigned.

    14 juillet 2010, par Diego Elio 'Flameeyes' Pettenò
    rtpdec : make the NTP time values unsigned.
    

    As per RFC3550, section 4, the NTP time is provided as 64-bit unsigned
    integer, so follow the same logic here.

    Reviewed-by : Luca Barbato <lu_zero@gentoo.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/rtpdec.h
  • How can I split an mp4 video with ffmpeg every time the volume is zero ?

    14 mars 2019, par Juan Pablo Fernandez

    I need to split a video into many smaller videos.
    I have tried PySceneDetect and its 2 scene detection methods don’t fit my need.

    The idea is to trigger a scene cut/break every time the volume is very low, every time audio level is less than a given parameter. I think overall RMS dB volume level is what I mean.

    The purpose is to split an mp4 video into many short videos, each smaller video with short dialog phrases.

    So far I have a command to get the overall RMS audio volume level.

    ffprobe -f lavfi -i amovie=01x01TheStrongestMan.mp4,astats=metadata=1:reset=1 -show_entries frame=pkt_pts_time:frame_tags=lavfi.astats.Overall.RMS_level,lavfi.astats.1.RMS_level,lavfi.astats.2.RMS_level -of csv=p=0

    How can I get only the minimum values for RMS level and its corresponding frame or time ?

    And then how can I use ffmpeg to split the video in many videos on every frame that corresponds to a minimum RMS ?

    Thanks.