Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (81)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (14603)

  • Rails FFMPEG - convert to webm gives error for encoder 'libvpx-vp9'

    7 mai 2019, par Milind

    I am testing video conversion to convert video file into mp4 and webm.
    I have also setup ffmpeg and compiled properly.Mp4 conversion succeeds but webm breaks always complaining as -

    The encoder 'libvpx-vp9' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.

    its strange as I aready have vp8 present -

    mike1011:~/workspace (s1) $ ffmpeg -encoders | grep -i vp
    ffmpeg version git-2016-03-29-bf1495d Copyright (c) 2000-2016 the FFmpeg developers
     built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.1)
     configuration: --enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-version3
     libavutil      55. 19.100 / 55. 19.100
     libavcodec     57. 32.100 / 57. 32.100
     libavformat    57. 29.101 / 57. 29.101
     libavdevice    57.  0.101 / 57.  0.101
     libavfilter     6. 40.102 /  6. 40.102
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.101 /  2.  0.101
     libpostproc    54.  0.100 / 54.  0.100
    V..... libvpx               libvpx VP8 (codec vp8)
    V..X.. libvpx-vp9           libvpx VP9 (codec vp9)
    V..... wrapped_avframe      AVFrame to AVPacket passthrough
    A..... wavpack              WavPack

    my model..video.rb looks like -

    has_attached_file :video,
      :styles => {
         :mp4video => { :geometry => '1280x720>', :format => 'mp4',
           :convert_options => { :output => { :vcodec => 'libx264', :movflags => '+faststart',  :strict => :experimental} } },
         :webmvideo => { :geometry => '1280x720>', :format => 'webm',
           :convert_options => { :output => { :vcodec => 'libvpx-vp9'} } },
         :oggvideo => { :geometry => '1280x720>', :format => 'ogg',
           :convert_options => { :output => { :vcodec => 'libtheora',
             :acodec => 'libvorbis',  :strict => :experimental } } },
         screenshot: { geometry: '640x480#',  :convert_options => {
           :output => { :vframes => 1, :s => '300x169', :ss => '00:00:02'} } }
       },    
       :processors => [:transcoder],
        ###other setting comes here

     ##using delayed-paperclip for background processing of videos
     process_in_background :video

     def process_delayed!
       unless self.video.job_is_processing
         self.video.job_is_processing = true
         self.video.post_processing = true
         self.video.reprocess!
         self.video.job_is_processing = false
       end  
     end  

    I am sharing my complete output below(with error highlighted :)) -

       2.4.1 :003 > v=Video.find 25
         Video Load (1.8ms)  SELECT  "videos".* FROM "videos" WHERE "videos"."id" = $1 LIMIT 1  [["id", 25]]
        => #<video></video>mp4", video_file_size: 1105773, video_updated_at: "2019-02-02 00:17:37", duration: 18.112, slug: "sample320-mp4-dbb96526-5db1-4c59-9152-615fc077eca7", active: true, created_at: "2019-02-02 00:17:37", updated_at: "2019-02-02 00:17:37", video_processing: true>
       2.4.1 :004 > v.process_delayed!
       [paperclip] copying /videos/25/original/Sample320.mp4 to local file /tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4
       [paperclip] Trying to link /tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4 to /tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1qmn2uk.mp4
       I, [2019-02-03T00:12:09.849885 #677953]  INFO -- : Running transcoding...
       ["/usr/local/bin/ffmpeg", "-y", "-i", "/tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4", "-s", "360x240", "-aspect", "1.5", "/tmp/2f51a6ecbce019dcad28a46b5be980ec20190203-677953-rh2lh0.mp4"]

       I, [2019-02-03T00:12:16.060391 #677953]  INFO -- : Transcoding of /tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4 to /tmp/2f51a6ecbce019dcad28a46b5be980ec20190203-677953-rh2lh0.mp4 succeeded

       [paperclip] Trying to link /tmp/2f51a6ecbce019dcad28a46b5be980ec20190203-677953-rh2lh0.mp4 to /tmp/2961027361de4afbbb86f7764a034ee020190203-677953-1g0vvwe.mp4
       I, [2019-02-03T00:12:16.082499 #677953]  INFO -- : Running transcoding...
       ["/usr/local/bin/ffmpeg", "-y", "-i", "/tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4", "-s", "360x240", "-aspect", "1.5", "/tmp/2f51a6ecbce019dcad28a46b5be980ec20190203-677953-fv3pzs.webm"]

       E, [2019-02-03T00:12:16.202420 #677953] ERROR -- : Failed encoding...
       ["/usr/local/bin/ffmpeg", "-y", "-i", "/tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4", "-s", "360x240", "-aspect", "1.5", "/tmp/2f51a6ecbce019dcad28a46b5be980ec20190203-677953-fv3pzs.webm"]

       ffmpeg version git-2016-03-29-bf1495d Copyright (c) 2000-2016 the FFmpeg developers
         built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.1)
         configuration: --enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-version3
         libavutil      55. 19.100 / 55. 19.100
         libavcodec     57. 32.100 / 57. 32.100
         libavformat    57. 29.101 / 57. 29.101
         libavdevice    57.  0.101 / 57.  0.101
         libavfilter     6. 40.102 /  6. 40.102
         libswscale      4.  0.100 /  4.  0.100
         libswresample   2.  0.101 /  2.  0.101
         libpostproc    54.  0.100 / 54.  0.100
       Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1.mp4':
         Metadata:
           major_brand     : isom
           minor_version   : 512
           compatible_brands: isomiso2avc1mp41
           encoder         : Lavf57.76.100
         Duration: 00:00:18.11, start: 0.000000, bitrate: 488 kb/s
           Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 360x240 [SAR 32:27 DAR 16:9], 353 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)
           Metadata:
             handler_name    : VideoHandler
           Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 129 kb/s (default)
           Metadata:
             handler_name    : SoundHandler

    XXXXXXXXXXXXXXXXXXXXXXXX====== HERE COMES THE ERROR========XXXXXXXXXXXX
       [libvpx-vp9 @ 0x3e3dec0] The encoder 'libvpx-vp9' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.

       Errors: encoded file is invalid.

       Paperclip::Error: There was an error processing the transcoder for 6b5665997c56c12544e7069276f6660b20190203-677953-1jsw8d1
              ...
  • Error installing package in anaconda : Attempted to make prefix record for unknown package type

    25 janvier 2020, par ashwinids

    I’m getting the error below for doing any operation install, update or uninstall

    ERROR conda.core.link:_execute(700) : An error occurred while
    uninstalling package ’::ffmpeg-3.2.4-2’. Rolling back
    transaction : done

    ValueError(’Attempted to make prefix record for unknown package type :
    ffmpeg-3.2.4-2’,)

    Details about the environment :
    OS : ubuntu 18.04
    python version : intelpython3

    Conda info

        active environment : base
       active env location : /home/p****/intelpython3
               shell level : 1
          user config file : /home/p****/.condarc
    populated config files : /home/p****/.condarc
             conda version : 4.7.12
       conda-build version : not installed
            python version : 3.6.8.final.0
          virtual packages : __cuda=10.1
          base environment : /home/p****/intelpython3  (writable)
              channel URLs : https://conda.anaconda.org/intel/linux-64
                             https://conda.anaconda.org/intel/noarch
                             https://repo.anaconda.com/pkgs/main/linux-64
                             https://repo.anaconda.com/pkgs/main/noarch
                             https://repo.anaconda.com/pkgs/r/linux-64
                             https://repo.anaconda.com/pkgs/r/noarch
             package cache : /home/p****/intelpython3/pkgs
                             /home/p****/.conda/pkgs
          envs directories : /home/p****/intelpython3/envs
                             /home/p****/.conda/envs
                  platform : linux-64
                user-agent : conda/4.7.12 requests/2.20.1 CPython/3.6.8 Linux/5.0.0-36-generic ubuntu/18.04.3 glibc/2.27
                   UID:GID : 1000:1000
                netrc file : None
              offline mode : False

    Conda list

    # packages in environment at /home/p****/intelpython3:
    #
    # Name                    Version                   Build  Channel
    _tflow_select             2.1.0                       gpu    anaconda
    absl-py                   0.8.0                    py36_0    anaconda
    affine                    2.3.0                    pypi_0    pypi
    asn1crypto                0.24.0                   py36_3    intel
    astor                     0.8.0                    py36_0    anaconda
    atomicwrites              1.3.0                    pypi_0    pypi
    attrs                     19.3.0                   pypi_0    pypi
    audioread                 2.1.6                    py36_0    <unknown>
    awscli                    1.16.292                 pypi_0    pypi
    backcall                  0.1.0                    py36_2    <unknown>
    backports                 1.0                      py36_9    <unknown>
    bayesian-optimization     1.0.1                    pypi_0    pypi
    bleach                    2.1.3                    py36_2    <unknown>
    boto3                     1.10.19                  pypi_0    pypi
    botocore                  1.13.28                  pypi_0    pypi
    bzip2                     1.0.6                        17    intel
    c-ares                    1.15.0            h7b6447c_1001    anaconda
    causalgraphicalmodels     0.0.4                    pypi_0    pypi
    certifi                   2018.1.18                py36_2    intel
    cffi                      1.11.5                   py36_3    intel
    chardet                   3.0.4                    py36_3    intel
    click                     7.0                      pypi_0    pypi
    click-plugins             1.1.1                    pypi_0    pypi
    cligj                     0.5.0                    pypi_0    pypi
    colorama                  0.4.1                    pypi_0    pypi
    conda                     4.7.12                   py36_0  
    conda-env                 2.6.0                         1  
    conda-package-handling    1.6.0            py36h7b6447c_0    anaconda
    cryptography              2.3                      py36_1    intel
    cudatoolkit               10.1.243             h6bb024c_0  
    cudnn                     7.6.0                cuda10.1_0    anaconda
    cupti                     10.1.168                      0    anaconda
    cvxopt                    1.2.3                    pypi_0    pypi
    cycler                    0.10.0                   py36_7    intel
    cython                    0.29.6           py36h7b7c402_0    intel
    daal                      2019.4                intel_243    <unknown>
    daal4py                   2019.4           py36h7b7c402_0    intel
    dbus                      1.13.12              h746ee38_0  
    decorator                 4.3.0                    py36_3    <unknown>
    descartes                 1.1.0                    pypi_0    pypi
    docutils                  0.15.2                   pypi_0    pypi
    dowhy                     0.1.1                    pypi_0    pypi
    entrypoints               0.2.3                    py36_2    <unknown>
    expat                     2.2.6                he6710b0_0  
    ffmpeg                    3.2.4                         2    <unknown>
    fiona                     1.8.11                   pypi_0    pypi
    fontconfig                2.12.6               h49f89f6_0  
    freetype                  2.8                  hab7d2ae_1  
    funcsigs                  1.0.2                    py36_7    intel
    gast                      0.3.2                      py_0    anaconda
    geopandas                 0.6.2                    pypi_0    pypi
    get_terminal_size         1.0.0                    py36_7    <unknown>
    glib                      2.63.1               h5a9c865_0  
    google-pasta              0.1.7                      py_0    anaconda
    grpcio                    1.14.1           py36h9ba97e2_0    anaconda
    gst-plugins-base          1.12.4               h33fb286_0  
    gstreamer                 1.12.4               hb53b477_0  
    h5py                      2.9.0            py36h7918eee_0    anaconda
    hdf5                      1.10.4               hb1b8bf9_0    anaconda
    html5lib                  1.0.1                    py36_4    <unknown>
    icc_rt                    2019.4                intel_243    <unknown>
    icu                       58.2                 h9c2bf20_1  
    idna                      2.6                      py36_3    intel
    imageio                   2.6.1                    pypi_0    pypi
    imgaug                    0.2.6                    pypi_0    pypi
    impi_rt                   2019.4                intel_243    <unknown>
    importlib-metadata        0.23                     pypi_0    pypi
    intel-openmp              2019.4                intel_243    <unknown>
    intelpython               2019.4                        0    intel
    ipp                       2019.4                intel_243    <unknown>
    ipykernel                 4.6.1                    py36_2    <unknown>
    ipython                   6.3.1                    py36_3    <unknown>
    ipython_genutils          0.2.0                    py36_2    <unknown>
    jedi                      0.12.0                   py36_2    <unknown>
    jinja2                    2.10.3                   pypi_0    pypi
    jmespath                  0.9.4                    pypi_0    pypi
    joblib                    0.13.2                   pypi_0    pypi
    jpeg                      9b                   h024ee3a_2  
    json5                     0.8.5                    pypi_0    pypi
    jsonschema                3.2.0                    pypi_0    pypi
    jupyter                   1.0.0                    py36_7    intel
    jupyter_client            5.1.0                    py36_5    <unknown>
    jupyter_console           5.1.0                    py36_2    <unknown>
    jupyter_core              4.4.0                    py36_6    <unknown>
    jupyterlab                1.2.3                    pypi_0    pypi
    jupyterlab-server         1.0.6                    pypi_0    pypi
    keras                     2.3.1                    pypi_0    pypi
    keras-applications        1.0.8                      py_0    anaconda
    keras-bert                0.80.0                   pypi_0    pypi
    keras-embed-sim           0.7.0                    pypi_0    pypi
    keras-layer-normalization 0.14.0                   pypi_0    pypi
    keras-multi-head          0.22.0                   pypi_0    pypi
    keras-pos-embd            0.11.0                   pypi_0    pypi
    keras-position-wise-feed-forward 0.6.0                    pypi_0    pypi
    keras-preprocessing       1.1.0                      py_1    anaconda
    keras-rectified-adam      0.17.0                   pypi_0    pypi
    keras-self-attention      0.41.0                   pypi_0    pypi
    keras-transformer         0.31.0                   pypi_0    pypi
    kiwisolver                1.0.1                    py36_2    intel
    libffi                    3.2.1                        11    intel
    libgcc-ng                 9.1.0                hdf63c60_0    anaconda
    libgfortran-ng            7.3.0                hdf63c60_0    anaconda
    libiconv                  1.14                          4    <unknown>
    libpng                    1.6.36                        2    intel
    libprotobuf               3.9.2                hd408876_0    anaconda
    librosa                   0.6.3                    pypi_0    pypi
    libsodium                 1.0.16                        3    <unknown>
    libstdcxx-ng              9.1.0                hdf63c60_0    anaconda
    libtiff                   4.0.9                he85c1e1_1  
    libxcb                    1.13                 h1bed415_1  
    libxml2                   2.9.8                hf84eae3_0  
    lightgbm                  2.3.1                    pypi_0    pypi
    llvmlite                  0.27.1                   py36_0    intel
    markdown                  3.1.1                    py36_0    anaconda
    markupsafe                1.0                      py36_3    <unknown>
    matplotlib                2.1.0            py36hba5de38_0  
    mercantile                1.1.2                    pypi_0    pypi
    metaflow                  2.0.0                    pypi_0    pypi
    mistune                   0.8.3                    py36_2    <unknown>
    mkl                       2019.4                intel_243    <unknown>
    mkl-service               1.0.0           py36h7b7c402_11    intel
    mkl_fft                   1.0.11           py36h7b7c402_2    intel
    mkl_random                1.0.2            py36h7b7c402_4    intel
    more-itertools            7.2.0                    pypi_0    pypi
    mpi4py                    3.0.0                    py36_3    intel
    mpmath                    1.1.0                    pypi_0    pypi
    munch                     2.5.0                    pypi_0    pypi
    nbconvert                 5.2.1                    py36_2    <unknown>
    nbformat                  4.4.0                    py36_2    <unknown>
    networkx                  2.4                      pypi_0    pypi
    ninja                     1.9.0            py36hfd86e86_0  
    noisyopt                  0.2.2                    pypi_0    pypi
    notebook                  5.2.2                    py36_1    intel
    numba                     0.42.1              np116py36_2    intel
    numexpr                   2.6.8                    py36_2    intel
    numpy                     1.16.2           py36h7b7c402_0    intel
    numpy-base                1.16.2                   py36_0    intel
    oauthlib                  3.1.0                    pypi_0    pypi
    olefile                   0.46                       py_0  
    openssl                   1.0.2r                        2    intel
    packaging                 19.2                     pypi_0    pypi
    pandas                    0.24.1                   py36_3    intel
    pandocfilters             1.4.1                    py36_2    <unknown>
    parso                     0.2.0                    py36_2    <unknown>
    path.py                   11.0.1                   py36_2    <unknown>
    pcre                      8.43                 he6710b0_0  
    pexpect                   4.2.1                    py36_4    <unknown>
    pickleshare               0.7.4                    py36_3    <unknown>
    pillow                    6.2.1                    pypi_0    pypi
    pip                       19.3.1                   pypi_0    pypi
    pluggy                    0.13.1                   pypi_0    pypi
    prompt_toolkit            1.0.15                   py36_2    <unknown>
    protobuf                  3.9.2            py36he6710b0_0    anaconda
    ptyprocess                0.5.2                    py36_2    <unknown>
    pulp                      2.0                      pypi_0    pypi
    py                        1.8.0                    pypi_0    pypi
    pyasn1                    0.4.8                    pypi_0    pypi
    pycosat                   0.6.3                    py36_3    intel
    pycparser                 2.18                     py36_2    intel
    pydot                     1.4.1                    pypi_0    pypi
    pyeditline                2.0.0                    py36_0    intel
    pygments                  2.2.0                    py36_5    <unknown>
    pygmy                     0.2.0                    pypi_0    pypi
    pyopenssl                 17.5.0                   py36_2    intel
    pyparsing                 2.2.0                    py36_2    intel
    pyportfolioopt            0.4.3                    pypi_0    pypi
    pyproj                    2.4.2.post1              pypi_0    pypi
    pyqt                      5.6.0            py36h22d08a2_6  
    pyrsistent                0.15.6                   pypi_0    pypi
    pysocks                   1.6.7                    py36_1    intel
    pytesseract               0.3.0                    pypi_0    pypi
    pytest                    4.6.6                    pypi_0    pypi
    python                    3.6.8                         7    intel
    python-dateutil           2.6.0                   py36_12    intel
    python-graphviz           0.13                     pypi_0    pypi
    pytorch                   1.3.1           py3.6_cuda10.1.243_cudnn7.6.3_0    pytorch
    pytz                      2018.4                   py36_3    intel
    pywavelets                1.1.1                    pypi_0    pypi
    pyyaml                    4.1                      py36_3    intel
    pyzmq                     16.0.2                   py36_6    <unknown>
    qt                        5.6.2               hd25b39d_14  
    rasterio                  1.1.1                    pypi_0    pypi
    regex                     2019.11.1                pypi_0    pypi
    requests                  2.20.1                   py36_1    intel
    requests-oauthlib         1.3.0                    pypi_0    pypi
    resampy                   0.2.1                    pypi_0    pypi
    rio-cogeo                 1.1.6                    pypi_0    pypi
    rsa                       3.4.2                    pypi_0    pypi
    ruamel_yaml               0.11.14                  py36_4    intel
    s3transfer                0.2.1                    pypi_0    pypi
    sacremoses                0.0.35                   pypi_0    pypi
    scikit-image              0.16.2                   pypi_0    pypi
    scikit-learn              0.20.3           py36h7b7c402_5    intel
    scipy                     1.3.3                    pypi_0    pypi
    seaborn                   0.9.0                    pypi_0    pypi
    sentencepiece             0.1.83                   pypi_0    pypi
    setuptools                39.0.1                   py36_0    intel
    shapely                   1.6.4.post2              pypi_0    pypi
    simplegeneric             0.8.1                    py36_7    <unknown>
    sip                       4.18.1           py36hf484d3e_2  
    six                       1.11.0                   py36_3    intel
    smp                       0.1.4                    py36_0    intel
    snuggs                    1.4.7                    pypi_0    pypi
    sqlite                    3.27.2                        4    intel
    supermercado              0.0.5                    pypi_0    pypi
    sympy                     1.4                      pypi_0    pypi
    tbb                       2019.6                intel_243    <unknown>
    tbb4py                    2019.6             py36_intel_0    <unknown>
    tcl                       8.6.4                        24    intel
    tensorboard               1.14.0           py36hf484d3e_0    anaconda
    tensorflow                1.14.0          gpu_py36h3fb9ad6_0    anaconda
    tensorflow-base           1.14.0          gpu_py36he45bfe2_0    anaconda
    tensorflow-estimator      1.14.0                     py_0    anaconda
    tensorflow-gpu            1.14.0               h0d30ee6_0    anaconda
    termcolor                 1.1.0                    py36_1    anaconda
    terminado                 0.8.1                    py36_2    <unknown>
    testpath                  0.3.1                    py36_2    <unknown>
    tk                        8.6.4                        29    intel
    torchvision               0.4.2                py36_cu101    pytorch
    tornado                   4.5.2                    py36_5    <unknown>
    tqdm                      4.36.1                     py_0    anaconda
    traitlets                 4.3.2                    py36_3    <unknown>
    transformers              2.1.1                    pypi_0    pypi
    tweepy                    3.8.0                    pypi_0    pypi
    urllib3                   1.22                     pypi_0    pypi
    wcwidth                   0.1.7                    py36_6    <unknown>
    webencodings              0.5.1                    py36_0    <unknown>
    werkzeug                  0.16.0                     py_0    anaconda
    wheel                     0.31.0                   py36_3    intel
    widgetsnbextension        3.2.0                    py36_1    <unknown>
    wrapt                     1.11.2           py36h7b6447c_0    anaconda
    x264                      20131218                      0    <unknown>
    xgboost                   0.81                     py36_0    intel
    xz                        5.2.3                         2    intel
    yaml                      0.1.7                         2    intel
    zipp                      0.6.0                    pypi_0    pypi
    zlib                      1.2.11                        5    intel
    </unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown></unknown>
  • How to keep personally identifiable information safe

    23 janvier 2020, par Joselyn Khor

    The protection of personally identifiable information (PII) is important both for individuals, whose privacy may be compromised, and for businesses that may have their reputation ruined or be liable if PII is wrongly accessed, used, or shared.

    Curious about what PII is ? Here’s your introduction to personally identifiable information.

    Due to hacking, data leaks or data thievery, PII acquired can be combined with other pieces of information to form a more complete picture of you. On an individual level, this puts you at risk of identity theft, credit card theft or other harm caused by the fraudulent use of your personal information.

    On a business level, for companies who breach data privacy laws – like Cambridge Analytica’s harvesting of millions of FB profiles – the action leads to an erosion of trust. It can also impact your financial position as heavy fines can be imposed for the illegal use and processing of personally identifiable information.

    So what can you do to ensure PII compliance ?

    On an individual level :

    1. Don’t give your data away so easily. Although long, it’s worthwhile to read through privacy policies to make sure you know what you’re getting yourself into.
    2. Don’t just click ‘agree’ when faced with consent screens, as consent screens are majorly flawed. Users mostly always opt in without reading and without being properly informed what they opt in to.
    3. Did you know you’re most likely being tracked from website to website ? For example, Google can identify you across visits and websites. One of the things you can do is to disable third party cookies by default. Businesses can also use privacy friendly analytics which halt such tracking. 
    4. Use strong passwords.
    5. Be wary of public wifi – hackers can easily access your PII or sensitive data. Use a VPN (virtual private network), which lets you create a secure connection to a server of your choosing. This allows you to browse the internet in a safe manner.

    A PII compliance checklist for businesses/organisations :

    1. Identify where all PII exists and is stored – review and make sure this is in a safe environment.
    2. Identify laws that apply to you (GDPR, California privacy law, HIPAA) and follow your legal obligations.
    3. Create operational safeguards – policies and procedures for handling PII at an organisation level ; and building awareness to focus on the protection of PII.
    4. Encrypt databases and repositories where such info is kept.
    5. Create privacy-specific safeguards in the way your organisation collects, maintains, uses, and disseminates data so you protect the confidentiality of the data.
    6. Minimise the use, collection, and retention of PII – only collect and keep PII if it’s necessary for you to perform your legal business function.
    7. Conduct privacy impact assessments (PIA) to find and prevent privacy risks (identify what and why it’s to be collected ; how the information will be secured etc.).
    8. De-identify within the scope of your data collection and analytics tools.
    9. Anonymise data.
    10. Keep your privacy policy updated.
    11. Pseudonymisation.
    12. A more comprehensive guide for businesses can be found here : https://iapp.org/media/pdf/knowledge_center/NIST_Protecting_PII.pdf