Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (85)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (11836)

  • Revision 0d8f7cdc81 : Version 1.0.3. Removed the long copyright string.

    21 octobre 2007, par Marc Noirot

    Changed Paths :
     Modify /ChangeLog


     Modify /NEWS


     Modify /config.h.win


     Modify /configure.ac


     Modify /flvmeta.c


     Modify /flvmeta.h



    Version 1.0.3.
    Removed the long copyright string.

  • How to hide text after specific location in scroll

    18 juillet 2019, par kiara

    I have ffmpeg code which have a image overlay on top of tht. I am adding a scrolling text. Now I want this text to rotate till a specific position like breaking news on channel but I am not able to figure out the command. Can anybody help ?

    This is what I am trying

    ffmpeg -i video.mp4  -i image.png -filter_complex "[0:v]overlay=25:25,drawtext=text='abcddgfs fgshrhtr':fontfile=/usr/share/fonts/truetype/ubuntu/Ubuntu-B.ttf:y=h-line_h-110:x=w-mod(max(t-2.5\,0)*(w·25)/7.5\,(w·250)):fontcolor=red:fontsize=40:shadowx=2:shadowy=2" -t 15 -y a.mp4
  • Use ffmpeg to segment streaming video

    4 décembre 2022, par Marc

    Suppose I have a streaming video URL rtsp ://whatever and I wish to store that video stream to my file system as a series of files off approximately the same size or duration. Ideally I would like to store the files with a start and stop timestamp as part of the filename, and each file should be such that it can stand on its own to be displayed as a video file if someone wants to view it. I understand that ffmpeg has a segment command option that allows me to segment by time and store in a series of files like outfile%3d.dat or whatever. But suppose I want to do this perpetually and cycle the files (age out old ones) when the total size of all the saved files exceeds a specific value. For example, suppose I want to save the most recent 500GB of video from this streaming URL and keep doing this day after day continuously into the distant future. What happens to the output filename after outfile999.dat is saved ? Does the count start over at 0 ? Or does ffmpeg just stop or crash ? Is there an ffmpeg command that can segment and age out old files, or is this something I would have to do running another program simultaneously or would I have to hack into ffmpeg itself to do this ? I'm pretty new to ffmpeg so any suggestions you ffmpeg experts might have on how to do this would be welcome. I also welcome suggestions for other command line Linux tools that might be better for this application.

    



    UPDATE : So it turns out that ffmpeg has a segmenter built in, and I can segment the files such that the filenames have the video start datetime as part of the filename. I used a command like this :

    



    ffmpeg -i rtsp://camera_feed_url_here -c copy -f segment -segment_list out.list -segment_time 900 \ -segment_atclocktime 1 -strftime 1 "%Y-%m-%d_%H-%M-%S.mkv"


    



    That's the good news. The bad news is that when I run this command, after about 1 minute it just throws this error and stops :

    



    rtsp ://camera_feed_url_here : Invalid data found when processing input

    



    No other error or diagnostic mesages are printed out. Even when I run with -loglevel debug, it just seems to die with this error message.

    



    When I built ffmpeg, used this :

    



    ./configure --enable-demux='rtsp,rtp,sdp,flac,gif,image2,image2pipe,matrosk' --enable-network --enable-protocols --enable-decoder=h264


    



    Any ideas what I'm doing wrong and how I can make this error go away ?