Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (56)

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

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (6192)

  • AR Drone 2 and ffserver + ffmpeg streaming

    5 mars 2013, par BjarkeHS

    I want to be able to restream the video feed of the AR Drone 2 from a Debian Server to Flash.

    I am aware that the AR Drone uses the codec p264. I'm totally green when it comes to video codecs, so I don't know what will be suitable for the goal I want to achieve ?

    I have been able to stream the video feed from the AR Drone but with very high latency and extremely low quality, compared to when I directly connect to the AR Drone using ffplay.

    I currently use the .swf example in the standard ffserver.conf :

    <stream>
    Feed feed1.ffm
    Format swf
    VideoFrameRate 30
    VideoIntraOnly
    NoAudio
    </stream>

    And the settings for the .ffm Feed are as follows :

    <feed>
    File /tmp/feed1.ffm
    FileMaxSize 17K
    ACL allow 127.0.0.1
    NoAudio
    </feed>

    The command I use for giving input to the ffserver feed :

    ffmpeg -i http://192.168.1.1:5555 http://localhost:8090/feed1.ffm

    How am I able to achieve lower latency and higher quality, since the stream is currently unwatchable ?

  • mov : Remove duration-of-last-frame heuristic hack

    24 décembre 2018, par Derek Buitenhuis
    mov : Remove duration-of-last-frame heuristic hack
    

    This breaks totally valid files that get caught in its heuristic.

    This, according to the commit message, is my own doing, having asked
    Michael to implement this check and providing a sample that was
    "wrong". I am now atoning for my sins, and removing this hack, having
    seen the light (aka that this was silly to do in the first place).

    Resotores correct behavior on valid files.

    This reverts commit 8e5e84c2a2a21a979b48e80c5a8dd44754ab3f21.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
  • FFmpeg no output on stdout

    30 novembre 2022, par RedyAu

    The problem is simple :

    &#xA;


    &#xA;

    When I run for example :

    &#xA;

    print(Process.runSync(&#x27;ipconfig&#x27;, []).stdout)&#xA;

    &#xA;

    I get the expected output :

    &#xA;

    &#xA;Windows IP Configuration&#xA;&#xA;&#xA;Unknown adapter Helyi kapcsolat:&#xA;&#xA;   Media State . . . . . . . . . . . : Media disconnected&#xA;   Connection-specific DNS Suffix  . :&#xA;......&#xA;

    &#xA;


    &#xA;

    But when I try to run ffmpeg, I get no output :

    &#xA;

    print(Process.runSync(&#x27;ffmpeg&#x27;, []).stdout)&#xA;

    &#xA;

    &#xA;

    What I'd expect in this case is to get the help output from ffmpeg.

    &#xA;

    My guess is, ffmpeg has some kind of "different" way of interacting with stdout than most executables. What could be the problem ? I'm totally lost here.

    &#xA;

    I need to read the stdout eventually to get the output of ffmpeg -list_devices true -f dshow -i dummy, which would list the available DirectShow devices.

    &#xA;