Recherche avancée

Médias (91)

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (8855)

  • FFMPEG mux video and audio (from another video) - mapping issue

    22 avril 2015, par Mark

    I would like to place the audio from a video to another video without an audio (in one command) :

    ffmpeg.exe -i video1_noAudio.mov -i video2_wAudio.mov -vcodec copy -acodec copy video1_audioFromVideo2.mov

    I guess "-map" is the correct way to do it but I got confused with it.

    Can you suggest how to resolve it ?

  • How to extract certain frames from a .yuv video file and create a new video using FFmpeg, OpenCV and python ?

    8 avril 2020, par Ann Baiju

    I have a .yuv video file and a list containing some frame numbers. I need to make a new video with the frame numbers in the list and another video with the frame numbers that are not on the list. How can I do this using FFmpeg and subprocess module in python ? I'm also using OpenCV in the program. I need the new videos in both .yuv and .avi formats.

    


  • Convert one image + one video's audio to video with ffmpeg

    5 septembre 2019, par intrlocutr

    I’m trying to convert one video file (flv) and one image file (jpg) to one mp4 video, with the video’s audio sample rate increased, and the image overlayed on top of the audio.

    Right now I’m using this command :

    ffmpeg -i video.flv -loop 1 -i photo.jpg -y -filter:a "asetrate=55786.5‬" -vcodec png -filter:v "pad=ceil(iw/2)*2:ceil(ih/2)*2" -map 1:0 -map 0:1 -y -tune stillimage finalvideo.mp4

    It produces an mp4 that plays just fine in VLC, but will not upload to YouTube, which is what I eventually want to do. I could convert the flv to an mp3 and then to an mp4, with two separate ffmpeg commands, however I’m running this in an environment where time and resources are limited, so I’d like to avoid that if at all possible.