Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (80)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10689)

  • avformat/rtspdec : show method request in log

    27 novembre 2020, par Andriy Gelman
    avformat/rtspdec : show method request in log
    

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavformat/rtspdec.c
  • When I set libx264 codec in ffserver the stream does not show up in browser

    30 novembre 2020, par 0 day

    When I set VideoCodec libx264 in ffserver.conf the stream does not show up in browser

    &#xA;

    <stream>&#xA;Format webm&#xA;# webm&#xA;Feed feed1.ffm&#xA;VideoCodec libx264&#xA;# swf&#xA;#libx264&#xA;VideoSize 840x525&#xA;VideoFrameRate 60&#xA;VideoBitRate 512&#xA;VideoBufferSize 512&#xA;NoAudio&#xA;AVOptionVideo flags &#x2B;global_header&#xA;StartSendOnKey&#xA;</stream>&#xA;

    &#xA;

    EDIT :

    &#xA;

    Here is my CLI

    &#xA;

    ffmpeg -probesize 1000M -framerate 60 -video_size 1680x1050 -f x11grab -i :0.0 -f alsa -i default -c:a aac -vf format=yuv420p http://localhost:8090/feed1.ffm&#xA;

    &#xA;

  • Record 60 second videos with ffmpeg constantly with webcam (dshow) and show preview

    1er juin 2015, par user1200794

    I’m trying for a while to record a long stream but the recording should be seperated in files with 60 seconds length. Meanwhile, I want to show a video preview.

    Currently I was able to show the preview (with ffmpeg SDL support) and save the files every 60 seconds using multiple output of ffmpeg and a small Java app which is running ffmpeg for 60 seconds and then restart the application with the new file name (timestamp). But than there is a lack of recoding during the restart of around 1 second.

    Is it somehow possible to run a main ffmpeg which is showing the preview and another ffmpeg instance which is doing the recording and can be run with threads (so maybe for 1 second overlapping of the saved streams). I had a look on pipes and streaming but can’t find a suitable solution. I appreciate any idea :)