Recherche avancée

Médias (91)

Autres articles (111)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (6701)

  • Unable to install ffmpeg on CircleCi 2.0

    16 novembre 2017, par Mateusz Urbański

    I have Ruby on Rails project which uses CircleCi to run tests. In the past I was using CircleCi 1.0 but now I migrated to CircleCi 2.0. I have problem with installing ffmpeg. CircleCi 2.0 uses Ubuntu 14.04. I install ffmpeg like this :

    # ffmpeg installation
    sudo add-apt-repository ppa:mc3man/trusty-media -y
    sudo apt-get update
    sudo apt-get install ffmpeg

    and my circle.yml config file looks like this :

    version: 2
    environment:
     TZ: "/usr/share/zoneinfo/America/Los_Angeles"

    jobs:
     build:
       parallelism: 2
       working_directory: ~/circleci-survey-builder
       docker:
         - image: circleci/ruby:2.4.1-node
           environment:
             PGHOST: 127.0.0.1
             PGUSER: ubuntu
             RAILS_ENV: test
         - image: circleci/postgres:9.6-alpine
           environment:
             POSTGRES_USER: ubuntu
             POSTGRES_DB: circle_test
             POSTGRES_PASSWORD: ''
       steps:
         - checkout

         - run:
             name: 'Install CircleCI dependencies'
             command: bash deploy/circle-dependencies.sh

         - type: cache-restore
           key: dashboard-{{ checksum "Gemfile.lock" }}

         - run:
             name: 'Install gems'
             command: bundle install --path vendor/bundle

         - type: cache-save
           key: dashboard-{{ checksum "Gemfile.lock" }}
           paths:
             - vendor/bundle

         - run:
             name: 'Install postgresql-client'
             command: sudo apt install postgresql-client

         - run:
             name: 'Create database.yml'
             command: mv config/database.ci.yml config/database.yml

         - run:
             name: Set up SurveyBuilder database
             command: bundle exec rake db:structure:load --trace

         - run:
             name: 'Run tests'
             command: |
               bundle exec rspec spec

    It returns following error when I run build on CircleCi :

    #!/bin/bash -eo pipefail
    bash deploy/circle-dependencies.sh

    Fetching: bundler-1.16.0.gem (100%)
    Successfully installed bundler-1.16.0
    1 gem installed
    sudo: add-apt-repository: command not found


    Ign http://deb.debian.org jessie InRelease

    Get:1 http://deb.debian.org jessie-updates InRelease [145 kB]

    10% [1 InRelease 13.8 kB/145 kB 10%] [Waiting for headers] [Connecting to securHit http://deb.debian.org jessie Release.gpg

    Hit http://deb.debian.org jessie Release

    Get:2 http://deb.debian.org jessie-updates/main amd64 Packages [23.2 kB]

    Get:3 http://deb.debian.org jessie/main amd64 Packages [9063 kB]

    Get:4 http://security.debian.org jessie/updates InRelease [63.1 kB]

    Get:5 http://security.debian.org jessie/updates/main amd64 Packages [610 kB]

    100% [3 Packages 9063 kB]100% [3 Packages 9063 kB]Fetched 9904 kB in 1s (8178 kB/s)

    Reading package lists... 1%
    Reading package lists... 61%
    Reading package lists... Done


    Reading package lists... 1%
    Reading package lists... Done


    Building dependency tree... 0%
    Building dependency tree      


    Reading state information... Done

    Package ffmpeg is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source

    E: Package 'ffmpeg' has no installation candidate
    Exited with code 100

    How can I fix that ?

  • Unable to instal ffmpeg on CircleCi 2.0

    15 novembre 2017, par Mateusz Urbański

    I have Ruby on Rails project which uses CircleCi to run tests. In the past I was using CircleCi 1.0 but now I migrated to CircleCi 2.0. I have problem with installing ffmpeg. CircleCi 2.0 uses Ubuntu 14.04. I install ffmpeg like this :

    # ffmpeg installation
    sudo add-apt-repository ppa:mc3man/trusty-media -y
    sudo apt-get update
    sudo apt-get install ffmpeg

    and my circle.yml config file looks like this :

    version: 2
    environment:
     TZ: "/usr/share/zoneinfo/America/Los_Angeles"

    jobs:
     build:
       parallelism: 2
       working_directory: ~/circleci-survey-builder
       docker:
         - image: circleci/ruby:2.4.1-node
           environment:
             PGHOST: 127.0.0.1
             PGUSER: ubuntu
             RAILS_ENV: test
         - image: circleci/postgres:9.6-alpine
           environment:
             POSTGRES_USER: ubuntu
             POSTGRES_DB: circle_test
             POSTGRES_PASSWORD: ''
       steps:
         - checkout

         - run:
             name: 'Install CircleCI dependencies'
             command: bash deploy/circle-dependencies.sh

         - type: cache-restore
           key: dashboard-{{ checksum "Gemfile.lock" }}

         - run:
             name: 'Install gems'
             command: bundle install --path vendor/bundle

         - type: cache-save
           key: dashboard-{{ checksum "Gemfile.lock" }}
           paths:
             - vendor/bundle

         - run:
             name: 'Install postgresql-client'
             command: sudo apt install postgresql-client

         - run:
             name: 'Create database.yml'
             command: mv config/database.ci.yml config/database.yml

         - run:
             name: Set up SurveyBuilder database
             command: bundle exec rake db:structure:load --trace

         - run:
             name: 'Run tests'
             command: |
               bundle exec rspec spec

    It returns following error when I run build on CircleCi :

    #!/bin/bash -eo pipefail
    bash deploy/circle-dependencies.sh

    Fetching: bundler-1.16.0.gem (100%)
    Successfully installed bundler-1.16.0
    1 gem installed
    sudo: add-apt-repository: command not found


    Ign http://deb.debian.org jessie InRelease

    Get:1 http://deb.debian.org jessie-updates InRelease [145 kB]

    10% [1 InRelease 13.8 kB/145 kB 10%] [Waiting for headers] [Connecting to securHit http://deb.debian.org jessie Release.gpg

    Hit http://deb.debian.org jessie Release

    Get:2 http://deb.debian.org jessie-updates/main amd64 Packages [23.2 kB]

    Get:3 http://deb.debian.org jessie/main amd64 Packages [9063 kB]

    Get:4 http://security.debian.org jessie/updates InRelease [63.1 kB]

    Get:5 http://security.debian.org jessie/updates/main amd64 Packages [610 kB]

    100% [3 Packages 9063 kB]100% [3 Packages 9063 kB]Fetched 9904 kB in 1s (8178 kB/s)

    Reading package lists... 1%
    Reading package lists... 61%
    Reading package lists... Done


    Reading package lists... 1%
    Reading package lists... Done


    Building dependency tree... 0%
    Building dependency tree      


    Reading state information... Done

    Package ffmpeg is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source

    E: Package 'ffmpeg' has no installation candidate
    Exited with code 100

    How can I fix that ?

  • Internecine Legal Threats

    1er juin 2011, par Multimedia Mike — Legal/Ethical

    FFmpeg and associated open source multimedia projects such as xine, MPlayer, and VLC have long had a rebel mystique about them ; a bunch of hackers playing fast and loose with IP law in order to give the world the free multimedia experience it deserved. We figured out the algorithms using any tools available, including the feared technique of binary reverse engineering. When I gave a presentation about FFmpeg at Linuxtag in 2007, I created this image illustrating said mystique :



    It garnered laughs. But I made the point that we multimedia hackers just press on, doing our thing while ignoring legal threats. The policy has historically worked out famously for us– to date, I seem to be the only person on the receiving end of a sort-of legal threat from the outside world.

    Who would have thought that the most credible legal threat to an open source multimedia project would emanate from a fork of that very project ? Because that’s exactly what has transpired :



    Click for full threat

    So it came to pass that Michael Niedermayer — the leader of the FFmpeg project — received a bona fide legal nastygram from Mans Rullgard, a representative of the FFmpeg-forked Libav project. The subject of dispute is a scorched-earth matter involving the somewhat iconic FFmpeg zigzag logo :

     
    Original 2D logo enhanced 3D logo

    To think of all those years we spent worrying about legal threats from organizations outside the community. I’m reminded of that time-honored horror trope/urban legend staple : Get out ! The legal threats are coming from inside the house !

    I’m interested to see how this all plays out, particularly regarding jurisdiction, as we have a U.K. resident engaging an Italian lawyer outfit to deliver a legal threat to an Austrian citizen regarding an image hosted on a server in Hungary. I suspect I know why that law firm was chosen, but it’s still a curious jurisdictional setup.

    People often used to ask me if we multimedia hackers would get sued to death for doing what we do. My response was always, “There’s only one way to know for sure,” by which I meant that we would just have to engage in said shady activities and determine empirically if lawsuits resulted. So I’m a strong advocate for experimentation to push the limits. Kudos to Michael and Mans for volunteering to push the legal limits.