Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (51)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

Sur d’autres sites (4858)

  • Crop a video in Python, centered on a 16x9 video, cropped to 9x16, moviepy ?

    22 décembre 2022, par Levfo

    I want to crop a video that is 16x9 resolution to 9x16. This can be done by cropping a centered 607px wide rectangle on the 16x9 video. Can this be done ? EDIT : I do not care to stay within moviepy. I want to use something with speed. Currently, writing a 5 min video file with moviepy is taking 10+ minutes.

    


    cropping video from 16x9 to 9x16

    


    from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
import moviepy.editor as mpy

origVideo = 'video.mp4'
video = mpy.VideoFileClip(origVideo)

#Crop 'video' here and output 'cropped-video.mp4'

video.write_videofile('video-cropped.mp4')


    


    Currently only getting a black screen with no audio. The video won't play, but it has a time code.

    


  • How to make FFmpeg automatically inject mp3 audio tracks in the single cycled muted video ?

    5 décembre 2020, par Grrzly

    everybody here ! So basically this is what I want to achieve :

    


    I have a muted video about 3 minutes long.
I have a list of audio tracks in mp3 format (40 songs in a folder with duration 2 to 6 mins each one)

    


    I want this video to play cycled automatically taking songs from playlist and injecting them to the video one by one. Every time a song finishes the next one from the list should start playing at the moment. Video continues playing and doesn't care duration of tracks.

    


    I consider it as the first step on the way to broadcast radio with a video background on youtube in 24/7 mode with ability to put additional tracks to playlist without need to stop translation.

    


    My problem is that I'm new in FFmpeg and I would appreciate any suggestions regarding which FFMpeg topic to start investigate with in order to achieve my goal

    


  • Bitmaps to video in C#

    9 septembre 2013, par user2754599

    DONE SO FAR

    I use AForge MJPEGStream to get bitmaps from different IPcams and display them in my app. Now I want to record multiple (like at least 8) of these bitmapstreams to the local HDD. I already used AForge AVIWriter (DLL) to write the file of 1 stream from a List, but because those Bitmaps all go in RAM I had to write it to HDD earlier (so I can record 8 streams at once). So I tried to write a frame every NewFrame-event to HDD. The problem with this is that AVIWriter.Open(string fileName, int width, int height) uses Win32.OpenFileMode.Create instead of Win32.OpenFileMode.ReadWrite and so deleting the videofile instead of opening it to add a frame.

    Preferred goal

    Record multiple MJPEG streams to disk as video files(could be done from the NewFrame-even described above, which provides Bitmaps). The very best result would be 1 hour long .MKV files encoded with X264. I don't care how to achieve this goal as long as it's done within my existing project in C# (so no need to keep using AForge).