Recherche avancée

Médias (91)

Autres articles (45)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (5955)

  • ffmpeg how to add different audio affects to video

    1er juin 2020, par 3sd

    windows 7 64 using ff-mpeg latest version downloaded command-line.

    



    1:how do i distortion the background audio sound of drums or bass or anything but not affect the voice.
2:how do i add a sound something similar to audio is ripping,like a page ripping sound.
    
3:how do i randomly add a overlay sound effect of distortion something similar to -b 18k

    



    -b 18k decreases the audio quality i think and i am looking to do something similar in different variations.

    


  • nginx ffmpeg hls streaming filling up my hard drive

    19 avril 2020, par stefki

    I am using nginx and ffmpeg on my windows 10 machine. Everything works ok, but my hard drive keep filling up .
These are my command lines

    



    ffmpeg -i "http://192.168.1.2:9566/history/" -copytb 1 -filter_complex "[0:v][0:s:1]overlay[v];[v]pp=fd,scale=720:-1[y]" -map [y] -map 0:1 -s 720x576 -pix_fmt yuv420p -b:v 1800k -maxrate 2000k -bufsize 3000k -c:v libx264 -strict 2 -profile:v "main" -preset superfast  -acodec aac -ac 2 -ar 44100 -ab 128k -vsync 1 -async 1 -f hls -hls_time 5 -hls_list_size 6 -segment_wrap 10 -hls_flags delete_segments "D:\media\hls\history.m3u"


    



    The HLS segments goes to D :\media\hls
This drive D : is ok, it's not filling up.

    



    But the C :\ partition is filling up all the time.

    



    the ffmpeg.exe is executed from Folder :
C :\Users\Stefki\Desktop\ffmpeg-latest-win64-static (1)\ffmpeg-latest-win64-static\bin

    



    VLC play link http://192.168.2.254/hls/history.m3u OK

    



    Thank you to all, I hope any experienced dev can help me :)

    



    This is my nginx config file

    



    worker_processes 1 ;

    



    events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }
         location /hls {
            types {
                application/vnd.apple.mpegurl m3u8;
                video/mp2t ts;
            }
            root D:/media;
            add_header Cache-Control no-cache;
            }


    


  • FFmpeg starts without any error but no output file is created

    25 mai 2021, par ehsan toghian

    I want to play the live stream of my ip camera in a web page locally.
I have downloaded the latest release version of ffmpeg from gyan.dev to convert a rtsp stream to hlc format. I use below command to convert stream :

    


    ffmpeg -hls_time 3 -segment_wrap 10 -i "rtsp://cameraIP" c:/inetpub/wwwroot/stream.m3u8


    


    nothing happens ! But I can play the stream with ffplay easily. Unfortunately, i'm stuck with the correct ffmpeg option.

    


    Any advice is appreciated.