Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (100)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (11496)

  • How can I make a slideshow of images into a video with each image having a specific length of frames to be shown ?

    24 novembre 2013, par jett

    Right now I am using something like this to create a video from a selection of images :

    avconv -i input%05d.png -r 24 -vsync cfr -c:v libx264 output.mp4

    But I want each picture to have a separate amount of time spent on it, so if I have 5 images I might want :

    [10frames, 40frames, 5frames, 80frames, 10frames]

    To be specified. The only thing I could find that may be a solution is to create five separate videos- set the length then merge them together, is this my only choice here ?

  • How to capture and store a video in h.264 format using web browsers without Flash ?

    7 novembre 2016, par 2vision2

    How to capture a video and store it in h.264 format using web browsers without flash ?

    As per my analysis, HTML5 can be used to access the camera and microphone without any additional plug-ins as in this link. "http://www.html5rocks.com/en/tutorials/getusermedia/intro/"

    However, i don’t know the possibility of storing the video in h.264 format.

    I would prefer not to install any additional plugins. However if its not possible without any additional plugins, i would accept it. I can also use **Java Applets if needed.

    Is HTML 5 the only option or it possible with JScript itself ? I also hope that ffmpeg can help me too.

  • Stream a short video continuously with ffmpeg

    12 janvier 2014, par Blue Sky

    I have a short video (3 sec), and I want to stream it over a UDP address like udp ://127.0.0.1:1000 continously (repeatedly) so that the stream runs forever unless the user stops the streaming session. How can I do so ? Thanks !