Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (63)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (10488)

  • trailing options found on command line ffmpeg

    1er juillet 2016, par asad

    ffmpeg complains about trailing options. What parameters are out of the order. I am unable to find any. Please point out some.

    /home/ec2-user/bin/ffmpeg -thread_queue_size 1024 -probesize 18M
       -re -f rawvideo -framerate 1 -pixel_format rgb32 -video_size 1920x1080
       -i pipe:0 -i /home/ec2-user/logo.png
       -i /home/ec2-user/testdata/audio.m4a -ss 0 -t 20
       -filter_complex "[0:v]vflip[main];[1:v]scale=1920/10:-1[si], [main][si]overlay=5:5:format=rgb,format=yuv420p"
       -c:v libx264 /home/ec2-user/output.mp4
       -c:v copy -shortest
  • Slow frame copy from d3d11va to CPU memory in LibAV

    5 juin 2024, par Igor

    I'm using LibAV to decode video (H.264) using dxva2 or d3d11va hardware decoder.
I then copy the decoded video frame from the GPU memory to system memory by calling av_hwframe_transfer_data().

    


    I noticed that when using the modern d3d11va hardware decoder, the CPU load is twice as much as when using the old dxva2 hardware decoder.
I checked with LibAV 6.1 and with the old version V4.4 - the same result.

    


  • Create an RTP/RTSP or HTTP stream using OpenCV frames

    1er avril 2018, par Vector

    I have a custom board which takes input stream from a IP camera and the application perform facial detection using OpenCV on the input video stream.

    My use case is to provide an output stream through network which will be accessible through VLC on any device connected in the same network.

    I tried writing OpenCV frames through VideoWriter :

    VideoWriter outStream("/home/user/frames/frame.mjpg", CV_FOURCC('M','J','P','G'), CAP_PROP_FPS, img.size(), true);
    if (outStream.isOpened()){
        outStream.write(img);

    and creating a stream using mjpg_streamer like :

    mjpg_streamer -i "input_file.so -f /home/user/frames" -o "output_http.so -w /usr/local/www -p 5241"

    But the above process shows a lot of latency.
    I can’t use imshow as my hardware does not have any video output port.

    Here is my code : https://pastebin.com/s66xGjAC