Recherche avancée

Médias (91)

Autres articles (75)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • How to get and show volume input level from rtsp using ffplay

    4 septembre 2019, par Xavier

    I´m trying to get and display the volume level from an ip camera with rtsp protocol. By now i achieved with ffmpeg but i need to do it with ffplay.

    I have tried many combinations with no luck. Some of these

    ffplay -f lavfi -i rtsp://admin:admin@10.0.0.99:554/live/ch0:showvolume=f=0:b=0:w=310:h=59:o=v:m=p

    Gives error "No such filter : ’rtsp ://admin:admin’"

    ffplay -f lavfi "amovie ='audio\=rtsp://admin:admin@10.0.0.99:554/live/ch0',showvolume=f=0:b=0:w=310:h=59:o=v:m=p"

    Gives error "Undefined constant or missing ’(’ in ’admin@10.0.0.99’ and so many others.

    ffplay -f lavfi "amovie ='audio\=Microphone (Realtek High Definition Audio)':f=dshow,showvolume=f=0:b=0:w=310:h=59:o=v:m=p"

    This code works with internal notebook microphone but i can`t see how to replace dshow with RTSP

    I already tried others combinations but nothing works.
    I need to know how specify an rtsp input with lavfi or any other way to show volume input level from a rtsp with ffplay.
    Thanks in advance

  • Select screen area dragging the mouse [closed]

    12 juin 2022, par Pedro Antônio

    How can I select area, by dragging the mouse and drawing a rectangle, returning x and y position ? I would like to get this parameters to pass it to ffmpeg

    


    Thanks

    


  • ffplay keep video/audio sync when using select filter

    24 août 2016, par arrietaeguren

    I’m trying to play/skip some clips of a video using ffplay. My first approach to skip say frames 100 to 400 was :

    ffplay -vf "select='lte(n\,100)+gte(n\,400)'" -i INPUT

    this skips the desired frames, however it also freezes the video during the skipped frames. I tried to fix this by modifying the video presentation time stamp (PTS) with the setpts option :

    ffplay -vf "select='lte(n\,100)+gte(n\,400)',setpts='PREV_OUTPTS'" -i INPUT

    this seems to work (stills freeze a bit, guess is because of buffering), but now the audio is out of sync. I’ve tried applying a select filter and modifying the PTS on the audio as well

    ffplay -vf "select='lte(n\,100)+gte(n\,400)',setpts='PREV_OUTPTS'" -af "aselect='lte(n\,100)+gte(n\,400)',asetpts='PREV_OUTPTS'" -i INPUT

    this skips some audio frames, but still out of sync. I’ve tried with the aresample=async=10000 option with similar results. Moving some/all of the filters to the output (placing them after the -i INPUT) doesn’t work either.

    Does someone know how to skip parts of a video using ffplay ? Many thanks