Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (4810)

  • avcodec/hevc_ps : use get_ue_golomb() for some PPS multilayer extension fields

    17 avril 2023, par James Almer
    avcodec/hevc_ps : use get_ue_golomb() for some PPS multilayer extension fields
    

    Also remove the _plus* and _minus* parts of some of these to be in line with
    other similar fields in the decoder.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevc_ps.h
  • Python unknown file extension .mp4

    18 février 2024, par marlise23

    I am working on a simulation project, however I am unable to create a visual. I started out by running code from matplotlib's documentation (i.e. the code does not belong to me).&#xA;When I run the code, I get the error "unknown file extension : .mp4". &#xA;I have installed ffmpeg and checked that it is an updated version.

    &#xA;&#xA;

    I am using a Windows computer and Python 3.

    &#xA;&#xA;

    import numpy as np&#xA;from matplotlib import pyplot as plt&#xA;from matplotlib import animation&#xA;plt.rcParams[&#x27;animation.ffmpeg_path&#x27;]=&#x27;‪C:\\FFmpeg\bin\ffmpeg.exe&#x27;&#xA;&#xA;# First set up the figure, the axis, and the plot element we want to animate&#xA;fig = plt.figure()&#xA;ax = plt.axes(xlim=(0, 2), ylim=(-2, 2))&#xA;line, = ax.plot([], [], lw=2)&#xA;&#xA;# initialization function: plot the background of each frame&#xA;def init():&#xA;    line.set_data([], [])&#xA;    return line,&#xA;&#xA;# animation function.  This is called sequentially&#xA;def animate(i):&#xA;    x = np.linspace(0, 2, 1000)&#xA;    y = np.sin(2 * np.pi * (x - 0.01 * i))&#xA;    line.set_data(x, y)&#xA;    return line,&#xA;&#xA;# call the animator.  blit=True means only re-draw the parts that have changed.&#xA;anim = animation.FuncAnimation(fig, animate, init_func=init,&#xA;                               frames=200, interval=20, blit=True)&#xA;&#xA;# save the animation as an mp4.  This requires ffmpeg or mencoder to be&#xA;# installed.  The extra_args ensure that the x264 codec is used, so that&#xA;# the video can be embedded in html5. &#xA;anim.save(&#x27;basic_animation.mp4&#x27;, fps=30, extra_args=[&#x27;-vcodec&#x27;, &#x27;libx264&#x27;])&#xA;&#xA;plt.show()&#xA;

    &#xA;

  • avcodec/indeo4 : Check remaining data in Pic hdr extension parsing code

    8 juin 2017, par Michael Niedermayer
    avcodec/indeo4 : Check remaining data in Pic hdr extension parsing code
    

    Fixes : Timeout
    Fixes : 2115/clusterfuzz-testcase-minimized-6594111748440064

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/indeo4.c