Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10199)

  • How to merge multiple videos and audios in python ffpmeg [closed]

    18 décembre 2020, par Alireza Farzaneh

    I'm making a program for downloading Adobe connect based meetings' recordings using python.
I have managed to download Adobe connect sessions' recording.
    
Now I have multiple separate audios and videos.
    
I'm trying to merge them into one video using python and ffmpeg library.
    
The problem is that I want them to be in sync.
    

    
Here is an example :
    
I have four files :

    "cameraVoip_0_4.flv" : audio, started at "Sat Nov 07 13:36:11 2020" and lasted for 2888.128000 seconds.

    "cameraVoip_0_6.flv" : audio, started at "Sat Nov 07 14:26:42 2020" and lasted for 366.455 seconds.

    "screenshare_1_2.flv" : video, started at "Sat Nov 07 13:36:01 2020" and lasted for 2844.602000 seconds.

    "screenshare_3_7.flv" : video, started at "Sat Nov 07 14:26:51 2020" and lasted for 352.635000 seconds.


    
I want to merge them somehow that their timing would be correct.

    


  • Moviepy swap text mid video

    22 mai 2022, par Runeater DaWizKid

    I want to write text to a video and have it change mid playback, this is what I've tried but it overlays each text on eachother and only displays the text for 5 seconds ?

    


    def generateVideo(initial_text, secondary_text, tertiary_text):
    text_clip = TextClip(txt=initial_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip = text_clip.set_position('center').set_duration(5)

    text_clip_secondary = TextClip(txt=secondary_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip_secondary = text_clip_secondary.set_position('center').set_duration(10).cutout(0, 5)

    text_clip_tertiary = TextClip(txt=tertiary_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip_tertiary = text_clip_tertiary.set_position('center').set_duration(15).cutout(0, 10)
    
    new_video = ColorClip(size=(1920, 1080), color=(0,0,0), duration=15)
    new_video.fps = 24
    
    new_video = CompositeVideoClip([new_video, text_clip, text_clip_secondary, text_clip_tertiary])

    new_video.write_videofile(codec='mpeg4', filename="test.mp4")
    new_video.close()


    


    Anyone see what im doing wrong ?

    


    Edit :
I've also tried the appropriate calls to subclip(pos1, pos2), ie

    


    text_clip_secondary = text_clip_secondary.set_position('center').set_duration(15).subclip(5, 10)


    


    With the same results

    


  • Revision 101376 : v1.1.16 : une constante _FULLTEXT_MAX_RESULTS_JOINTURES pour augmenter ...

    28 décembre 2016, par tcharlss@… — Log

    v1.1.16 : une constante _FULLTEXT_MAX_RESULTS_JOINTURES pour augmenter le nombre de résultats provenant de chaque jointure.
    Par défaut c’est limité à 100, ce qui peut exclure certains résultats pertinents.