Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (111)

  • 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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

Sur d’autres sites (8987)

  • code that reads a video file encodes into Mpeg4

    19 février 2017, par H.NW

    I am looking for a code that reads a video file, let’s say a raw video, encodes into Mpeg4 with ability to select a I-frame, B-frame and P-frame, sends them to an IP address.

  • FFMPEG : Add black frames at start and end of video

    7 novembre 2014, par user3729198

    Im trying to add 10 second of black frames to the beginning of my clip and 30 seconds of black frames at end of clip. This is what I got so far.


    ffmpeg -i XX.mp4 -vf "
    color=c=black:s=720x576:d=10 [pre] ;
    color=c=black:s=720x576:d=30 [post] ;
    [pre] [in] [post] concat=n=3" -an -vcodec mpeg2video -pix_fmt yuv422p -s 720v576 -aspect 16:9 -r 25 -minrate 30000k -maxrate 30000k -b 30000k output.mpg

    It works in some cases. But Only on specific material with right "SAR" values. But most of the time I get this error.


    Input link in1:v0 parameters (size 720x576, SAR 35:24) do not match the corresponding output link in0:v0 parameters (720x576, SAR 1:1)
    [Parsed_concat_2 @ 0x7f9853d048c0] Failed to configure output pad on Parsed_concat_2

    Is there a way to complement my code or another way to do this ?

  • Accessing SRT transport statistics using ffmpeg

    10 juillet 2020, par martyn Gilbert

    I am using ffmpeg built with SRT and am successfully able to send video stream to the destination using SRT.

    


    I am wondering if it is possible to get access to the statistics from the SRT connection such as packets sent, packets lost, packets re-transmitted etc.
The SRT demo application srt-live-transmit outputs these statistics to the console while running e.g.

    


    ======= SRT STATS: sid=226392826
PACKETS     SENT:           0  RECEIVED:           514 
LOST PKT    SENT:           0  RECEIVED:             0 
REXMIT      SENT:           0  RECEIVED:             0  
DROP PKT    SENT:           0  RECEIVED:             0
RATE     SENDING:           0  RECEIVING:       4.5198
BELATED RECEIVED:           0  AVG TIME:             0 
REORDER DISTANCE:           0                                  
WINDOW      FLOW:        8192  CONGESTION:        8192  FLIGHT:           0    
LINK         RTT:      0.39ms  BANDWIDTH:    90.06Mb/s     
BUFFERLEFT:  SND:    12288000  RCV:           12220500


    


    I need to get access to these statistic while sending the SRT stream using ffmpeg so that the stream quality can be monitored remotely.