Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (15835)

  • Best logical formula to determine perceptual / "experienced" quality of a video, given resolution / fps and bitrate ?

    20 mars 2023, par JamesK

    I am looking for a formula that can provide me with a relatively decent approximation of a Video's playback quality that can be calculated based off of four metrics : width, height, fps, and bitrate (bits/sec). Alternatively, I can also use FFMPEG or similar tools to calculate a Video's playback quality, if any of those tools provide something like what I am looking for here.

    


    An example of what a Video might look like in my problem is as follows :

    


    interface Video {
  /** The width of the Video (in pixels). */
  width: number
  /** The height of the Video (in pixels). */
  height: number
  /** The frame rate of the Video (frames per second). */
  fps: number
  /** The bitrate of the video, in bits per second (e.g. 5_000_000 = 5Mbit/sec) */
  bitrate: number
}


    


    I came up with the following function to compute the average amount of bits available for any given pixel per second :

    


    const computeVideoQualityScalar = (video: Video): number => {
  // The amount of pixels pushed to the display, per frame.
  const pixelsPerFrame = video.width * video.height
  
  // The amount of pixels pushed to the display, per second.
  const pixelsPerSecond = pixelsPerFrame * video.fps
  
  // The average amount of bits used by each pixel, each second,
  // to convey all data relevant to that pixel (e.g. color data, etc)
  const bitsPerPixelPerSecond = video.bitrate / pixelsPerSecond
  
  return bitsPerPixelPerSecond
}


    


    While my formula does do a good job of providing a more-or-less "standardized" assessment of mathematical quality for any given video, it falls short when I try to use it to compare videos of different resolutions to one another. For example, a 1080p60fps video with a bitrate of 10Mbit/sec has a greater visual fidelity (at least, subjectively speaking, to my eyes) than a 720p30fps video with a bitrate of 9Mbit/sec, but my formula would score the 720p30fps video significantly higher than the 1080p60fps video because the 720p video has more bits available per pixel per second than the 1080p video.

    


    I am struggling to come up with ideas as to how to either come up with a different way to calculate the "subjective video quality" for a given video, or extend upon my existing idea here.

    


  • Anomalie #3184 (Nouveau) : md5_boutons_plugins()

    11 mars 2014, par Franck Dalot

    Bonsoir
    PHP 5.5.7, essai fait chez OVH
    prefix des tables "spipdev21"
    Installation faite en MySQL

    Installation par FTP de spip 2.1.26 [21251] puis passage en spip 3.0.16 [21253]
    Au lieu d’arriver sur la page qui m’indique comme quoi ma base de données va êtes mise à jour, je tombe sur une page blanche avec :
    Fatal error : Call to undefined function md5_boutons_plugins() in /.../ecrire/inc/filtres_ecrire.php on line 47
    Si je réactualise la page, cela fonctionne normalement.

    J’ai fait l’essai d’un passage de spip 2.1.26 [21251] vers spip 3.1 [21256] même problème.

    J’ignore si c’est http://core.spip.org/issues/2307 qui fait sont retour mais cela ressemble au cas que j’évoque (sauf que je ne vide pas le cache pour que cela soit bon)

  • Anomalie #3981 : Menu "Écrire une nouvelle traduction" non présent pour rédacteurs

    12 août 2017, par jluc -

    Il semble que la création utilise https://core.spip.net/projects/spip/repository/revisions/22643
    où c’est l’autorisation ’changertraduction’ qui est utilisée,

    Celle ci est définie dans inc/autoriser comme étant par défaut équivalente à l’autorisation pour ’modifier’.
    Ça explique le problème car n’importe qui ne peut pas modifier n’importe quoi.

    Il faudrait créer une autorisation ’creertraduction’ et une fonction ’autoriser_creertraduction_dist’ qui soit plus tolérante, et l’utiliser au bon endroit, au lieu de devoir utiliser ’changertraduction’

    Mais je sais pas si ce bon endroit c’est le source du commit 22643 pointé plus haut, car je ne sais pas si seule la création y passe, ou si la modification y passe aussi...