Recherche avancée

Médias (91)

Autres articles (44)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (6081)

  • Silent Audio In Concatenated MP4s (Python, FFMPEG)

    28 janvier, par John Coleman

    I am trying to solve an issue with concatenating several video files and ending up with silent audio for the whole generated video. Part of this is generating two videos, one title and one end screen, created from images, which I have added silence to. I then take these and add up to seven videos (with stereo audio, 48000hz). So, it ends up being Title + up to seven videos + end screen.

    


    I've added silence to the title/end screens, set the sample rate, channels, etc. but still no go. I still lose audio on the videos that should have audio (that originally did).

    


    Relevant code :

    


    Title Screen :

    


    (
            ffmpeg
            .input(thumbnail_path, loop=1, t=self.config.title_duration)
            .filter('fade', type='in', duration=self.config.fade_duration)
            .output(title_temp, vcodec='h264', acodec='aac', af='aevalsrc=0:d={}[aout]:s=48000:c=2'.format(self.config.title_duration))
            .overwrite_output()
            .run(capture_stdout=True, capture_stderr=True)
        )


    


    End Screen :

    


    (
            ffmpeg
            .input(end_screen_path, loop=1, t=self.config.end_screen_duration)
            .filter('fade', type='in', duration=self.config.fade_duration)
            .output(end_temp, vcodec='h264', acodec='aac', af='aevalsrc=0:d={}[aout]:s=48000:c=2'.format(self.config.end_screen_duration))
            .overwrite_output()
            .run(capture_stdout=True, capture_stderr=True)
        )


    


    Concatenate :

    


    (
            ffmpeg
            .input(concat_file, format='concat', safe=0)
            .output(output_path, c='copy')
            .overwrite_output()
            .run(capture_stdout=True, capture_stderr=True)
        )


    


    Any help with this would be SUPER appreciated. Thank you !

    


  • doc/developer.texi : demote the "contributing" chapter to a section

    9 novembre 2022, par Anton Khirnov
    doc/developer.texi : demote the "contributing" chapter to a section
    

    It is very short and its main functions is linking to the
    coding rules/submitting patches chapters.

    • [DH] doc/developer.texi
  • Revision 37744 : On passe par une action pour la previsu Pas besoin de sécuriser outre ...

    27 avril 2010, par kent1@… — Log

    On passe par une action pour la previsu Pas besoin de sécuriser outre mesure ici, on ne réalise donc qu’un recuperer_fond sur les données postées On passe par cette action pour éviter les redirection et la perte du $_POST de $forcer_lang=true ; cf : ecrire/public.php ligne (...)