Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (89)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11118)

  • Extract video clip from MP4 of exacting length [closed]

    21 janvier, par Wes

    The tools I've tried so far are only gives me approximations to the start and end times that I specify. They are usually off by a few seconds.

    


    I need a tool to extract video and audio at exact start and stop times, ideally to the millisecond. It would be preferable to do so without any easily noticeable loss in video quality from the original. I would also prefer to keep the audio in the video.

    


  • How can i set an audio file for video clip with moviepy without re encoding

    12 février 2023, par not me

    So far i tried :

    


    from moviepy.editor import *
videoclip = VideoFileClip("filename.mp4")
audioclip = AudioFileClip("audioname.mp3")

new_audioclip = CompositeAudioClip([audioclip])
videoclip.audio = new_audioclip
videoclip.write_videofile("new_filename.mp4")


    


    But it takes very long time.
I'd like to do it without re encoding. i also prefer opening video or audio clip from bytes in moviepy

    


  • FFmpeg - zoom into video clip with an easing

    25 janvier 2023, par cjd

    I am looking to zoom into a video clip using FFmpeg. The zoom should take place with an easing function controlling the zoom speed.

    


    I have solved this for the above but only with a linear speed.

    


    I believe an easing function should look something like : (cubic ease)

    


    min(pzoom + (pow(((pzoom - 1)/(zoom_factor - 1})), 3)), zoom_factor)


    


    where zoom_factor is the amount I wish to zoom in by (and the zoom is starting from 1x). This issue here is that at the beginning of the zoom pzoom - 1 = 0 as pzoom is also 1.

    


    How could this be accomplished using an easing function controlling the zoom speed ?