Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (60)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6570)

  • ffmpeg - No NVENC capable devices found

    19 août 2019, par Srikanth Bandaru

    I am having difficulties in using the NVEnc capabilities of my RTX2070 on a Windows 10 machine. I’ve used "media-autobuild_suite" to compile FFmpeg and other libraries for my machine.

    I’ve updated my drivers to version 431.70 and I’ve also installed CUDA Toolkit 10.1

    hevc_nvenc is working fine

    ffmpeg -hwaccel cuvid -i output/frames/%6d.png -c:v h264_nvenc -preset slow -tune animation -r 30 -pix_fmt yuv420p output.mp4

    But h264_nvenc is throwing the below error

    No NVENC capable devices found.

  • Generating grey nosie with FFmpeg

    5 mars, par Azat Khabibulin

    I have the following sound configuration :

    


    sub-bass:     -inf dBFS
low bass:     -inf dBFS
bass:         -inf dBFS
high bass:    -inf dBFS
low mids:     0 dBFS
mids:         0 dBFS
high mids:    -inf dBFS
low treble:   -inf dBFS
treble:       -inf dBFS
high treble:  -inf dBFS


    


    If you wonder what is it, you can listen to this sound here.

    


    I'd like to create an audio file provided this sound configuration. FFmpeg filters seem like a good fit, but are not a strict requirement. It may be any command-line tool that handles this kind of task well.

    


    The problem is that I don't really have necessary background in audio theory. I cannot choose the right FFmpeg filter (other than to make a generic white noise), I do not know how to filter frequencies in FFmpeg, I cannot even convert this particular lexicon ("bass", "mids", etc.) into specific numeric frequencies.

    


  • Why cant I feed FFServer(Linux) from FFMpeg (Windows) ?

    14 mars 2018, par Milen

    What I want to do is to stream a (only)video file from Windows 10 using RTSP. First, I tried to use webm HTTP instead. I found that ffserver is not avaiable for Windows, so I configured and run ffserver on a Linux machine (Ubuntu 16.04). Then, I downloaded pre-built ffmpeg for Windows x64 and run a ffmpeg command to feed my rtsp server. The fact is that the command didnt work on my Windows machine

    The same ffmpeg command works well if I run it in my Linux machine.

    The details are descripted below :

    ffserver.conf file :

    HTTPPort 8090                    
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 10000            

    CustomLog -
    NoDaemon                      

    <feed>              
      File ./feed1.ffm        
      FileMaxSize 1G          
      ACL allow 127.0.0.1 192.168.0.131 #Windows machine IP address
    </feed>

    <stream>        
      Feed feed1.ffm  
      Format webm

      # Video settings
      VideoCodec libvpx
      VideoSize 720x576    
      VideoFrameRate 25  
      AVOptionVideo flags +global_header

      AVOptionVideo cpu-used 0
      AVOptionVideo qmin 10
      AVOptionVideo qmax 42
      AVOptionVideo quality good
      NoAudio

      PreRoll 15
      StartSendOnKey
      VideoBitRate 400        
    </stream>

    <stream>
      Format status

      ACL allow localhost
      ACL allow 192.168.0.0 192.168.255.255
      ACL allow 192.168.0.131 # my windows machine ip
    </stream>

    <redirect>
      URL http://www.ffmpeg.org/
    </redirect>

    ffmpeg command to feed server :

    ffmpeg -i video.avi http://192.168.0.119:8090/feed1.ffm

    Error thrown by Windows command line :

    Unable to find a suitable output format for 'http://192.168.0.119:8090/feed1.ffm' .
    http://192.168.0.119:8090/feed1.ffm : Invalid argument.

    Someone told me that Windows newest version of FFMpeg doesnt support ffm, Is that true ? I couldnt find a different format example.