Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (30)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5701)

  • How can I change a video frame rate with FFmpeg keeping the same total number of frames ?

    28 mai 2017, par Nuno

    I’ve been searching for an answer here on Stack Overflow and googling everywhere... even though it seems like it should be a very simple command line to me, I just can’t find an answer anywhere.

    I would like to change the frame rate of a video from 23.976fps to 24fps with FFmpeg, lossless and keeping the total number of frames.

    To make it simpler :

    Let’s say I have a 25fps video with a total lenght of 100 frames.

    How can I change it’s frame rate to 50fps, with FFmpeg, lossless and keeping the same total lenght of 100 frames ?

    This was so far the best solution I came across with (which can be found here) :

    Extract the frames as rawvideo :

    ffmpeg -i input.mov -f rawvideo -b 50000000 -pix_fmt yuv420p -vcodec
    rawvideo -s 1920x1080 -y temp.raw

    Recreate the video with new framerate :

    ffmpeg -f rawvideo -b 50000000 -pix_fmt yuv420p -r 24 -s 1920x1080 -i
    temp.raw -y output.mov

    Note 1 : I had to remove "-b 50000000" when recreating the video with the new frame rate, in order to get it to work properly.

    It did exactly what I intended it to do, but I’m still wondering if there is any simpler way to do this ? I’ve tried to pipe them together in one line only, as suggested in the same post, but couldn’t get it to work.

    Note 2 : Even though it does exactly what I wanted it to do, I’ve just later realized there is quality loss using this method, which I would prefer to avoid.

    Thanks everyone in advance !

  • What are the advtanages of live555 over ffserver vv

    28 décembre 2014, par user1767754

    what are the big differences between live555 and ffserver :

    FFSERVER : ffserver is a streaming server for both audio and video. It supports several live feeds, streaming from files and time shifting on live feeds. You can seek to positions in the past on each live feed, provided you specify a big enough feed storage.

    Live555 : Source-code libraries for standards-based RTP/RTCP/RTSP/SIP multimedia streaming, suitable for embedded and/or low-cost streaming applications

    So those are the synopsis of both libraries. Both of them have an out of the box Server.
    live555MediaServer.exe and ffserver.exe

    So if someone is planning to stream in a local Network live Inputs or VOD, what are the main differences and culprits ?

  • Make hint track for webm videos

    9 juillet 2013, par Computer_Engineer

    I want to ask you about how can I make a new hint track for webm videos, I used Evalvid framework to make hint track but for Mp4 videos, but i want to edit it to support Webm videos. How can i do that ? if it impossible, cany you give me any information about how can I hint track Webm videos ?

    Thanks in advance.