Recherche avancée

Médias (91)

Autres articles (75)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (8592)

  • dnn_backend_native_layer_mathunary : add acos support

    18 juin 2020, par Ting Fu
    dnn_backend_native_layer_mathunary : add acos support
    

    It can be tested with the model generated with below python script :

    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.acos(x)
    x2 = tf.divide(x1, 3.1416/2) # pi/2
    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
  • Raspberry Pi cannot connect to IP camera, while Windows PC can ?

    28 novembre 2020, par gf000

    I have an IP camera (Provision ISR, DI-320IPS-VF, 2MP IR Vari-Focal Dome IP Camera). When I connect it to my router (it is a 10 or 12 years old TP-LINK TL-WR1043ND), it will immediately show up in "IP Manager" (this is a program by the manufacturer) on my Windows PC. If I double click on the camera's row, Internet Explorer opens up, and everything is working fine. On the same Windows PC, if I open VLC Media Player, and paste this URL : rtsp ://username:password@localipaddress:554/profile1&#xA;It works fine.

    &#xA;

    I have also a "Raspberry Pi 4 model B 4 GB RAM", which is connected to the same router. If I open VLC Media Player, and I paste the same URL, it doesn't work. I also created an ffmpeg one-liner, which would take a photo, but that is also not working.

    &#xA;

    My final goal would be to be able to take photos with that ffmpeg one-liner, on the Raspberry Pi.

    &#xA;

    Maybe the Raspberry Pi is not powerful enough to handle the stream ? Or, could it be the problem that the IP-camera is sending H-264 / H-265 video stream, and the Raspberry Pi cannot handle it ?

    &#xA;

    Thank you for your help. Any idea could help me.

    &#xA;

  • What is the difference between "location" and "location-eng" metadata of a MP4 file ?

    10 décembre 2020, par Weihang Jian

    I am trying to retrieve GPS information from media files using ffprobe, for example :

    &#xA;

    $ ffprobe -v quiet -show_format sample.mp4&#xA;[FORMAT]&#xA;filename=sample.mp4&#xA;nb_streams=2&#xA;nb_programs=0&#xA;format_name=mov,mp4,m4a,3gp,3g2,mj2&#xA;format_long_name=QuickTime / MOV&#xA;start_time=0.000000&#xA;duration=4.293000&#xA;size=11888152&#xA;bit_rate=22153556&#xA;probe_score=100&#xA;TAG:major_brand=mp42&#xA;TAG:minor_version=0&#xA;TAG:compatible_brands=isommp42&#xA;TAG:creation_time=2020-09-20T11:33:49.000000Z&#xA;TAG:location=&#x2B;25.0731&#x2B;121.3663/&#xA;TAG:location-eng=&#x2B;25.0731&#x2B;121.3663/&#xA;TAG:com.android.version=10&#xA;TAG:com.android.manufacturer=Google&#xA;TAG:com.android.model=Pixel&#xA;[/FORMAT]&#xA;

    &#xA;

    We can see that there are 2 tags that look like ISO6709 representations, location and location-eng.

    &#xA;

    And here are my questions :

    &#xA;

      &#xA;
    1. What is the difference between location and location-eng ? It looks like they are always the same. Why do we need 2 different keys with same the value ?
    2. &#xA;

    3. Are location and location-eng really in ISO6709 representations ? Is there any specification or standard I can refer to ?
    4. &#xA;

    &#xA;

    I would really appreciate your help.

    &#xA;