Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (46)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

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

Sur d’autres sites (6760)

  • Create screen shot from video dynamically without ffmpeg [on hold]

    3 décembre 2014, par hitesh

    I need to take screenshot from the video after uploading, I already tried ffmpeg but it seems wjile enabling ffmpeg in my Cent OS 6.5 server. (check here )

    So I am looking for other ways to do this, I will be using simple html file tag for getting the video file, then I will be uploading it in server.

    what are other ways than ffmpeg to create screen shot from video dynamically in php or JS.

  • Processing 3, video lib : could not load movie file Ubuntu

    19 novembre 2017, par Konstantin Pashennykh

    Don’t sample code video lib processing 3.3.6 on Ubuntu 16.04. File in both folder - with sketch and data folder. Previous Install gstreamer 0.10-ffmpeg (solved previous problem with not run lib) Any your idea ?
    P.S. Work on Windows 7

    import processing.video.*;

    Movie mov;

    void setup() {
     size(640, 360);
     background(0);
     mov = new Movie(this, "transit.mov");
     mov.loop();
    }

    void movieEvent(Movie movie) {
     mov.read();  
    }

    void draw() {    
     image(mov, 0, 0);

     float newSpeed = map(mouseX, 0, width, 0.1, 2);
     mov.speed(newSpeed);

     fill(255);
     text(nfc(newSpeed, 2) + "X", 10, 30);
    }

    Best Regards,
    Kos

  • Can't access Google Cloud Platform hosted rtsp stream externally

    1er novembre 2023, par Nikos Daskalas

    I have been trying to host a video to rtsp stream on a gcp vm instance.

    


    My steps were :

    


    a) Set up an external ip to my vm, and setup firewall rules to allow traffick.

    


    b)Install mediamtx to my vm and start a server with ./mediamtx

    


    c)install ffmpeg and stream my video with : ffmpeg -i video.mp4 -rtsp_transport tcp -f rtsp rtsp ://externalip:8554/live.stream

    


    The stream runs locally, but when I try to access in with vlc or ffplay rtsp ://externalip:8554/live.stream, I cannot connect. I tried to ping the server from the client side, and it works ok.

    


    What am I missing ? Are there any more configurations I need to do to my project ?