Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7652)

  • ffmpeg streaming camera with directshow

    17 novembre 2015, par atu0830

    I am trying use ffmpeg to streaming one camera. The command is

    ffmpeg.exe -y  -f dshow -i video="AmCam" -c:v copy  -framerate 7.5 -map 0:0 -f ssegment -segment_time 4 -segment_format mpegts  -segment_list "web\stream.m3u8"  -segment_list_size 720  -segment_list_flags live  -segment_wrap 10 -segment_list_type m3u8  "web\segments\s%%d.ts"

    And I create a html in web folder

                                         
                                   
                                       
                                     
       <video controls="controls" width="720" height="405" autoplay="autoplay">  
           <source src="stream.m3u8" type="application/x-mpegURL"></source>          
       </video>                                    
                                       

    All ts file generated but looking Safari on iPad looding but it always show dark player and loading

  • ffmpeg live streaming for twitch has audio delay

    8 avril 2019, par ILoveCake

    I am relatively new to ffmpeg and live streaming.
    Trying to overlay some videos and an audio stream.
    One of the audio streams is delayed for about 2 seconds.

    Here are the details :

    stream 0 : video : a static background image

    stream 1 : video : an area of the screen recorded

    stream 2 : video : webcam video

    stream 3 : audio : webcam audio

    AREA_X=1024; AREA_Y=576; OFFSET_X=110; OFFSET_Y=145

    ffmpeg \
     -async 1 -vsync 1 \
     -loop 1 -i /home/helmi/Documents/Streaming.Chess.png \
     -thread_queue_size 512 -f x11grab -s ${AREA_X}x${AREA_Y} -framerate 25 -async 1 -vsync 1 -i :0.0+${OFFSET_X},${OFFSET_Y} \
     -thread_queue_size 512 -f v4l2 -framerate 25 -video_size 160x120 -i /dev/video0 \
     -thread_queue_size 512 -f pulse -ac 2 -ar 48000 -i default \
     -filter_complex \
     "color=0x336699cc:1024x64, drawtext=textfile=/home/helmi/Documents/Streaming.Chess.txt:fontfile=/home/helmi/.fonts/PersonalUse_Clipper_Script_fat.ttf:x=10:y=16:fontsize=40:fontcolor=white [bottom]; \
      [1:v]scale=960:-1,setpts=PTS-STARTPTS [a]; \
      [0:v]setpts=PTS-STARTPTS [0v]; \
      [0v][a]overlay=15:15 [b]; \
      [b][2:v]overlay=(W-w):0 [c]; \
      [c][bottom]overlay=0:H-64 [video]" \
      -map "[video]" -map "3:a" \
       -async 1 -vsync 1 \
       -c:v libx264 -b:v 500k -maxrate 500k -bufsize 1000k -framerate 25 -crf 17 -preset superfast -pix_fmt yuv420p -tune zerolatency \
         -force_key_frames "expr:gte(t,n_forced*2)" \
       -c:a aac -b:a 256k -ac 2 -af "aresample=async=1" \
     -f flv rtmp://live-vie.twitch.tv/app/...

    Am I missing something here ? Any help is appreciated.

  • Support scaling to UHD

    6 mai 2018, par Aurelius Schnitzler

    I am using ffmpeg with

    ffmpeg -i GOPR1373.MP4 -c:v libx264 -vf "pad=width=5848:height=2924:x=1964:y=922:color=black,scale=3840:2160" GOPR1373_w.MP4

    Which yields to Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height and x264 [error]: malloc of size 43688832 failed

    yet

    ffmpeg -i GOPR1373.MP4 -c:v libx264 -vf "pad=width=5848:height=2924:x=1964:y=922:color=black,scale=1920:1080" GOPR1373_w.MP4

    works.

    How to fix this ?

    EDIT : I solved it by freeing up memory.