Recherche avancée

Médias (91)

Autres articles (85)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • 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

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

Sur d’autres sites (12064)

  • 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";
    ?>
  • Produce high quality GIF with Fluent FFmpeg

    3 mars 2023, par Mensur

    I'm trying to generate high quality GIF's with Fluent FFmpeg, which is a wrapper for FFmpeg for Nodejs and i'm stuck.
What i need to do is add to add palletegen & palleteuse and i found a great example how this can be use directly in FFmpeg here.

    


    However, I need help to add this in fluent ffmpeg code below. Does anyone have any example how I can produce high quality GIF's with fluent ffmpeg below ? The code below is generating GIF's but not that high quality.

    


        const inputPath = videoname + ".mp4";
    const outputPath = videoname + ".gif";
    const startTime = "00:00:05";
    const duration = "00:00:08";
    const fps = 10;

    ffmpeg(videotemp)
    .setStartTime(startTime)
    .setDuration(duration)
    .fps(fps)
    .size("500x300")
    .output(outputPath)
    .on("end", () => {
        console.log("Video has been converted to " +outputPath+ " animation successfully!");
    })
    .on("error", (err) => {
        console.log("Error: " + err.message);
    })
    .run();