Recherche avancée

Médias (91)

Autres articles (67)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6468)

  • Using FFMPEG to concat different file types

    7 janvier 2020, par Alan Edwards

    I want to be able to concat 3 files together using ffmpeg.
    The first file is a short video introduction called intro.mp4, the other 2 files are audio files both lasting around 3 minutes each, they are called voice1.mp3 and voice2.mp3.

    It would also be good to have an image as a background to the audio files i.e. background1.jpg and background2.jpg whilst the audio files are playing so as to keep the viewer interested.

    If this can be done by via the command prompt or using a txt file and command prompt that would be great.

    Thanks in anticipation.

    Alan

  • Adding text to the video without next converting

    2 janvier 2020, par urbciech

    I have to add a short text at the beginning of the films 0:10 - 0:20. My client has a large database of 1M + movies. Currently, adding text to one movie is about 20 minutes, the reason is the conversion. Is it possible to do it faster without having to re-encode the movie ?. I came up with the idea to cut the beginning of each film 0:00 - 0:30 then add the text to this short excerpt and finally replace the beginning with a new piece of the film from with the text.

    Is there any other way to speed up this process ?

  • Is there a way to run MPEG-TS stream over RTSP ?

    22 novembre 2019, par Joseph Matan

    I’m trying to measure latency from the moment a frame was captured, till the time I display it.

    In order to do so, I need to make sure I send the PTS value with the captured frame timestamp (with MPEG-TS over UDP). This is how I do it (and it works good !!) : 

    ffmpeg -re -f v4l2 -copyts -i /dev/video0 -c:v libx264 -intra -f mpegts -mpegts_copyts 1 udp ://192.168.10.199:1234

    Later, I’ve a short script that reads the PTS, do some calculations, and prints the latency while playing the video on real-time.

    Is there a way to do the same over RTSP (I know I can do it over RTP...)  ?