Recherche avancée

Médias (91)

Autres articles (70)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6278)

  • ffmpeg streaming video in Raspberry Pi [duplicate]

    4 janvier 2016, par Ghost

    This question is an exact duplicate of :

    Hi im using this method http://phoboslab.org/log/2013/09/html5-live-video-streaming-via-websockets to stream video from my raspberry Pi cam to my pc using Websocket everything work fine but when I run ffmepg command it give me error.

    Here is the full console output :

    pi@raspberrypi:~ $ ffmpeg -s 320x240 -f video4linux2 -i /dev/video0 -f mpeg1video -b 800k -r 30 http://localhost:8082/mypassword/320/240/
    ffmpeg version N-77221-g93d336f Copyright (c) 2000-2015 the FFmpeg developers
     built with gcc 4.9.2 (Raspbian 4.9.2-10)
     configuration: --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
     libavutil      55. 10.100 / 55. 10.100
     libavcodec     57. 17.100 / 57. 17.100
     libavformat    57. 20.100 / 57. 20.100
     libavdevice    57.  0.100 / 57.  0.100
     libavfilter     6. 21.100 /  6. 21.100
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.101 /  2.  0.101
     libpostproc    54.  0.100 / 54.  0.100
    [video4linux2,v4l2 @ 0x1d4b230] The device does not support the streaming I/O method.
    /dev/video0: Function not implemented

    But when I run the command from my pc using ssh to raspberry pi it work fine, any suggestion ?

  • ffmpeg streamaudio video webcam raspberry pi

    5 novembre 2015, par user3291059

    I’m using a webcam on my Rpi to record audio video. I’m using ffmpeg
    and here is my command :

    ffmpeg -y -ac 1 -f alsa -i hw:1,0 -i /dev/video1 -r 10 -s 120*120 -async 1 -strict -2 -c:a aac -pix_fmt yuv420p -threads 0 -ar 44100 -f mpegts out.avi

    This generates a .avi file with video and audio however when I try to stream using ffserver using :

    ffmpeg -y -ac 1 -f alsa -i hw:1,0 -i /dev/video1 -r 10 -s 120*120 -async 1 -strict -2 -c:a aac -pix_fmt yuv420p -threads 0 -ar 44100 -f mpegts http\\some_ip:someport\webcam.ffm

    I get av_interleaved_write_frame(): Broken pip

    How I can fix this ? Any other suggestion to stream audio video (not with Motion please).

    UPDATE

    here is my ffserver config file

       Port 8090
    BindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 1000
    CustomLog -
    #NoDaemon

    <feed>
       File /tmp/feed1.ffm
       FileMaxSize 200K
       ACL allow 127.0.0.1
    </feed>

    # if you want to use mpegts format instead of flv
    # then change "live.flv" to "live.ts"
    # and also change "Format flv" to "Format mpegts"
    <stream>
       Format mpegts
       Feed feed1.ffm

       VideoCodec mjpeg
       VideoFrameRate 30
       VideoBitRate 512
       VideoSize 320x240
       AVOptionVideo crf 23
       AVOptionVideo preset medium
       # for more info on crf/preset options, type: x264 --help
       AVOptionVideo flags +global_header

       AudioCodec aac
       Strict -2
       AudioBitRate 128
       AudioChannels 2
       AudioSampleRate 44100
       AVOptionAudio flags +global_header
    </stream>

    when I save the stream to a local file out.avi I can see video and audio but when I use ffserver vlc on my windows machine is not even able to display video (black screen with some sound glitches from time to time)
    Thanks.

  • How do you pipe video from one tool to another on Raspberry Pi ? [closed]

    11 septembre 2024, par Spenser Spratlin

    I'm trying to pipe video from libcamera to ffmpeg to get a consistent video stream from a Pi Camera Module 2 to a Java Program

    &#xA;

    I'm using the following

    &#xA;

      &#xA;
    • OpenJDK/JRE 17
    • &#xA;

    • Raspberry Pi 5 Model B
    • &#xA;

    • Debian 12 (bookworm)
    • &#xA;

    • Arm64
    • &#xA;

    &#xA;

    Since Raspberry Pi changed their video framework, you can no longer call a single /dev/video0 device. You have to go through the Media Controller using libcamera or rpicam. I'm wondering how I can pipe the video created from libcamera or rpicam into a useable format to intake with ffmpeg.

    &#xA;