Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (96)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7683)

  • How to make ffserver which can make a snapshots ?

    4 mai 2016, par Serge Roussak

    I need some solution to take a "good" (not corrupted) snapshots from a camera device.

    Now I try to do this using the ffserver. Here is my config :

    HTTPPort 8090
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 20
    MaxClients 10
    MaxBandwidth 10000

    <feed>
     File /tmp/feed.ffm
     FileMaxSize 200k

     ACL allow 127.0.0.1
    </feed>

    <stream>
     Feed feed.ffm
     Format jpeg

     VideoSize 800x600
     VideoFrameRate 30
     Preroll 5
     Strict -1

     NoAudio
     NoDefaults
    </stream>

    I run ffmpeg as follows :

    ffmpeg -f video4linux2 -i /dev/video0 -qmax 2 http://localhost:8090/feed.ffm

    and it works (almost) as expected except that sometimes getting a jpeg hangs. I.e. a browser sends the GET request and... alles (de). If I in this case stop the ffmpeg then the browser reports an error, but if don’t touch anything the browser may wait a response very long time. In any case this behaviour is not acceptable for me : it could be better if the ffserver answers with any kind of error or something about this.

  • Revision 007486329f : Add support for downloading test data The commit introduces a make target 'test

    20 juin 2012, par John Koleszar

    Changed Paths : Modify /README Modify /build/make/Makefile Modify /libs.mk Add support for downloading test data The commit introduces a make target 'testdata' that downloads the required test data from the WebM project website. The data will also be downloaded if invoking `make test` but (...)

  • PHP&FFMPEG, How to make sure the result video is suitable for web browsers ?

    30 juillet 2016, par Drupalist

    I need to split a section of a video, paste a logo and also blur a video online. I know how to do these but the problem is, I don’t know how to make sure that the result video is suitable for web. For example there is a mp4 video in my website which is playing via the browser, and using this code I cut a section of it :

    exec("ffmpeg -i ".$source." -ss ".$start." -to ".$end."  -c copy ".$newVideo);

    The problem is, when the distance between $start and $end is more than a few minutes, the split operation is done but it is not played via browser.

    What codec or library do I need to add as filter to make sure that the result video is always playing on all modern browsers ?