Recherche avancée

Médias (91)

Autres articles (87)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10281)

  • avcodec/mjpegdec : Fix exif rotation->displaymatrix conversion

    18 décembre 2021, par Andreas Rheinhardt
    avcodec/mjpegdec : Fix exif rotation->displaymatrix conversion
    

    The cases in which there was flipping together with a rotation
    that is not a multiple of the identity were wrong.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mjpegdec.c
  • dnn_backend_native_layer_mathunary : add cos support

    6 juin 2020, par Ting Fu
    dnn_backend_native_layer_mathunary : add cos support
    

    It can be tested with the model generated with below python scripy

    import tensorflow as tf
    import numpy as np
    import imageio

    in_img = imageio.imread('input.jpeg')
    in_img = in_img.astype(np.float32)/255.0
    in_data = in_img[np.newaxis, :]

    x = tf.placeholder(tf.float32, shape=[1, None, None, 3], name='dnn_in')
    x1 = tf.multiply(x, 1.5)
    x2 = tf.cos(x1)
    y = tf.identity(x2, name='dnn_out')

    sess=tf.Session()
    sess.run(tf.global_variables_initializer())

    graph_def = tf.graph_util.convert_variables_to_constants(sess, sess.graph_def, ['dnn_out'])
    tf.train.write_graph(graph_def, '.', 'image_process.pb', as_text=False)

    print("image_process.pb generated, please use \
    path_to_ffmpeg/tools/python/convert.py to generate image_process.model\n")

    output = sess.run(y, feed_dict=x : in_data)
    imageio.imsave("out.jpg", np.squeeze(output))

    Signed-off-by : Ting Fu <ting.fu@intel.com>
    Signed-off-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_native_layer_mathunary.c
    • [DH] libavfilter/dnn/dnn_backend_native_layer_mathunary.h
    • [DH] tools/python/convert_from_tensorflow.py
    • [DH] tools/python/convert_header.py
  • avcodec/mpeg12dec : Don't initialize IDCT more than once

    1er octobre 2023, par Andreas Rheinhardt
    avcodec/mpeg12dec : Don't initialize IDCT more than once
    

    Before 998c9f15d1ca8c7489775ebcca51623b915988f1, the IDCTDSPContext
    has only been initialized in ff_mpv_common_init() which is deferred
    until immediately before decoding a picture ; to nevertheless parse
    the quant matrices in sequence headers or quant matrix extensions,
    a dummy (identity) permutation has been stored in the codec's init
    function ; after ff_mpv_common_init() which could change the permutation
    the matrices were repermutated.

    Yet since said commit, the IDCTDSPContext is initialized during init
    and does not change afterwards (unless the user forces different CPU
    flags), so there is no need to reinitialize it ; the repermutation code
    can be removed as well.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12dec.c