Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (50)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8099)

  • avfilter/af_firequalizer : add fft2 option

    3 novembre 2016, par Muhammad Faiz
    avfilter/af_firequalizer : add fft2 option
    

    2-channels convolution using complex fft
    improves speed significantly

    not sure if it should be enabled by default
    so disable it by default

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_firequalizer.c
    • [DH] tests/filtergraphs/firequalizer
  • avfilter/showcqt : add cscheme option

    19 octobre 2016, par Muhammad Faiz
    avfilter/showcqt : add cscheme option
    

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/avf_showcqt.c
    • [DH] libavfilter/avf_showcqt.h
  • ffmpeg have unmet dependencies (Ubuntu20) [closed]

    10 août 2024, par mojiang

    when installing ffmpeg with ubuntu20(fosal), it have conflict dependencies :

    &#xA;

    # sudo apt-get install ffmpeg&#xA;Reading package lists... Done&#xA;Building dependency tree       &#xA;Reading state information... Done&#xA;Some packages could not be installed. This may mean that you have&#xA;requested an impossible situation or if you are using the unstable&#xA;distribution that some required packages have not yet been created&#xA;or been moved out of Incoming.&#xA;The following information may help to resolve the situation:&#xA;&#xA;The following packages have unmet dependencies:&#xA; ffmpeg : Depends: libavdevice58 (= 7:4.2.7-0ubuntu0.1) but it is not going to be installed&#xA;          Depends: libavfilter7 (= 7:4.2.7-0ubuntu0.1)&#xA;          Depends: libavformat58 (= 7:4.2.7-0ubuntu0.1) but it is not going to be installed&#xA;E: Unable to correct problems, you have held broken packages.&#xA;

    &#xA;

    I solved it by install the reason of conflit library with a specific version, may be someone will need the solution.

    &#xA;

    step 1. fix-broken

    &#xA;

    sudo apt --fix-broken install&#xA;Reading package lists... Done&#xA;Building dependency tree       &#xA;Reading state information... Done&#xA;

    &#xA;

    step2. find the reason of unmet dependencies :

    &#xA;

    # sudo apt install libavdevice58=7:4.2.7-0ubuntu0.1 libavfilter7=7:4.2.7-0ubuntu0.1 libavformat58=7:4.2.7-0ubuntu0.1&#xA;Reading package lists... Done&#xA;Building dependency tree       &#xA;Reading state information... Done&#xA;Some packages could not be installed. This may mean that you have&#xA;requested an impossible situation or if you are using the unstable&#xA;distribution that some required packages have not yet been created&#xA;or been moved out of Incoming.&#xA;The following information may help to resolve the situation:&#xA;&#xA;The following packages have unmet dependencies:&#xA; libavformat58 : Depends: libchromaprint1 (>= 1.3.2) but it is not going to be installed&#xA;E: Unable to correct problems, you have held broken packages.&#xA;

    &#xA;

    Here the problem is from libchromaprint1

    &#xA;

    step3. find candidate versions of libchromaprint1(conflict reason)

    &#xA;

    # apt-cache policy libchromaprint1&#xA;libchromaprint1:&#xA;  Installed: (none)&#xA;  Candidate: 1.5.1-1~20.04.sav0&#xA;  Version table:&#xA;     1.5.1-1~20.04.sav0 500&#xA;        500 http://ppa.launchpad.net/savoury1/multimedia/ubuntu focal/main amd64 Packages&#xA;     1.4.3-3build1 500&#xA;        500 http://mirrors.cloud.aliyuncs.com/ubuntu focal/universe amd64 Packages&#xA;        500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages&#xA;

    &#xA;

    step4. install the old version of libchromaprint1 to solve the conflicts

    &#xA;

    # sudo apt install libchromaprint1=1.4.3-3build1&#xA;Reading package lists... Done&#xA;Building dependency tree       &#xA;Reading state information... Done&#xA;The following NEW packages will be installed:&#xA;  libchromaprint1&#xA;0 upgraded, 1 newly installed, 0 to remove and 223 not upgraded.&#xA;Need to get 37.6 kB of archives.&#xA;

    &#xA;

    step5. reinstall ffmpeg

    &#xA;

    # sudo apt install ffmpeg&#xA;Reading package lists... Done&#xA;Building dependency tree       &#xA;Reading state information... Done&#xA;

    &#xA;

    Done. the reason of conflict is that the latest version of libraries have conflict, by install old version of the conflicted ones to solve it.

    &#xA;