Recherche avancée

Médias (91)

Autres articles (53)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (4329)

  • How to concat MP4 files in JAVA [on hold]

    24 octobre 2017, par Laurent NAVET

    I have to concatenate 2 videos in MP4 format, one of which I receive via WS REST in InputStream and the other one on the hard disk.

    1. The first solution studied was SequenceInputStream(file1, file2) but it does not work.

    2. I tried with FFmpeg command line it works, but I can not directly convert the 2 MP4 file I need to convert to mpeg first. Here are the orders made :

      ffmpeg -i 1.mp4 DD.mpeg
      ffmpeg -i DS.mp4 EE.mpeg
      ffmpeg -i "concat:DD.mpeg|EE.mpeg" -c copy output.mpeg
      ffmpeg -i output.mpeg ok.mp4

    However, if I have to do it in java, it will be long to do because I have to store all on the disk ... and at the end redo an inputStream ...

    Do you have a robust solution to concat 2 MP4 streams ? Knowing that the 2 MP4 files can have different codecs or other ...

    Thank you.

    Regards,
    Lawrence.

  • Android - Create thumbnails from a video (658mb) found online from http

    3 juillet 2018, par Paul

    There is a solution for android (java), to create thumbnails from a video that is online and weighs (658mb) about 2 hours and 30 minutes.

    I read that ffmpeg, allows you to do such a thing to create thumbnails.

    So I have some questions, since the video is online (http), it weighs a lot, so I can not download it :

    1) ffmpeg can run on an android app ?
    without having performance problems ?

    2) Is there probable solution without using ffmpeg ?

  • FFmpeg : Changing output bitrate dynamically

    24 juillet 2012, par Saptarshi

    I use ffmpeg to encode a video file to an mpeg transport stream (.ts), which is subsequently sent over network. If there is any network bandwidth fluctuation, I want to dynamically change the stream's bitrate.

    My current solution involves restarting ffmpeg with a different bitrate as below

    `ffmpeg -i input.avi -ss <resume point="point"> -b:v <new bitrate="bitrate"> output.ts
    </new></resume>

    Unfortunately, for certain i/p file formats, glitches get introduced in the video stream using the above approach. So I am looking for a solution where ffmpeg's output bitrate can be changed dynamically, possibly using signals