Recherche avancée

Médias (91)

Autres articles (39)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • YTDL-Core MP4 to MP3 doesn't work with FFMPEG (Code 101)

    14 septembre 2018, par doamatto

    In a simple YouTube downloader, I keep trying to get an MP4 to convert to an MP3 using FFMPEG/Fluent-FFMPEG (Fluent was used as recommened by the ytdl-core examples). However, both times resolve in one of two errors : Cannot find ffmpeg or code: 101, msg: "The input file path must be a string"

    I have updated the source to all be on GitHub (sorry for that slight inconvenience as opposed to it being here. It’s linked below. However, I have tried two things : using the normal "node-ffmpeg" library as the require for "ffmpeg", and using the "fluent-ffmpeg" library as the require for "ffmpeg." I mainly did this because via the ytdl-core uses such and I figured it may work in that case.

    Thanks in advance and thanks as a whole !

    The GitHub Repo : https://gist.github.com/Incrested/d9ef8125bd41afbb7e6720ec3a78e331

    Once again : thanks for any and all assistance !

    Edit : I’ve changed the URL to a better snippet of focus of where I think the issue is.

  • lavfi/qsvvpp : do not mix up FFmpeg and SDK error code

    30 juillet 2021, par Haihao Xiang
    lavfi/qsvvpp : do not mix up FFmpeg and SDK error code
    

    The function ff_qsvvpp_filter_frame should return a FFmpeg error code if
    there is an error. However it might return a SDK error code without this
    patch.

    Reviewed-by : Soft Works <softworkz@hotmail.com>

    • [DH] libavfilter/qsvvpp.c
  • Convert webm to mp4 on with spawn ffmpeg on firebase cloud function returning failed with code 1

    11 novembre 2022, par findev

    In a google cloud function, i'm trying to convert a donwloaded .webm file from cloud storage to .mp4 format with this code

    &#xA;

    var mp4FilePath = path.join(os.tmpdir(), mediaId&#x2B;&#x27;.mp4&#x27;)&#xA;await spawn(&#x27;ffmpeg&#x27;, [&#xA;    &#x27;-i&#x27;,&#xA;    downloadedFilePath,&#xA;    &#x27;-c copy&#x27;,&#xA;    mp4FilePath,&#xA;]); &#xA;

    &#xA;

    I keep receiving the following error

    &#xA;

    Error: `ffmpeg -i /var/folders/h2/p35j0p3s4zq9ktyqhdx3qb9h0000gn/T/ghE1HQP1x9m2XLaxEx43_raw.webm -c copy /var/folders/h2/p35j0p3s4zq9ktyqhdx3qb9h0000gn/T/test.mp4` failed with code 1&#xA;

    &#xA;

    I'm able to create thumbnails so the source file is downloaded correctly.

    &#xA;