Recherche avancée

Médias (91)

Autres articles (19)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (5361)

  • aarch64 : Add NEON optimizations for 10 and 12 bit vp9 loop filter

    5 janvier 2017, par Martin Storsjö
    aarch64 : Add NEON optimizations for 10 and 12 bit vp9 loop filter
    

    This work is sponsored by, and copyright, Google.

    This is similar to the arm version, but due to the larger registers
    on aarch64, we can do 8 pixels at a time for all filter sizes.

    Examples of runtimes vs the 32 bit version, on a Cortex A53 :
    ARM AArch64
    vp9_loop_filter_h_4_8_10bpp_neon : 213.2 172.6
    vp9_loop_filter_h_8_8_10bpp_neon : 281.2 244.2
    vp9_loop_filter_h_16_8_10bpp_neon : 657.0 444.5
    vp9_loop_filter_h_16_16_10bpp_neon : 1280.4 877.7
    vp9_loop_filter_mix2_h_44_16_10bpp_neon : 397.7 358.0
    vp9_loop_filter_mix2_h_48_16_10bpp_neon : 465.7 429.0
    vp9_loop_filter_mix2_h_84_16_10bpp_neon : 465.7 428.0
    vp9_loop_filter_mix2_h_88_16_10bpp_neon : 533.7 499.0
    vp9_loop_filter_mix2_v_44_16_10bpp_neon : 271.5 244.0
    vp9_loop_filter_mix2_v_48_16_10bpp_neon : 330.0 305.0
    vp9_loop_filter_mix2_v_84_16_10bpp_neon : 329.0 306.0
    vp9_loop_filter_mix2_v_88_16_10bpp_neon : 386.0 365.0
    vp9_loop_filter_v_4_8_10bpp_neon : 150.0 115.2
    vp9_loop_filter_v_8_8_10bpp_neon : 209.0 175.5
    vp9_loop_filter_v_16_8_10bpp_neon : 492.7 345.2
    vp9_loop_filter_v_16_16_10bpp_neon : 951.0 682.7

    This is significantly faster than the ARM version in almost
    all cases except for the mix2 functions.

    Based on START_TIMER/STOP_TIMER wrapping around a few individual
    functions, the speedup vs C code is around 2-3x.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/Makefile
    • [DH] libavcodec/aarch64/vp9dsp_init_16bpp_aarch64_template.c
    • [DH] libavcodec/aarch64/vp9lpf_16bpp_neon.S
  • Moviepy has issues when concatenating ImageClips of different dimensions

    22 mars 2021, par Lysander Cox

    Example of the issues : https://drive.google.com/file/d/1WxfYtDTD0kc_4WQzzvB6QXkZWo-e2Vuk/view?usp=sharing

    &#xA;

    Here's the code that led to the issue :

    &#xA;

    def fragmentConcat(comment, filePrefix):&#xA;    finalClips = []&#xA;    dirName = filePrefix &#x2B; comment[&#x27;id&#x27;]&#xA;    vidClips = [mpy.VideoFileClip(dirName &#x2B; &#x27;/&#x27; &#x2B; file) for file &#xA;                in natsorted(os.listdir(dirName))]&#xA;    &#xA;    finalClip = mpy.concatenate_videoclips(vidClips, method = "compose")&#xA;    finalClips.append(finalClip)&#xA;    &#xA;    if &#x27;replies&#x27; in comment:&#xA;        for reply in comment[&#x27;replies&#x27;]:&#xA;            finalClips &#x2B;= fragmentConcat(reply, filePrefix)&#xA;            &#xA;    return finalClips&#xA;&#xA;def finalVideoMaker(thread):&#xA;    fragmentGen(thread)&#xA;    filePrefix = thread[&#x27;id&#x27;] &#x2B; &#x27;/videos/&#x27;&#xA;&#xA;    #Clips of comments and their children being read aloud.&#xA;    commentClips = []&#xA;&#xA;    for comment in thread[&#x27;comments&#x27;]:&#xA;        commentClipFrags = fragmentConcat(comment, filePrefix)&#xA;        commentClip = mpy.concatenate_videoclips(commentClipFrags, method = "compose")&#xA;        commentClips.append(commentClip)&#xA;&#xA;        #1 second of static to separate clips.&#xA;        staticVid = mpy.VideoFileClip(&#x27;assets/static.mp4&#x27;)&#xA;        commentClips.append(staticVid)&#xA;&#xA;    finalVid = mpy.concatenate_videoclips(commentClips)&#xA;    finalVid.write_videofile(thread[&#x27;id&#x27;] &#x2B; &#x27;/final.mp4&#x27;)&#xA;

    &#xA;

    I'm certain that these issues appear somewhere in here, because the individual video "fragments" (which are concatenated here) do not exhibit the issue with the clip I showed.

    &#xA;

    I have tried adding and removing the method = "compose" parameter. It does not seem to have an affect. How can I resolve this ? Thanks.

    &#xA;

  • The new GDPR data protection regulation and potential consequences on Piwik

    7 septembre 2017, par Piwik Core Team — About, Privacy

    GDPR is a new data protection related regulation in Europe. GDPR stands for General Data Protection Regulation.

    The purpose of this European regulation is to strengthen and unify data protection for all individuals within the European Union. This also includes entities outside Europe willing to do business with European citizens. GDPR is a set of processes you need to follow within your organization to protect the privacy of European citizens.

    GDPR will start to apply in May 2018. It is recognized to be dissuasive because of the potential penalty of up to 4% of the yearly turnover, in case of infringement.

    Many articles have been written about GDPR including our previous article. Few of them are explaining how it will affect web analytics vendors : this is what this article is about.

    Am I really impacted by GDPR if I am a Piwik user ?

    As Piwik can collect personal data, the answer is yes. Piwik analytics data is impacted by the GDPR.

    As GDPR is a general concept, we decided from the official guidelines to assume what will be the potential consequences on the use of Piwik.

    There are 2 potential scenarios we can identify :

    • 1 – You are collecting personal data with Piwik
    • 2 – You are not collecting personal data with Piwik

    1 – Personal data collection with Piwik

    According to GDPR : IP addresses, cookies, UserID are personal data.

    IP addresses are personal data, so you will have to anonymize them unless you receive explicit consent from the visitor. Please view the following article in order to learn : how can I anonymize IP addresses in Piwik ?

    According to GDPR, cookies are personal data too. But as all cookies are not created equal it may be possible that some need to require user consent whereas other not. Whatever will be the final decision, you can learn about the first-party cookies created by Piwik and how to disable all tracking cookies in Piwik ?

    User ID, you are impacted if the User ID you assign is specific to an individual or if you can cross the User ID data further and find back the individual personal data.

    Any extra personal data you may collect with Piwik, it could be for example : first names, family names, e-mail address… You are able to collect such data using custom dimensions, custom variables…

    What are the rules I have to comply with ?

    By collecting personal data, you will have to respect EU citizens rights, which include :

    • The possibility for them to view the data you collected on them
    • The possibility to rectify some data concerning them
    • The possibility to delete their data when they request about it

    As you can imagine, for the first obligation, you will have to export all the data. So if a user is requesting it, you will have to export the data linked to his IP address(es). It can be easily exported as a .csv file for example.
    In order to do that, just create a segment according to the IP address of the user who requested it and then export the “Visitor log” report.
    If the personal data is not linked with the IP address but other attributes such as User ID or a custom dimension, you can provide the same data export by using the segment function and filtering on the personal data field.

    The data edit and deletion process on Piwik is a bit trickier as it currently requires administration system skills. We are planning to develop a new plugin for GDPR compliance (which will be available for free on the Marketplace). This plugin will let you edit and easily delete data of a particular user. Currently you can delete a specific user’s data by accessing the Piwik database and directly delete the different records for this specific user.

    2 – You are not collecting personal data with Piwik

    Unfortunately it is not because you do not collect personal data that you will not be affected by GDPR.
    The details of GDPR are not confirmed yet and GDPR could involve enabling the DoNotTrack setting by default on all browsers.
    Yes, you read it well, by default, unless the internet user uncheck this option, Piwik respecting DoNoTrack would not be able to track any user. If one needed to collect data anyway, Piwik Log Analytics and server-side tracking can be considered.

    If you need help regarding how to set up your Piwik installation in order to be GDPR compliant :

    Do you have a Piwik experience you would like to share with the community ? Please share it with us by contacting Piwik core team.