Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (81)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6814)

  • libavcodec/qsvenc_hevc : Use default value from MSDK to set bf.

    20 juin 2022, par Wenbin Chen
    libavcodec/qsvenc_hevc : Use default value from MSDK to set bf.
    

    Change the default value of "bf" for hevc_qsv to -1. 8 isn't the best
    choice so let MSDK to decide the number of b frames.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/qsvenc_hevc.c
  • Asterisk configuration with —with-avcodec flag [closed]

    3 juillet 2022, par Mikhail

    My attempts to configure asterisk with the specified flag end up with messages :

    &#xA;

    configure: ***&#xA;configure: *** The FFMPEG installation appears to be missing or broken.&#xA;configure: *** Either correct the installation, or run configure&#xA;configure: *** including --without-avcodec.&#xA;root@debian:/home/mvt/install_asterisk/asterisk-18.13.0&#xA;

    &#xA;

    I get the same messages if the asterisk is version 1.8.0 or 16.&#xA;I think other versions will be the same.&#xA;I tried to install asterisk with --with-avcodec flag in ubuntu 22.04, 20.04, debian 11, centos 7(Gnome ).&#xA;History repeats itself everywhere.&#xA;Asterisk suggests configuring without this flag.&#xA;I understand that using ubuntu 22.04 is not a good idea, but the problem is not the choice of OS, but something else.&#xA;While researching this problem, although I am far from programming, I saw in this link linux/videodev.h : no such file or directory - OpenCV on ubuntu 11.04 11-04 that a person configuring OpenCV on ubuntu 11.04 encountered a missing directory and file linux/videodev.h.&#xA;Now I also had a problem in asterisk with a videodev.h file not found.&#xA;I symlinked ln -s /usr/include/libv4l1-videodev.h /usr/include/linux/videodev.h and asterisk found videodev.h.&#xA;Assuming that asterisk cannot find the avcodec header files of the libavcodec library of the ffmpeg package, and all the ffmpeg header files (in debian 11) are installed /usr/include/x86_64-linux-gnu/libavcodec/ I made a symbolic link to this directory with all the files in it, as the configure asterisk file requires : ln -s /usr/include/x86_64-linux-gnu/libavcodec/* /usr/include/ffmpeg/&#xA;This did not help, asterisk still does not see the symbolic link to avcodec, I think this leads to the primary messages :

    &#xA;

    configure: ***&#xA;configure: *** The FFMPEG installation appears to be missing or broken.&#xA;configure: *** Either correct the installation, or run configure&#xA;configure: *** including --without-avcodec.&#xA;

    &#xA;

    The configure asterisk script checks for the presence of avcodec based on the contents of its three variables : FFMPEG_DIR, FFMPEG_INCLUDE, and FFMPEG_LIB makes sure it exists on the system.&#xA;If found, then&#xA;AST_FFMPEG_FOUND=yes&#xA;If any is empty -&#xA;AST_FFMPEG_FOUND=no&#xA;and a message is displayed&#xA;configure : *** The FFMPEG installation appears to be missing or broken.&#xA;This was answered on the asterisk.ru forum https://forum.asterisk.ru/viewtopic.php?f=3&t=23986&#xA;I seem to have studied everything, of course I didn’t understand something, but this information did not fully help me understand the problem.

    &#xA;

    Please help.&#xA;Thank you !

    &#xA;

  • Unable to allocate 47.5 MiB for an array with shape (1080, 1920, 3) and data type float64

    21 août 2022, par eragon

    Iam try to create a large video(longer than 3h)by CompositeVideoClip using moviepy.&#xA;The problem is it take too much ram (i have 32gb ram).It takes the whole ram (99%) by create a bunch of ffmpeg-win64-v4.2.2.exe ffmpeg-win64-v4.2.2.exe&#xA; it takes the whole ram

    &#xA;

    it create a bunch of ffmpeg-win64-v4.2.2.exe ffmpeg-win64-v4.2.2.exe

    &#xA;

    after it a while it said Unable to allocate 47.5 MiB for an array with shape (1080, 1920, 3) and data type float64.&#xA;here is my code :

    &#xA;

    def CombieVideo():&#xA;    global curentVideoLengt&#xA;    masterVideo = NULL&#xA;    for videoUrl in videoFiles:&#xA;        print(videoUrl)&#xA;        video = VideoFileClip(videoUrl).fx(vfx.fadein,1).fx(vfx.fadeout,1)&#xA;        curentVideoLengt &#x2B;= video.duration&#xA;        if curentVideoLengt >= (audioLen*60*60):&#xA;            break&#xA;        if masterVideo== NULL:&#xA;            masterVideo= video&#xA;        else:&#xA;            masterVideo = CompositeVideoClip([masterVideo,video])&#xA;            &#xA;    if curentVideoLengt &lt; (audioLen*60*60):&#xA;        videoUrl=random.choice(videoFiles)&#xA;        print(videoUrl)&#xA;        video =video(videoUrl).fx(vfx.fadein,1).fx(vfx.fadeout,1)&#xA;        curentVideoLengt= curentVideoLengt&#x2B;video.duration&#xA;        masterVideo = CompositeVideoClip([masterVideo,video])&#xA;        CombieVideo()&#xA;    else:&#xA;        masterVideo.audio = CompositeAudioClip(audios)&#xA;        masterVideo.write_videofile(&#x27;./MasterVideo/output_video.avi&#x27;, fps=30, threads=4, codec="png")&#xA;        &#xA;CombieVideo()&#xA;

    &#xA;