Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (34)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6495)

  • Using moviepy, how can I splice up long videos into 8-second bits ?

    18 septembre 2020, par ekinugurel

    relatively new python user here. I'm trying to use moviepy to splice up 5 min long videos into 8-second bits. I used the code in this thread to extract subclips and it works. I did the following to make it a loop that covers the whole video, but I only get one 8-sec video as an output :

    


    from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
videopath = '../img/videos/Mopac+Cesarchavez-1.m4v'

for sec in videopath:
    sec = 0
    ffmpeg_extract_subclip(videopath, sec, sec+8.00, "../img/videos/subclips/testclip.mp4")
    if sec == 327:
        break


    


    Do I need to specify a naming convention so that my output isn't just one video ? How would I do that ?

    


  • Trimming a H265 video using ffmpeg [closed]

    11 janvier 2024, par Pratik Gajera

    I am using below ffmpeg command for cutting/trimming H265 video for specific time interval. But I am getting error

    


    


    Unable to find a suitable output format for 'output.h265'
output.h265 : Invalid argument

    


    


    ffmpeg version 4.3.2 is installed in my device.

    


    ffmpeg -i input.h265 -ss 00:00:20 -t 00:01:00 -c:v copy -c:a copy output.h265


    


    enter image description here

    


    Could you please provide a solution for this issue ?

    


  • Pausing a ffmpeg screen capture ?

    21 octobre 2024, par LostXOR

    I have a script to record my screen using ffmpeg :

    



    ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0 -c:v libx264rgb -crf 0 -preset ultrafast video.mkv

    



    I tried using pkill -STOP ffmpeg to pause the recording and pkill -CONT ffmpeg to resume it. The command seems to work correctly, pausing the recording process and later resuming it. However on playback, instead of instantly cutting to when I resumed ffmpeg, the video freezes for the duration I pause ffmpeg. Is there a way I can prevent the video from freezing, and instantly cut to when I resume recording ? (I can upload a sample clip if that would help clarify something.)