Recherche avancée

Médias (91)

Autres articles (60)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (4270)

  • automatically show blue screen in ffmpeg when live video source disconnects

    13 janvier 2015, par user1913115

    i’m capturing a live source using ffmpeg :

    ffmpeg -i rtsp://192.168.1.143/source -codec copy output.mp4

    which works great. the ip address is an address of an RTSP proxy server which takes in the camera itself as the source. i.e. my setup :

    camera ->> RTSP proxy ->> ffmpeg(output)

    if camera disconnects (accidentally or on purpose) the recording stops (obviously) and only continues when I re-connect the camera.

    Question : is there a way for ffmpeg to ’fill’ the down time with blue screen or green screen of some sort ?
    i know i can ’play’ a still image of a green screen using ffmpeg to record an mp4 out of it :

    ffmpeg -loop 1 -y -re -i green.jpg -r 30 -vcodec libx264 -an -f h264 greenvideo.mp4

    so i could set it up this way :

    ffmpeg(green) ->> ffmpeg(output)

    but I would need to run the command manually. is there a way for ffmpeg(output) to automatically detect the disconnect and use green.jpg as a ’video’ source ? or i can even create a 5-minute green.mp4 video of just green screen.

    put it another way, is it possible for ffmpeg to automatically switch input sources if one goes down ?

  • merge two videos android

    4 juillet 2016, par Lukas

    I’m new to android, but not new to developing for mobile.

    My goal is to record two videos, and the mix it into one video using audio from both tracks. E.g two recorded videos are both 10 seconds. I want to take the first 5 seconds from the first video, and the last 5 seconds from the second video, combine them together with combined audio from both videos, and have it in an mp4 file.

    On iOS there is an AVFoundation framework, which lets you combine multiple videos and audio into one video file (h.264 codec in mp4 container). I want to achieve similar results on android, but fail miserably at finding frameworks or 3rd party libs for doing that. If anyone could help me by showing some links or any directions where to look for information it would be really helpful. Thanks in advance !

  • How to merge two videos in android

    4 juillet 2016, par Lukas

    I’m new to android, but not new to mobile development.

    My goal is to record two videos, and the mix it into one video using audio from both tracks. E.g two recorded videos are both 10 seconds. I want to take the first 5 seconds from the first video, and the last 5 seconds from the second video, combine them together with combined audio from both videos, and have it in an mp4 file.

    On iOS there is an AVFoundation framework, which lets you combine multiple videos and audio into one video file (h.264 codec in mp4 container). I want to achieve similar results on android, but fail miserably at finding frameworks or 3rd party libs for doing that. If anyone could help me by showing some links or any directions where to look for information it would be really helpful. Thanks in advance !