Recherche avancée

Médias (91)

Autres articles (39)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4753)

  • ffmepg enque and deque files list that streams to youtube

    17 janvier 2019, par andNn

    I have bunch of files ... commonly knows as myPlayList.txt
    example : vi myPlayList.txt

    a.mp4
    b.mp4
    c.mp4

    now when i run ffmpeg it starts streaming a.mp4, then b.mp4

    while b.mp4 is still streaming if i add d.mp4 to the fileList or via any other command .. it should get enqued. also if i now want to remove a file from the list .. i should be able update the file list from command or updating the file. But while i am changing the filelist the current stream should not change/break.

    My current script for single file is :

    VBR="2500k"                                    # Bitrate de la vidéo en sortie
    FPS="30"                                       # FPS de la vidéo en sortie
    QUAL="medium"                                  # Preset de qualité FFMPEG
    YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2"  # URL de base RTMP youtube

    SOURCE="/a/b/land.mp4" # single file path

    KEY="..."                                     # Clé à récupérer sur l'event youtube

    ffmpeg \
      -i "$SOURCE" -deinterlace \
      -vcodec libx264 -pix_fmt yuv420p -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \
      -acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a 712000 -bufsize 512k \
      -f flv "$YOUTUBE_URL/$KEY"
  • using ffmpeg on youtube video url php

    29 novembre 2014, par king

    I am trying to get youtube video from its actual url and convert it into avi using ffmpeg could anyone help me in this

    <?php
    $video = "http://r3---sn-cxaauxax-cage.googlevideo.com/videoplayback?initcwndbps=471250&ipbits=0&itag=22&sparams=dur%2Cid%2Cinitcwndbps%2Cip%2Cipbits%2Citag%2Cmime%2Cmm%2Cms%2Cmv%2Csource%2Cupn%2Cexpire&expire=1417308390&upn=mdUcarOb9uA&sver=3&mt=1417286760&mime=video%2Fmp4&fexp=3300113%2C3300113%2C3300134%2C3300134%2C3300137%2C3300137%2C3300161%2C3300161%2C3310366%2C3310366%2C3310705%2C3310705%2C3312478%2C3312478%2C900245%2C907259%2C927622%2C932404%2C937427%2C941458%2C943909%2C947209%2C948124%2C951501%2C952302%2C952605%2C952901%2C953000%2C953912%2C957103%2C957105%2C957201&mm=31&key=yt5&signature=5FBF01B3A073A5B1BCEF5FDC480420872E365766.FA2463D05DD20DFE72E4243723D76DC551A8E3F7&id=o-AG_18OU8gTru9RXONTqv_lYhbFcvoJgEzvbFUwObjNY6&dur=2825.984&mv=m&source=youtube&ms=au&ip=27.34.252.158";

          $num = 3;
          $secpos = 1;
        $thumb = "C:\\ffmpeg";
       echo "Starting ffmpeg...\n\n";
       echo shell_exec("ffmpeg -i $video -ss 90 -t 100  output.avi ");
       echo "Done.\n";
    ?>
  • avcodec/mlpdec : cover case when >2 channels are in single substream

    11 novembre 2021, par Paul B Mahol
    avcodec/mlpdec : cover case when >2 channels are in single substream
    

    Previously it was assumed that all >2 channels streams have >1 substreams.

    • [DH] libavcodec/mlpdec.c