Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (85)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

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

  • What is the future of Piwik ?

    16 avril 2014, par Matthieu Aubry — About, Community

    In this post we will explain the key values that drive the Piwik project, and expand upon our goals and roadmap for both the short and long term future.

    What are Piwik’s goals ?

    Piwik will :

    • Enable you to make Data driven decisions
    • Let you focus on what matters most to you
    • Gather in one place all your important metrics (Key Performance Indicators)
    • Be the best open alternative to Google Universal Analytics
    • Support Developers and provide opportunities for them to innovate on Piwik platform

    The Piwik Roadmap

    To achieve our goals, the Piwik team along with Piwik PRO have prepared the Piwik Roadmap.

    We have created this Roadmap based on hundreds of emails sent by users, tickets, along with thousands of forums posts. Feel free to send us feedback about this roadmap.

    What are Piwik values ?

    Our strong values govern all that we do :

    • Open Platform
    • Privacy
    • Reliability
    • Security
    • Usability
    • No data limit
    • Freedom
    • Engineered to last

    Summary

    It is our mission to provide an open and innovative alternative for people who prefer not to use (or cannot use) Google Analytics to analyse and measure their users.

    It is a fun and epic mission which we are proud to be a part of.

    Thank you for trusting us and the project, and keep in touch,

    Matthieu
    Piwik founder

  • aacenc_is : add a flag to use pure coefficients instead

    5 septembre 2015, par Rostislav Pehlivanov
    aacenc_is : add a flag to use pure coefficients instead
    

    This commit adds a flag to use the pure coefficients instead
    of the processed ones (sce->coeffs). This is needed because
    IS will apply the changes to the coefficients immediately
    before the adjust_common_prediction function and it doesn’t
    make sense to measure stereo channel coefficient difference
    when one of the channels coefficients are all zero.

    Therefore add a flag to use pure coefficients in that case.
    TNS is the only thing touching the coefficients before IS
    so common window prediction will not take that into account
    but the effect of the TNS filter per coefficient can be small
    (a few percent) so to some approximation it’s fine to just
    ignore that.

    Also fixed a small error which doesn’t alter the results
    that much. pow(sqrt(number), 3.0/4.0) == pow(number, 3.0/8.0) !=
    pow(number, 3.0/4.0).

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc_is.c
    • [DH] libavcodec/aacenc_is.h
    • [DH] libavcodec/aacenc_pred.c
  • FPS from RTSP stream info does not match actual framerate

    17 mai 2021, par Krapow

    I have a 25FPS RTSP stream coming from an IP-camera. I can successfully display the video stream. But when analyzing the stream with ffmpeg (ffprobe actually), I observe fewer frames per second rate :

    &#xA;

    $ ffprobe -rtsp_transport tcp -i rtsp://camera_ip:554/stream -select_streams v:0 -show_frames -show_entries frame=coded_picture_number,pkt_pts_time -of csv=p=0&#xA;Stream #0:0: Video: h264 (Main), yuvj420p(pc, bt709, progressive), 640x480, 25 fps, 25 tbr, 90k tbn, 50 tbc&#xA;0.400000,0&#xA;0.080000,1&#xA;0.120000,2&#xA;0.200000,3&#xA;0.240000,4&#xA;0.320000,5&#xA;0.360000,6&#xA;0.440000,7&#xA;0.480000,8&#xA;0.560000,9&#xA;0.600000,10&#xA;0.680000,11&#xA;0.720000,12&#xA;0.800000,13&#xA;0.840000,14&#xA;0.920000,15&#xA;0.960000,16&#xA;1.040000,17&#xA;1.080000,18&#xA;1.160000,19&#xA;1.200000,20&#xA;1.280000,21&#xA;1.320000,22&#xA;1.400000,23&#xA;1.440000,24&#xA;1.520000,25&#xA;1.560000,26&#xA;1.640000,27&#xA;1.680000,28&#xA;1.760000,29&#xA;1.800000,30&#xA;1.880000,31&#xA;1.920000,32&#xA;2.000000,33&#xA;

    &#xA;

    We can clearly see the 80ms gap between some of the frames, resulting in a 16fps stream.

    &#xA;

    I have observed the same framerate issue with GStreamer (printing information in the rtpjitterbuffer indicates the frame gap is sometimes 80ms and sometimes 40ms). But the weird thing is, I encountered the same issue with an HDMI-RJ45 decoder, and I doubt the same issue comes from 2 different devices.&#xA;I didn't get much more informations using -loglevel debug or trace.&#xA;Does anybody have an idea about what is going wrong in the stream ?

    &#xA;

    (I used ffprobe 4.2.3 and the last "2021-05-09-git-8649f5dca6-full_build-www.gyan.dev" with the same results, and GStreamer 1.16.2 with a pipeline like "urisourcebin ! h264depay ! h264parse ! fakesink")

    &#xA;

    EDIT : The camera skipping of frames was caused by the activation of a third stream in the options. I find it really weird that it skips exactly the same frames every seconds. However, I still haven't found the cause of the downrate on my RTSP encoder.&#xA;Anyway, this was actually hardware related and not software related.

    &#xA;