Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Fixing youtube link

    23 octobre 2010, par Jack Moore

    m example1/index.html m example2/index.html m example3/index.html m example4/index.html m example5/index.html Fixing youtube link

  • libopusdec : default to stereo for invalid number of channels

    14 novembre 2016, par Andreas Cadhalpun
    libopusdec : default to stereo for invalid number of channels
    

    This fixes an out-of-bounds read if avc->channels is 0.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/libopusdec.c
  • 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"