Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (12186)

  • splitting mp4 files with ffmpeg

    25 février 2015, par user2410624

    I have a 2-hour long mp4 video file with no audio. I want to extract a 15-minute portion of this video. The catch is that I want to add a fade-in to the beginning and a fade-out to the end without having to re-encode the entire thing. My thought is that I could extract 3 portions as follows :

    First Portion - First second of 15-minutes :

    ffmpeg -i input.mp4 -ss 1200 -t 1 -vcodec copy out1.mp4

    Second Portion - Between the first second of video and the last second of video :

    ffmpeg -i input.mp4 -ss 1201 -t 898 -vcodec copy out2.mp4

    Third Portion - Last second of 15-minutes :

    ffmpeg -i input.mp4 -ss 2099 -t 1 -vcodec copy out3.mp4

    Then I want to use ffmpeg to add a fade in to out1.mp4 and a fade out to out3.mp4. Then finally use ffmpeg to concatenate the 3 portions together.

    So here are my questions :

    1. Just getting the first portion extracted is causing me problems. It seems to only extract one frame of black. (There are no black frames in this 1 second portion.) I was expecting to get 1 second of video exactly as it is at the 1200th second of the video file. I thought I even read that extracting at the I-frames is preferable, but even that (with the assistance of ffprobe) isn’t getting me the portion I’m expecting. This is an example of that command :

      ffmpeg -i input.mp4 -ss 1200.143678 -t 1.1101 -vcodec copy out1.mp4

    Am I misunderstanding the capability ? Am I doing the command wrong ? Are my mp4 files bad ? This file is 1080p. I tried the same thing with a 360p version of the file and for some reason it worked. Not sure why.

    1. My other question is, am I taking the best approach to achieve what I want to achieve. Which is : taking a 15-minute mp4 video out of a 2-hour mp4 video and adding a fade up and fade down in such a way that I don’t have to re-encode the entire 15 minutes. Is this doable ? Anyone have any good suggestions for the best way to do this ?

    Thanks.

  • Programatically add a simple pause to a video

    8 mai 2020, par gota

    Say I have a 30s video. I want to produce a 40s video that is just the first video but with an extra "freezed" frame (for say 10s) somewhere in the middle of it. (think of it as wanting to comment the video at a specific point)

    



    I know I can do this easily with video editing software. However, I am looking for a command line tool that allows me to do this efficiently (I need to do this several times with variable points to freeze the video)

    



    I am using Python

    



    I thought of using ffmpeg, splitting the video into two, creating a third video composed of a given frame, and then concatenating the three videos.

    



    But maybe there is a much simpler technique ?

    


  • Broadcasting video from the camera to YouTube

    17 octobre 2022, par vernise

    I want to stream video on YouTube. But there are a lot of restrictions. Firstly, I want to do it via an intermediate server. If there is no connection, the broadcast will not complete. Instead, an error will be displayed on the broadcast. This is due to the fact that the camera is close to the battle line. A blackout is not an uncommon occurrence. Also due to the limitations of YouTube (maximum 12 hours of broadcasting time to save), the broadcast has to start twice a day. I tried to implement transmission via FFmpeg and UDP to an intermediary server (I'm using a simple webcam), but the latency at this stage is more than 30 seconds. Any suggestions would be appreciated.