Recherche avancée

Médias (91)

Autres articles (28)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (6131)

  • Why am I getting an error of "No module named 'YouTube_dl'", but the module is installed ?

    14 septembre 2022, par Harshul Nanda

    The command "streamlit run main.py" gives the error of no module named 'YouTube_dl' but it says requirement already satisfied. When importing youtube_dl in a python script file, it shows me no module named "youtube_dl".

    


    enter image description here

    


  • Nginx Rtmp Module - How to check resolution when pushing rtmp stream to server before redirecting stream to another application ?

    22 août 2022, par bui the vuong

    I have a problem when developing a livestream system with nginx-rtmp-module . I have consulted some systems, there is a function that when pushing the rtmp stream, the livestream systems can recognize the resolution of the stream -> from there it will encode to hls with the corresponding profiles. For example stream 720p produces hls file with 360p -> 720p , if stream 1080p will produce hls file with 360p -> 1080p . I have tried the ways but no success. So how can I check the resolution and redirect the rtmp stream to the appropriate application for encoding. Looking forward to everyone's advice.

    


  • How to save files in a different location after conversion with FFMpeg

    11 août 2022, par Spectra

    I am using FFMpeg on Windows to add the same audio to multiple videos using the following line of code :

    


    for %i in (*.mp4) do ffmpeg -y -i "%i" -i m.mp3 -af apad -map 0:v -map 1:a -c:v copy -shortest "%~ni with audio.mp4"


    


    The problem is that the program saves the output files in the same location. Is there any way that I can save them in another location ?