Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (84)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8402)

  • FFMPEG Conversion Command Produces 360p Video from Picture Input ?

    22 janvier 2021, par Sarah Szabo

    I'm trying to generate a high quality video of the timelapse of the night sky (+stars) that I did last night, but the output video is 360p an missing a lot of detail.

    


    My Fuji X-T200 usually offers a 4K video of the images that it took, but i opted to assemble the images manually so that I wouldn't take up valuable SD card space.

    


    Here is the command :
ffmpeg -framerate 24 -pattern_type glob -i '*.png' -c:v libx265 -r 30 -pix_fmt yuv420p Starlapse.mp4

    


    What command should I use to best assemble the videos in 1080p or 4K ?

    


    EDIT 0 :
Output Video : https://www.youtube.com/watch?v=xbYI98fctrw&feature=youtu.be

    


    Input frame :
enter image description here

    


  • nginx-rtmp + ffmpeg move mp4's moov to head on the fly

    14 février 2017, par eddie.xie

    I have the following use case :

    1) Alice publish stream to the nginx-rtmp server

    2) The server convert the stream to mp4 (default is flv if I understand correctly, and a codec transformation is needed)

    3) Bob should be able to do range request to that mp4 file while Alice is still publishing

    However it seems ffmpeg command for converting a flv to mp4 can only be done when the mp4 file is fully generated, and then ffmpeg will do second pass and move "moov" to its new file’s head

    Our use case is to allow Bob use range request to retrive the mp4 file while Alice is still publishing (i.e. watch Alice’s video as soon as possible) from time 0 (i.e. from the second Alice started publishing). Thus with mp4’s moov at its head, it’s simple to do range requests and implement the functionality. Raw RTMP doesn’t seem to solve our problem, since we can’t let Bob watch from time 0 of Alice’s recording.

    The question is :
    1) Is it possible to do it while the flv is not fully generated yet ?
    2) Any other idea how shall we use nginx-rtmp/ffmpeg to achieve the functionality we desire ?

    Thanks a bunch

  • C# streaming drone video

    13 mars 2020, par jasonmacintosh

    I am currently a student and I have a project which require using the drone and the livestream from its camera

    I managed to find a control program http://www.winardrone.com which can control my ar drone 2.0 , but the problem is that the program doesn’t support my drone’s camera live stream method(TCP)due to the fact that the program is more compatible to the ar drone 1.0(older version drone) which uses(UDP)

    so I have encountered a problem of putting the video stream into my program
    ,there are a really simple solution of using ffmpeg player with cmd command "ffplay tcp ://192.168.1.1:5555", but it does mean that my program have to run in multiple windows and I won’t be able to save my frames with my program to do analyzation

    so could anyone tell me how to Stream my TCP video in my visual studio C# program and capture frames at the same time ?
    just like the program in this video
    https://www.youtube.com/watch?v=4V5B-DPWdOQ

    I wish to get the video image in a program instead of opening a new window

    And sorry for my bad grammar, thanks for your reply