Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (63)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (11256)

  • Anomalie #3299 : Génération d’urls en boucle avec noms d’objets longs

    16 octobre 2014, par Guillaume Fahrner

    Je pense que c’est plus un soucis d’implémentation qu’autre chose. J’ai réglé mon problème de la manière suivante :

    1) implémenter le pipeline objet_compte_enfants pour l’objet concerné, dans mon cas

    /**
     * Compte intégrant les challenge dans le nombre d’objet d’une rubrique
     */
    function ctf_alltheday_objet_compte_enfants($flux) 
    

    if ($flux[’args’][’objet’] == ’rubrique’)
    $flux[’data’][’machines_virtuelles’] = sql_countsel(
    ’spip_machines_virtuelles’,
    array(
    ’id_rubrique = ’.intval($flux[’args’][’id_objet’])
    )
    ) ;

    return $flux ;

    2) ajouter la configuration adéquate a la configuration des URLs choisi, dans mon cas :

    $GLOBALS[’url_arbo_parents’]=array(’challenge’=>array(’id_rubrique’,’rubrique’)) ;
    $GLOBALS[’url_arbo_types’]=array_merge($GLOBALS[’url_arbo_types’], array(’challenge’=>’’, ’solution’=>’’)) ;

    Une fois la "configuration" mise en place correctement : plus aucun soucis ,-)

  • SRT protocol not found - Raspbery Pi 4 via ffmpeg

    12 août 2021, par Tim Martin

    We tried to stream from a rasp Pi 4 via SRT, but we got a error : "protocol not found". Our command line is :

    


    ffplay srt://127.0.0.1:9500?mode=listener&latency=20000


    


    We tried the following guides :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
how to compile ffmpeg with enabling libsrt
https://www.undergroundnews.dk/index.php/item/107-rtmp-eller-srt-streaming

    


    Those guides worked so far and compiled but we still got the error message.

    


    Do you have any ideas how to get the srt protocol working on a pi via ffmpeg ?

    


  • FFmpeg with multiple output streams

    22 novembre 2018, par William Blake

    I am using ffmpeg to combine an rtsp stream with an audio stream from a usb mic. I would like to stream the combined audio and and video to an RTMP stream and just the audio to an icecast stream simultaneously. I have them working separately but am having difficulty finding the magic combination using the -f tee parameter. It seems like that would be the best way. This was the reference I was trying to use : https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

    Here are the separate commands :

    ffmpeg -rtsp_transport tcp -use_wallclock_as_timestamps 1 -thread_queue_size 1024  \
    -i "rtsp://RTSP-SERVER-ADDRESS" \
    -f alsa -thread_queue_size 1024 -ac 1 -itsoffset 00:00:01.2 -i hw:1,0 \
    -vcodec copy -acodec mp3 -ar 44100 -ab 32k -map 0:v -map 1:a -bufsize 12000k \
    -f flv 'RTMP-SERVER-ADDRESS'

    ffmpeg -ac 1 -f alsa -i hw:1,0 -acodec mp3 -ab 32k -ac 1 -content_type audio/mpeg -f mp3 icecast://ICECAST-ADDRESS

    However my attempts to combine them have been futile. Any thoughts ?