Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (65)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (8170)

  • Best way to concatenate videos that have different resolution (generally 1080 or 720)

    5 mai 2022, par jap101

    from command line or python would be best. and i am trying to concatenate around 15 clips of 45 seconds. preferably easy to automate with different number of videos and of different length.

    


  • How to stitch videos to one 360 video without 3rd party software ?

    6 janvier 2017, par Basset hound

    I am using a 3D software, something like GTA.
    I wanted to create a 360 video.
    What I did was create 84 videos automatically by C#.

    Set camera orientation to, (Step = 30 degree)

    1. (Rx, Ry, Rz) = (0.0, -90.0, 0.0)
    2. (Rx, Ry, Rz) = (0.0, -90.0, 30.0)
    3. (Rx, Ry, Rz) = (0.0, -90.0, 60.0)
    ...
    12. (Rx, Ry, Rz) = (0.0, -90.0, 330.0)

    13. (Rx, Ry, Rz) = (0.0, -60.0, 0.0)
    14. (Rx, Ry, Rz) = (0.0, -60.0, 30.0)
    15. (Rx, Ry, Rz) = (0.0, -60.0, 60.0)
    ...
    83. (Rx, Ry, Rz) = (0.0, 90.0, 300.0)
    84. (Rx, Ry, Rz) = (0.0, 90.0, 330.0)

    After created 84 videos, I used Kolor Autopano Video to stitch the video.
    The result is good.

    However, I was wondering, each video has precise camera orientation.
    I think I don’t really need Kolor Autopano Video to create 360 video.
    Is it possible to stitch 84 videos by FFmpeg or C# ?
    Do you have any hint about this ?

    Thank you.

  • stitching two videos into one using FFMPEG

    30 juillet 2015, par nikhil khare

    I am using FFmpeg to concatenate two videos. I use demuxer option like this.
    Created a file using following text.

    file '/var/www/html/test/input/video1.mp4'
    file '/var/www/html/test/input/video2.mp4'

    The codec, bit-rate and aspect ratio are same for both the videos. Now I use this command to generate the output

    ffmpeg -f concat -i mylist.txt -c copy merged.mp4

    It creates the output file with merging the videos but, when i position the seek button to any time it stops playing. The total video duration is also a lot more than the actual video duration.

    It also does not show the second video after the first video is finished. It keeps the last frame through out the video.

    I have found somewhere to mention the duration in the text file, but I am not able to implement it. Please help.