Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (13443)

  • avcodec/dynamic_hdr_vivid : fix base_enable_flag control

    17 mars 2023, par Zhao Zhili
    avcodec/dynamic_hdr_vivid : fix base_enable_flag control
    

    The base_enable_flag is parallel to three_Spline_enable_flag. The
    typesetting of the specification is very misleading.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/dynamic_hdr_vivid.c
  • FFMPEG control delay and looping for generating APNG

    24 septembre 2020, par fmw42

    I have a (random selection) of JPG images that I want to use to make into an APNG animation using ffmpeg (to test the process). They are all the same dimensions (256x256). But I cannot seem to get the correct syntax to control the frame delay and loop control (to loop forever). Is it possible to set these parameters using ffmpeg when creating an APNG from a sequence of images ? If so, can someone provide the proper syntax and/or show an example command ? I have searched the ffmpeg documentation and cannot seem to find relevant syntax.

    &#xA;

    I can do the following, but it will not accept -delay nor -loop. I use Imagemagick to pipe in the images.

    &#xA;

    This works, but does not loop, and runs very fast.

    &#xA;

    magick lena.jpg mandril3.jpg monet2.jpg zelda1.jpg PNG:- | ffmpeg -i - x.apng&#xA;

    &#xA;
    &#xA;

    This gives errors about delay and/or loop :

    &#xA;

    magick lena.jpg mandril3.jpg monet2.jpg zelda1.jpg PNG:- | ffmpeg -i - -delay 1000 -loop -1 x.apng&#xA;

    &#xA;
    &#xA;

    I am also curious to know if it is possible to specify a sequence of images directly in ffmpeg as input without using ImageMagick.

    &#xA;

    Sorry, I am a relative novice with ffmpeg. I am using ffmpeg 4.2.1.

    &#xA;

  • I cant save the animation

    17 mai 2021, par Gokul

    i tried various examples though i cant find proper solution. This is the example code of my project i want to save this in a mp4 format and i used ffmpeg. Any suggestion for this would be appreciated. Thank you in advance

    &#xA;

    import pandas as pd&#xA;import numpy as np&#xA;import ma``tplotlib.pyplot as plt&#xA;import matplotlib.animation as animation&#xA;&#xA;df = data.iloc[0:250, 4:12]&#xA;df1 = df2.iloc[:,0:3]&#xA;&#xA;a1 = df.iloc[:,0]/2&#xA;a2 = df.iloc[:,1]/2&#xA;b1 = df.iloc[:,2]/2&#xA;b2 = df.iloc[:,3]/2&#xA;c1 = df.iloc[:,4]/2&#xA;c2 = df.iloc[:,5]/2&#xA;m1 = df1.iloc[:,0]&#xA;m2 = df1.iloc[:,1]&#xA;m3 = df1.iloc[:,2]&#xA;&#xA;fig ,ax = plt.subplots()&#xA;&#xA;l1, = ax.plot (vert1, vert2, &#x27;ro&#x27;, markersize = m1[0])&#xA;l2, = ax.plot (long1, long2, &#x27;ro&#x27;, markersize = m2[0])&#xA;l3, = ax.plot (tras1, tras2, &#x27;ro&#x27;, markersize = m3[0])&#xA;&#xA;def init():    &#xA;    l1.set_data([],[])&#xA;    l2.set_data([],[])&#xA;    l3.set_data([],[])&#xA;    &#xA;    return (l1,l2,l3)&#xA;&#xA;def animate(i,l1,l2,l3):&#xA;    &#xA;    l1.set_data(vert1[i], vert2[i])&#xA;    l1.set_markersize(m1[i])&#xA;    l2.set_data(long1[i], long2[i])&#xA;    l2.set_markersize(m2[i])&#xA;    l3.set_data(tras1[i], tras2[i])&#xA;    l3.set_markersize(m3[i])&#xA;&#xA;    return (l1,l2,l3)&#xA;&#xA;Writer = animation.writers[&#x27;ffmpeg&#x27;]&#xA;writer = Writer(fps= 100, metadata = dict(artist = &#x27;me&#x27;), bitrate = 1800)&#xA;&#xA;ani = animation.FuncAnimation(fig, animate, fargs=(l1,l2,l3), init_func=init, interval=10, blit=False)&#xA;ani.save(&#x27;/Users/gokulthangavel/Downloads/basic_animation.mp4&#x27;, writer = writer)&#xA;&#xA;plt.show()&#xA;

    &#xA;