Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (28)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (4267)

  • Android ffmpgeg - Nothing happens

    25 juillet 2015, par Ch4t4r

    for my current project I compiled myself ffmpeg together with the x264 libary, following this

    tutorial. I already saw many questions regarding this topic, but none of the really helped me. Before that I tried many other things which resulted in many .so files (libavcodec etc.). Since I don’t have the time (yet) to work with JNI in depth I wanted to rely to the command line, which the tutorial above seemed to provide. But here comes the problem : the generated file doesn’t do anything (no output and no error messages) when I run it with Process on my Android device. I’ve come to the conclusion, that the generated file still is a .so file (it is readable with readelf). So far I haven’t found a solution to run ffmpeg on my device with the command-line. Do you know if I did something wrong ?

    Thanks,
    Daniel

  • FFMPEG : Fade the video out when ended

    21 septembre 2015, par kenicky

    In this link : https://trac.ffmpeg.org/wiki/Create%20a%20mosaic%20out%20of%20several%20input%20videos

    I tweaked the code they provided to end the encoding in a specific time.

    Now I wanted to fade out the video to black when it is ended.

    Thanks.

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