Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (23)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (1935)

  • How can I use ffmpeg to convert all HEVC videos to h.264 videos only on linux ? [closed]

    13 juillet 2022, par Jayden Lo

    I am trying to import all my images and videos from Google Photos to Nextcloud. I used Google Takeout to download them, but some videos are in HEVC format, which is not supported by most devices. How can I batch convert all HEVC videos to h.264 ? I am using Ubuntu and here is my file structure :

    


    ./Photos/
  Image1.jpg
  Image2.jpg
  ...
  HEVC-Video1.mp4
  HEVC-Video2.mp4
  HEVC-Video3.mp4
  ...
  H.264-Video1.mp4
  H.264-Video2.mp4
  ...


    


    Thanks in advance.

    


  • how to overlay 2 videos to main video and also set delay for the videos ? [duplicate]

    23 février 2021, par Siva Kumar

    i'm new to ffmpeg and still learning. I want to add a overlay of 2 videos to my main video. one is a logo/text animation video and the other is a like,subscribe etc button video. And i want them to show on a specific time i set them but have no idea how to do this.

    


    Also i want to position them to where i want them to appear and size as well. Can someone guide me on this. I read some articles but not sure how to get it done or what number i should change etc.
ffmpeg. One link showed something like this but i don't think this will work for my situation and on what i want to do like i can't set the time delay whwen to start and add another video. In total there is 3 videos. main and 2 videos or option to add another one. Thanks alot

    


    ffmpeg -i bg.avi -itsoffset 2 -i over.avi -filter_complex overlay out.avi

    


  • How could I merge two 30 fps videos into single 60 fps video, using alternating frames from both videos ?

    5 janvier 2023, par Levi_OP

    I have two 30fps videos, and I would like to create an output video, in 60fps, where every other frame in the video is alternated between the videos. For example, if I have video A and video B, the frames of the resulting video would be :

    


    A1 B1 A2 B2 A3 B3 ...etc


    


    I could recreate this effect by exporting all of the frames from both videos, renaming them, and then compiling them back into a video, but that takes a lot of storage and is very slow. I've also seen questions about doing the opposite thing, turning 60fps into 30fps video, using the mod function to choose every other frame, but haven't seen anything about the opposite.