Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (69)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • Slice a video with ffmpeg based on frame position

    26 janvier 2016, par Jabb

    I’d like to extract a slice of video from a video. Unfortunately, I do not have the start time position and duration to run ffmpeg like so :

    ffmpeg -sameq -ss [start_seconds] -t [duration_seconds] -i [input_file] [outputfile]

    Instead, I have the first and the last frame number. So... is it possible to slice a mp4 video with ffmpeg based on frame position ?

  • Fixed an issue with percent-based heights in iOS

    10 mars 2013, par jackmoore

    m colorbox.jquery.json m component.json m i18n/jquery.colorbox-fr.js m jquery.colorbox-min.js m jquery.colorbox.js Fixed an issue with percent-based heights in iOS Fixed an issue with ajax requests being applied at the wrong (...)

  • FFMPEG H.265 C++ based encoder : avcodec_open2 fails

    22 juillet 2021, par rt7085

    My FFMPEG based c-code the correctly produces h.264 encoded video files when I set the codec ID to "AV_CODEC_ID_H264". When I change it to "AV_CODEC_ID_HEVC" I get this output from these particular lines of code.

    


    ret = avcodec_open2(c, codec, &opt);
    av_dict_free(&opt);
    if (ret < 0) {
        fprintf(stderr, "Could not open video codec: %s\n", av_err2str(ret));
        exit(1);
    }


    


    [hevc_mf @ 000001F604B62F00] could not find any MFT for the given media type
[hevc_mf @ 000001F604B62F00] could not create MFT
Could not open video codec: Function not implemented


    


    I have the FFMPEG version 4.1 build. I was under the assumption that H.265 codec where part of this release. What am missing ?