Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (35)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5469)

  • ffmpeg saving rtsp to mp4 file but video have a lot of green and gray block [closed]

    19 avril 2024, par UncleKing

    I use ffmpeg to save IPcam rtsp to mp4 , but the video have half green or gray , here is the paramter :
ffmpeg -i "rtsp ://192.168.0.37/live/1" -s 1920x1080 -filter:v "fps=fps=15,drawtext=text='test':fontcolor=red:fontsize=32:x=(w-text_w)/2:y=(h-text_h)/2" -crf 36 -preset ultrafast -vcodec libx264 -an -t 10 -f mp4 tmp.mp4

    


    and here is the strange videoenter image description here

    


    I need to know what's wrong ?
my ipcam setting is :
H264 , 2560*1440 , 20fps , fixed rate 4096Kbps , Iframe 2 seconds , HP

    


  • ASS/SSA subtitles hard coded using ffmpeg are highly antialiased

    1er août 2024, par Adorn

    I am using ASS/SSA format for hard coding captions on the video. These are relevant parts of my .ass file :

    


    Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: s0, Montserrat-Black, 60, &H0015CCFA, &H001C1CB9, &H77000000, &H00000000, 1, 0, 0, 0, 100, 100, , 0, 1, 2, 2 , 2, 0, 0, 0, 1

[Events]
Format: Start, End, Style, Text
Dialogue: 00:0:43.8,00:0:46.55,s0,{\pos(540,1550)\fscx50\fscy50\t(0,100,\fscx100\fscy100)\org(10540,-8450)\t(100,600,\frz0.10)\t(600,1100,\frz-0.10)\t(1100,1600,\frz0.10)\t(1600,2100,\frz-0.10)\t(2100,2600,\frz0.10)\t(2600,3100,\frz-0.10)\t(3100,3600,\frz0.10)\k3463}ME FOR WHATEVER


    


    And to hard code on the video, I use following ffmpeg command :

    


    ffmpeg -i video_filepath -vf ass={ass_filepath} -c:a copy -y out_path


    


    This works as intended, except the captions are highly antialiased.

    


    enter image description here

    


    By the way, no AI Assistant has solved this. Tried ChatGPT / Claude / llama 3.1.

    


  • What is the most efficient way to grab a specific frame from a video file by index ?

    4 février 2021, par Handelo

    So for some context - I'm creating a real-time data visualization tool in c# that needs to display video synced to other data. The playback needs to be stopped, resumed, scrubbed through and skipped through as smoothly as possible, similar to how it's done in video editing software, as well as have other data overlaid on top of it. To that end I do need the ability to get each frame by its index in a bitmap format. The video files are mostly MP4 encoded in x264, though support for other codecs is preferable.

    


    So far I've tried using both EMGU.CV and the Accord FFMPEG wrapper, but both solutions seem really slow at grabbing single frames - EMGU.CV's VideoCapture.SetCaptureProperty takes anywhere from half a second to 3 seconds to do so, and FFMPEG's VideoFileReader.ReadVideoFrame can take upwards of 10 (!) seconds.

    


    So what would be the most efficient solution here ? Is there another library I should try ?