Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (77)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10152)

  • Pipe PhantomJS output to FFmpeg

    10 avril 2017, par Hasse Andersen

    I am running PhantomJS using Selenium WebDriver (C#).

    I’m trying to video record my browser using FFmpeg as shown in the 2 tutorials :

    https://mindthecode.com/recording-a-website-with-phantomjs-and-ffmpeg/

    https://gist.github.com/phanan/e03f75082e6eb114a35c

    As explained in the tutorials, I’ll need to pipe output the phantomJS process to ffmpeg.

    I know how to add arguments to phantomjs, like the following :

       var svz = PhantomJSDriverService.CreateDefaultService();
       svz.AddArgument("ffmpeg -y -c:v png -f image2pipe -r 24 -t 10  -i - -c:v libx264 -pix_fmt yuv420p -movflags +faststart output.mp4");
       var driver = new PhantomJSDriver(svz);

    However, I don’t know how to add the argument as pipe. I have tried adding the pipe symbol before the actual argument but that doesn’t seem to work.

    So, my question is, how do I pipe the output of PhantomJS using selenium webdriver ?

  • Unable to find a suitable output format for 'pipe' - Long ffmpeg code

    7 avril 2017, par I.Alex

    this its my code which its pretty long.
    Can you tell me please why its not working ?

    ffmpeg -i input.mp4 - filter_complex \
      "[0:v]split=4[v0][v1][v2][v3]; \
       [v0]trim=start_frame=0:end_frame=1,loop=90:1:0,setpts=N/FRAME_RATE/TB[0v]; \
       [v1]trim=start_frame=1:end_frame=301,loop=90:1:299,setpts=N/FRAME_RATE/TB[1v]; \
       [v2]trim=start_frame=301:end_frame=601,loop=90:1:299,setpts=N/FRAME_RATE/TB[2v]; \
       [v3]trim=start_frame=601:end_frame=900,loop=90:1:298,setpts=N/FRAME_RATE/TB[3v]; \
       aevalsrc=0:d=3[0a]; \
       [0:a]asplit=3[a1][a2][a3]; \
       [a1]atrim=0:10,asetpts=N/SR/TB[1a]; \
       [a2]atrim=10:20,asetpts=N/SR/TB[2a]; \
       [a3]atrim=20:30,asetpts=N/SR/TB[3a]; \
       [0v][0a][1v][1a][2v][2a][3v][3a]concat=n=4:v=1:a=1[v][a]" \
      -map "[v]" -map "[a]" outva.mp4

    I get this : Unable to find a suitable output format for ’pipe :’
    pipe: : Invalid argument

  • ffmpeg pipe response how to play javascript ?

    30 mars 2017, par 최진영

    Hello i have some question

    i trying app.post and response angular2

    here is my code

    function.js

    var url = 'https://www.youtube.com/watch?v=' + id;
    try {
          youtubeStream(url).pipe(res)
        } catch (exception) {
           res.status(500).send(exception)
         }

    response.ts

          this.loading = true
           var headers = new Headers();
           var query = {
                        "videoURL" : this.tracklist[0].videoURL
                       }
            headers.append('Content-Type', 'application/json');
            this.http.post('http://localhost:4100/toMp3',query,{headers: headers}).subscribe((res) => {
                console.log(res) <-- plz check picture
            });

    console.log(res)

    console.log(res)

    I do not know how to play stream data in _body