Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (49)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7110)

  • avcodec/webp : validate the distance prefix code

    2 mars 2015, par Andreas Cadhalpun
    avcodec/webp : validate the distance prefix code
    

    According to the WebP Lossless Bitstream Specification the highest
    allowed value for a prefix code is 39.

    If prefix_code is too large, the calculated extra_bits has an invalid
    value and triggers an assertion in get_bits.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/webp.c
  • 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;

  • How to overlay and save a video with gif in Android ?

    5 avril 2017, par mr nooby noob

    I currently am able to display a gif while recording a video, however when the video is saved it does not display the gif.

    One hacky solution that I thought of is that I simply could just record the screen while recording and save that file instead, however there are some issues that I have with this, ie the audio quality and other items on the screen being saved, such as the video buttons, etc.

    How can I use something like FFMPEG, or anything else that, to save a gif overlay while recording a video ?