Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (84)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • doc : Add section about AviSynth support

    14 janvier 2014, par Stephen Hutchinson
    doc : Add section about AviSynth support
    

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] doc/general.texi
  • doc : add a section about building with libmfx

    10 juillet 2015, par Anton Khirnov
    doc : add a section about building with libmfx
    
    • [DBH] doc/general.texi
  • About Soundcloud scraping for uploading music to telegram group

    16 juin 2021, par so sa

    I am trying to automatically download the new uploaded file from the below soundcloud link and upload it to a telegram group :

    &#xA;

    https://soundcloud.com/radio-hamrah-1

    &#xA;

    so I have googled the :

    &#xA;

    &#xA;

    python script to download from soundcloud and import to telegram&#xA;group

    &#xA;

    &#xA;

    and tried the scdl python module by its instruction, but when I have tried its on this colab page I get this error :

    &#xA;

    !pip3 install git&#x2B;https://github.com/flyingrub/scdl&#xA;!scdl -l https://soundcloud.com/pandadub/sets/the-lost-ship --download-archive archive.txt -c&#xA;&#xA;Collecting git&#x2B;https://github.com/flyingrub/scdl&#xA;  Cloning https://github.com/flyingrub/scdl to /tmp/pip-req-build-0g64ql2f&#xA;  Running command git clone -q https://github.com/flyingrub/scdl /tmp/pip-req-build-0g64ql2f&#xA;Requirement already satisfied (use --upgrade to upgrade): scdl==1.6.12 from git&#x2B;https://github.com/flyingrub/scdl in /usr/local/lib/python3.7/dist-packages&#xA;Requirement already satisfied: docopt in /usr/local/lib/python3.7/dist-packages (from scdl==1.6.12) (0.6.2)&#xA;Requirement already satisfied: mutagen in /usr/local/lib/python3.7/dist-packages (from scdl==1.6.12) (1.45.1)&#xA;Requirement already satisfied: termcolor in /usr/local/lib/python3.7/dist-packages (from scdl==1.6.12) (1.1.0)&#xA;Requirement already satisfied: requests in /usr/local/lib/python3.7/dist-packages (from scdl==1.6.12) (2.23.0)&#xA;Requirement already satisfied: clint in /usr/local/lib/python3.7/dist-packages (from scdl==1.6.12) (0.5.1)&#xA;Requirement already satisfied: chardet&lt;4,>=3.0.2 in /usr/local/lib/python3.7/dist-packages (from requests->scdl==1.6.12) (3.0.4)&#xA;Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,&lt;1.26,>=1.21.1 in /usr/local/lib/python3.7/dist-packages (from requests->scdl==1.6.12) (1.24.3)&#xA;Requirement already satisfied: idna&lt;3,>=2.5 in /usr/local/lib/python3.7/dist-packages (from requests->scdl==1.6.12) (2.10)&#xA;Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/dist-packages (from requests->scdl==1.6.12) (2021.5.30)&#xA;Requirement already satisfied: args in /usr/local/lib/python3.7/dist-packages (from clint->scdl==1.6.12) (0.1.0)&#xA;Building wheels for collected packages: scdl&#xA;  Building wheel for scdl (setup.py) ... done&#xA;  Created wheel for scdl: filename=scdl-1.6.12-cp37-none-any.whl size=19143 sha256=27ca560a7f3947830289d0df167db84137d1554fe1ab740c2afab3db0abedd74&#xA;  Stored in directory: /tmp/pip-ephem-wheel-cache-agspvyq5/wheels/49/44/6e/a5f6f709e7b231f3639ea9f9fc48a4699b958850715556e7f6&#xA;Successfully built scdl&#xA;Soundcloud Downloader&#xA;Failed to get item...&#xA;

    &#xA;

    enter image description here

    &#xA;

    and when I try by the Docker VPS by this commands :

    &#xA;

    pip3 install git&#x2B;https://github.com/flyingrub/scdl&#xA;pip3 install ffmpeg&#xA;scdl -l https://soundcloud.com/pandadub/sets/the-lost-ship --download-archive archive.txt -c&#xA;

    &#xA;

    pip3 install git+https://github.com/flyingrub/scdl pip3 install ffmpeg&#xA;scdl -l https://soundcloud.com/pandadub/sets/the-lost-ship —download-archive archive.txt -c

    &#xA;

    I get this error :

    &#xA;

    FileNotFoundError: [Errno 2] No such file or directory: &#x27;ffmpeg&#x27;&#xA;

    &#xA;

    enter image description here

    &#xA;

    So I asked abut how could i do it by scdl and soundcloude python module.

    &#xA;

    Update :

    &#xA;

    Based of my two comment on this question I get different result by using the scdl python module via the above colab page, sometimes it is working and sometimes not, which i guess it is because of soudncloud server setting for preventing huge scraping and needs some delay during the music scraping form the soundcloud.

    &#xA;

    Thanks.

    &#xA;