Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (64)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (6689)

  • How to create RTSP using a Local video

    10 avril 2020, par Parag Singh

    I want to create an RTSP using a local video on the system.

    



    I tried using the FFmpeg but was able to create a UDP stream using the following command :

    



    ffmpeg -i "video.mp4" -v 0 -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000

    


  • Playing local audio discord.py bot on linux [closed]

    8 août 2020, par Qskata_K

    I have search about it, but not found nothing useful. I want to play from the Python3 script local audio with discord bot (on voice channel of course).
I saw some materials about it, but they are on Windows OS, while I'm with Ubuntu 20.04. I have download ffmpeg - which I can use for the downloading the audio, but what about the playing it ? I won't post any code here, since I'm here in seeking of ways to do it, not having issues with code.

    


  • Making a video out of frames in Python

    6 juin 2021, par amit

    I have to create a video using earlier extracted frames and the following code works fine :

    


    import os
    
fps = 25

os.system("ffmpeg -r fps -i Encode/encode_image%01d.png -vcodec mpeg4 -y movie.mp4")


    


    But storing framerate (which is 25 in this case) in fps variable and passing it in -r, I am getting following error :

    


    


    "Error parsing framerate fps."

    


    


    Meanwhile, the code below, creates a video :

    


    import os

fps = 25
os.system("ffmpeg -r 25 -i Encode/encode_image%01d.png -vcodec mpeg4 -y movie.mp4")


    


    But the framerate is different for every one of my videos (that's why I am storing it in a variable).
Due to above error I am unable to pass different frame rate value each time and, I cannot type the value (like 25) directly.

    


    Please suggest me some way to tackle this problem or provide me with another Python code to combine frames into video.