Recherche avancée

Médias (91)

Autres articles (25)

  • 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

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5062)

  • 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 (...)