Recherche avancée

Médias (91)

Autres articles (62)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (9555)

  • mp4 to hls ffmpeg during upload to Google storage

    13 février 2018, par Sofiia Vynnytska

    I have an API written on Java, which is used for uploading mp4 videos on front-end. We store those videos on google cloud and our application is running in google cloud. For Android clients, we need to convert uploaded videos to hls. Unfortunately, Google cloud does not have transcoder for videos and I need to convert video in another way. I found that ffmpeg can do this. But I cannot find a good solution for this and I need an advice.
    One of ideas is to deploy cloud function on google cloud, which will convert mp4 to hls after uploading video. Can I need to upload this m3u8 and ts videos to storage ? Will be this approach okay ? Is there any other possible solution ?

  • split multiple original videos into multiple videos of length 10s with ffmpeg in windows 10

    16 septembre 2021, par Game Replay

    i can split 1 video into small 10s videos. but how to automatically batch split videos in 1 folder
this is my code :

    


    ffmpeg -i input.mp4 -vcodec copy -acodec copy -map 0 -segment_time 00:00:10 -f segment output%03d.mp4


    


    HELP ME !!!

    


  • Combining a few shifted streams with ffmpeg - result's expected duration is incorrect

    27 octobre 2019, par galra

    I need to combine a few streams (videos + an audio), all shifted compare to each other and in different lengths, to a file with synchronized streams. Using a dummy case, I found out the following command will create a file with the video shifted by 10sec compare to the audio, playing in full length :

    ffmpeg -i in.mp4 -itsoffset 10 -i in.mp4 -c copy -map 0:1 -map 1:0 -t  out.mp4

    if the -t flag is dismissed, the original length will be kept, and vlc would stop playing and effectively truncate the last 10sec of the video stream. With mkv however it won’t be truncated, and the presented video length increases by 10secs as expected. Also, ffplay won’t truncate the mp4, rather it will play it until the end, but once the original ending timestamp is reached, the timestamp "freezes" and A-V starts gaining (negative) increasing values. ffplay output will be as :

    368.34 A-V: -6.124 fd=  14 aq=    0KB vq=    0KB sq=    0B f=0/0

    also ffprobe will present the original duration :

    Duration: 00:06:08.71, start: 0.000000, bitrate: 304 kb/s

    where it should have been 00:06:18.71. I’m no expert, but I guess that there’s some metadata field in the mp4 container that tells the total duration. Is there a way to update it, or must I convert the files to mkv to avoid the wrong & confusing duration indication ?