Recherche avancée

Médias (91)

Autres articles (55)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • How do I configure vlc/ffplay/cheese (or other) to automatically cycle/rotate between my 3 webcams ?

    9 janvier 2019, par fivedogit

    I have 3 webcams which register in Ubuntu 18.04 as /dev/video0, /dev/video1 and /dev/video2. All three show up fine in Cheese and ffplay (but not vlc for some reason... not important for this question).

    What I want is to open a viewing window and have the image shift automatically from device 0 to device 1 to device 2 and back to 0 every X seconds without the window closing or resizing.

    I think the ultimate solution will come from creating a fake video device (let’s say /dev/video3), watching it with a program and using ffmpeg or other command-line scripts to change the stream of /dev/video3. (v4l2loopback seemed promising)

    Unfortunately, I have spent a few hours on this and gotten nowhere. Any help would be appreciated.

  • x86inc : activate REP_RET automatically

    11 septembre 2013, par Loren Merritt
    x86inc : activate REP_RET automatically
    

    Now RET checks whether it immediately follows a branch, so the
    programmer dosen’t have to keep track of that condition. REP_RET
    is still needed manually when it’s a branch target, but that’s
    much rarer.

    The implementation involves lots of spurious labels, but that’s OK
    because we strip them.

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

    • [DH] libavutil/x86/x86inc.asm
  • For ffmpeg, is there a way to "automatically" name the output using the input stream's url (.m3u8) ?

    6 août 2022, par creativeHELM

    So far, this zsh alias works quite well to capture the live stream :

    &#xA;

    alias lvcp=&#x27;ffmpeg -i $(pbpaste) -c copy name_of_file.ts&#x27;&#xA;

    &#xA;

    However, because I'm working with numerous live streams at a time, I need a way to "automatically" (or "dynamically") name the output files based on the 'camera name' in the .m3u8 url.

    &#xA;

    Here's a sample of the url structure :

    &#xA;

    &#x27;https://event.name_of_event.com/hls/camera-a-m12345_hd-1080/cl_v12345_12345_12345=.m3u8&#x27;&#xA;

    &#xA;

    I'm fine with the .ts output (or container).

    &#xA;

    I just need to be able to extract the name from the .m3u8 url and automatically give it to the output name (e.g. 'name_of_file.ts').

    &#xA;

    Is there a way to script that for my zsh alias ?

    &#xA;

    The output name might look like this if it were automatically extracted from the .m3u8 above :

    &#xA;

    'camera-a.ts'

    &#xA;