Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (58)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (7942)

  • Google - Shaka | Deleting SegmentTimeline in manifest.mpd after restart container

    27 juin 2022, par burakkiymaz

    Shaka is running inside docker container. When I restarted container, SegmentTimeline part in manifest.mpd file deleting. Is possible appending old SegmentTimeline to new manifest.mpd file or recover it when I restarted ?

    


    Operating System :

    


    NAME="CentOS Linux"
VERSION="7 (Core)"


    


    Shaka Packager Version :

    


    google/shaka-packager:v2.5.1


    


    You can find out my configuration file below :

    


    CH_PATH=/some/path/$CH_NAME

/usr/bin/packager \
        'in=udp://127.0.0.1:'$PORT',stream=audio,init_segment='$CH_PATH'/audio_init.m4s,segment_template='$CH_PATH'/audio_$Time$.m4s' \
        'in=udp://127.0.0.1:'$PORT',stream=video,init_segment='$CH_PATH'/h264_360p_init.m4s,segment_template='$CH_PATH'/h264_360p_$Time$.m4s' \
        'in=udp://127.0.0.1:'$(($PORT + 1))',stream=video,init_segment='$CH_PATH'/h264_540p_init.m4s,segment_template='$CH_PATH'/h264_540p_$Time$.m4s' \
        'in=udp://127.0.0.1:'$(($PORT + 2))',stream=video,init_segment='$CH_PATH'/h264_720p_init.m4s,segment_template='$CH_PATH'/h264_720p_$Time$.m4s' \
        'in=udp://127.0.0.1:'$(($PORT + 3))',stream=video,init_segment='$CH_PATH'/h264_1080p_init.m4s,segment_template='$CH_PATH'/h264_1080p_$Time$.m4s' \
        --enable_widevine_encryption \
        --key_server_url ************ \
        --content_id ********** \
        --signer ********** \
        --aes_signing_key ************ \
        --aes_signing_iv ************* \
        --mpd_output $CH_PATH/manifest.mpd \
        --hls_playlist_type LIVE \
        --hls_master_playlist_output $CH_PATH/mn.m3u8 \
        --time_shift_buffer_depth 43200 \
        --preserved_segments_outside_live_window 43200


    


  • FFMPEG RTP UBUNTU NETWORK issue

    14 août 2015, par Иван Колесников

    I’m want to copy a bunch of SD sources from mpegts transported with RTP on local files. (VBR mpeg2video, mp2 audio). It works fine for one multicast source with following command : ffmpeg -i rtp ://@IP1:PORT -c copy video1.mpg. But when I run a second ffmpeg instance with following command :
    ffmpeg -i rtp ://@IP2:PORT -c copy video2.mpg then I’m start to getting errors from both ffmpeg instance ("RTP : dropping old packet received too late") and in both files (video1.mpg and video2.mpg) start to recording video from second source (rtp ://@IP2:PORT). This issue is only under Linux (Ubuntu 15.04). I have no problems under Windows and when try the same actions from files to files. Under Ubuntu even two ffplay instances tuned to different sources play back the same content (from source which was opened second). I tried playing back with vlc and there is no such problem.
    I can resolve this issue when using ffmpeg with -f key : ffmpeg -f mpegts -i rtp ://@IP1:PORT -c copy video1.mpg and ffmpeg -f mpegts -i rtp ://@IP2:PORT -c copy video2.mpg, but then I getting following errors : "[mpegts @ 0x306e240] PES packet size mismatch" and receive both files (video1.mpg and video2.mpg) with artifacts and freeze effects. This issue appears for both operation systems. How can I recording video from few RTP streams contemporaneously under Ubuntu without errors and artifacts ? Please give advice.

  • Executing FFmpeg recording using in-line SDP

    3 décembre 2020, par Sarvesh Patil

    I'm trying to record audio on a webrtc server in NodeJS using FFmpeg.

    


    I am able to record the audio if I explicitly create an input.sdp file and use it with the "-i" flag of FFmpeg.

    


    My question is : How to create a string in the code to dynamically change port numbers for recording different streams at the same time ?

    


    I tried doing this :

    


        const sdpInfo = `data:application/sdp;charset=UTF-8,v=0\no=- 0 0 IN IP4 ${ipAddr}\ns=-\nc=IN IP4 ${ipAddr}\nt=0 0\nm=audio ${port} RTP/AVPF 111\na=rtcp:${port+1}\na=rtpmap:111 opus/48000/2\na=fmtp:111 minptime=10;useinbandfec=1`


    


    However, if I give it as input with "-i" flag, I get the following error :

    


    


    data:application/sdp ;charset=UTF-8,v=0 : Invalid data found when processing input

    


    


    Can someone please help ?