Recherche avancée

Médias (91)

Autres articles (51)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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

Sur d’autres sites (6514)

  • moviepy output video only has sound in vs code and chrome but not in quicktime (the mac video player)

    24 janvier 2023, par UrLocalGoose

    I am using moviepy to make simple videos that require adding background music to a video. I have built essentially the whole application but I ran into a problem when showing people the videos. I tried emailing myself the video and it didn't have any sound, then I tried to play the video with the built in mac video player, quicktime, and it didn't have any sound, however, when I played the video in vs code's video player it worked perfectly, I also used the file path to view the video in chrome, and that worked too. I suspect that it has something to do with the encoding but I am a novice when it comes to video and audio encoding. This is what my code looks like :

    


    from moviepy.editor import *

background_video = VideoFileClip("./background.mp4")

background_music_audio = AudioFileClip("./music.wav")

comp = background_video.set_audio(background_music_audio)

comp.write_videofile("./test.mp4")


    


    I tried to make a video with background music but it had no sound

    


  • Put image over video and save video to sd card Android

    25 juillet 2016, par Ronak Thakkar

    I’m working on a feature in which I want to add picture over the video and save it to sd card.

    in general, user selects an image with semi transparent background and puts that image above the video, after user presses the save button he gets a new video but already with image above the video.

    I have heard about ffmpeg, and saw some commands that are provided by ffmpeg. but i don’t know from where I should initialize. can anyone provide me any example for the same.

    Thank you.

  • Put image over video and save video to sd card Android

    29 août 2018, par Ronak Thakkar

    I’m working on a feature in which I want to add picture over the video and save it to sd card.

    in general, the user selects an image with semi-transparent background and puts that image above the video, after the user presses the save button he gets a new video but already with the image above the video.

    I have heard about ffmpeg, and saw some commands that are provided by ffmpeg. but I don’t know where I should initialize. can anyone provide me an example for the same ?

    Thank you.