Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12006)

  • Streaming video segments uploaded in real time

    3 avril 2013, par HaneTV

    I have an application that send quicktime video segments (5s) to a nodejs server that convert them into mpeg-ts in order to stream them to a wowza server in real time :

    ffmpeg -i tempPath -c copy -bsf:v h264_mp4toannexb -f mpegts uploadDir/file.ts

    I want to know if there is a way to stream those segments in real time as they come on my nodejs server to a wowza server without interruption (assuming I can get the segments in time).
    I tried an Http live streaming style by making a playlist like this (updated when segments are uploaded)

    #EXTM3U
    #EXT-X-PLAYLIST-TYPE:EVENT
    #EXT-X-TARGETDURATION:5
    #EXT-X-VERSION:3
    #EXT-X-MEDIA-SEQUENCE:0
    #EXTINF:5,
    movie0.ts
    #EXTINF:5,
    movie1.ts
    #EXTINF:5,
    movie2.ts

    And calling ffmpeg to send it to wowza :

    ffmpeg -re -i hls+file://mypath/uploadDir/playlist.m3u8 -c copy -f flv rtmp://127.0.0.1/live/stream

    but without any success : ffmpeg doesn't want to stream without #EXT-X-ENDLIST tag and removing the 'hls+' produces lots of errors st:0 PTS: 0 DTS: 0 < 4997 invalid, clipping

    Is there a way to accomplish that ?

  • how to add additional 5 seconds duration time to wav file using ffmpeg in c#

    29 juillet 2016, par Eaanga sapumal

    how to add additional 5 seconds duration time to wav file using ffmpeg in c#.

    here is sample code that i used,

    ffmpeg -i file1.wav -i file2.wav -c copy file3.wav

    I need to add silent duration time to between file1.wav and file2.wav.

    how to do it without merging 5 seconds silent wav file.

    "file1.wav + 5 seconds silent + file2.wav"

  • how to reduce ffmpeg compression time

    19 mars 2019, par Virendra Varma

    Hi I am new with FFmpeg and I am trying to compress the video file by using this command

    "-y", "-i", source_file_path, "-s", "480x640", "-r", "24", "-c:v", "libx264", "-pix_fmt", "yuv420p", "-preset", "ultrafast", "-b:v", "512k", "-bufsize",
         "3968k", "-crf", "26", "-c:a", "copy", destination_file_path

    currently, it’s taking 3 minutes to compress a 1-minute long file how I can reduce the compressing process time. I am using FFmpeg 4.0. thanks

    EDITED

    I am using an android phone to compress the video and I am using this FFmpeg git library