Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (30)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (6901)

  • I need to take a live video stream from wowza and convert it to a JPEG Push for display in HTML5

    10 septembre 2015, par scott m gardner

    I have a live video feed that currently is served by a Wowza server as an RMTP stream. I need to create an Motion JPEG, or JPEG push stream to HTML5. I have FFMpeg, and have used it to generate individual frames from a video file, but do not know how to put it all together. Or how to package the frames together for transmission to the client.

    I am guessing that I will have to do some coding on the server side to package everything up. I will do this in Java or Scala. And on the client to handle the un packaging and display to the canvas in JavaScript.

  • Merge commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’

    15 juillet 2013, par Michael Niedermayer
    Merge commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’
    

    * commit ’5b4eb243bce10a3e8345401a353749e0414c54ca’ :
    mov : Seek back if overreading an individual atom

    Conflicts :
    libavformat/mov.c
    See : 6093960ae35c8d69c559b5604f683c2ea3f279ca
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mov.c
  • How to merge videos and add audio in a single command using ffmpeg ?

    9 janvier 2017, par harishkumar329

    I use the following commands to concat audio-less video files to one and add audio to it,

    To concat individual videos,

    ffmpeg  -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -i 5.mp4 -filter_complex 'concat=n=5:v=1:a=0[out]'  -map '[out]' -strict -2 -y video_withoutaudio.mp4

    To add audio,

    ffmpeg -i video_withoutaudio.mp4 -i audio.mp4 -c:v copy -c:a aac -strict -2 video_withaudio.mp4

    is there a way to combine these two commands to one ?

    My requirement is to optimise the commands as I have 1000+ commands taking a lot of time to complete, hoping combining these two to one will save some time.

    Thanks in advance !