Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (50)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (6952)

  • ffmpeg change framerate : Question about bitrate [closed]

    9 février, par schweigerson

    Thanks to the forum, I successfully can reduce the frame rate of a video.

    


    ffmpeg -i input_50fps.mp4 -filter:v fps=25 output_25fps.mp4

    


    Input and output have a similar bitrate as well as filzesize :

    


    




    


    


    


    


    


    



    


    


    


    


    


    


    


    


    


    


    File bitrate filesize
    input_50fps.mp4 2900kBit/s 1.9GB
    output_25fps.mp4 2528kBit/s 1.7GB

    


    Assumption : Divide the number of frames into half should both reduce the bitrate and the filesize accordingly (half the size).

    


    Question : Does it make sense to enforce the reduction of the bitrate to approx. half the original one, when I reduce the framerate by to 50% (e.g. with -b:v 1500k) ? IMHO, the video quality should be comparable to the original video then.

    


    Note : I may make according test runs, but I perhaps do not have the ability to recognize the quality difference as I'm not an advanced video expert.

    


    Would be happy to read your advice.

    


  • How do I use fffmpeg save the individual frames of a GIF into PNGs ?

    11 novembre 2020, par adnauseam

    I have a .gif file on my filesystem and I want all of its frames to be saved as .png files. How can I do this with ffmpeg ?

    


  • How can I make a GStreamer pipeline to read individual frames and publish stream ?

    30 janvier 2024, par Alvan Rahimli

    I have an external system which sends individual H264 encoded frames one by one via socket. What I'm trying to do is getting these frames and publishing an RTSP stream to RTSP server that I have.

    


    After getting frames (which is just reading TCP socket in chunks) my current approach is like this :

    


    I read frames, then start a process with following command, and then write every frame to STDIN of the process.

    


    gst-launch-1.0 -e fdsrc fd=0 ! 
                  h264parse ! 
                  avdec_h264 ! 
                  videoconvert ! 
                  videorate ! 
                  video/x-raw,framerate=25/1 ! 
                  avimux ! 
                  filesink location=gsvideo3.avi


    


    I know that it writes stream to AVI file, but this is closest I was able to get to a normal video. And it is probably very inefficient and full of redundant pipeline steps.

    


    I am also open to FFMPEG commands, but GStreamer is preferred as I will be able to embed it to my C# project via bindings and keep stuff in-process.

    


    Any help is appreciated, thanks in advance !