Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (65)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8430)

  • cause of mpeg-dash delay

    14 février 2017, par evan

    I have created mpeg-dash stream from a MP4 file. I trascoded my videos to MP4 using ffmpeg library and made the mpeg-dash using MP4Box. my resault mpeg-dash video seems to have some buffering problem (buffer stall I guess) and also 5 second delay when I seek in the video. the startup delay seems to be fine.
    I was wondering what is the cause of this delay ? is it coming from my ffmpeg and transcode commands ? or is it coming from MP4box and the process of dashing ?
    I need to find the source to be able to solve it.
    any ideas ? I would realy appreciate any help.

    these are my ffmpeg codes :

    ffmpeg -i main720.MTS -movflags faststart -vcodec libx264 -r 24 -tune zerolatency -tune fastdecode -bf 0 -slices 0 -x264opts intra_refresh=1 -g 96 -b:v 700k -maxrate 700k -bufsize 400k -an -s 640*360 -ss 00:00:00 -t 00:02:00 main720_700_video.mp4

    ffmpeg -i main720.MTS -movflags faststart -acodec libmp3lame -b:a 128k -vn -ss 00:00:00 -t 00:02:00 main720_700_audio.mp4

    and this my MP4Box command :

    MP4Box -dash 4000 -frag 4000 -profile onDamand -rap -segment-name %s_ -out manifest.mpd main720_300_video.mp4 main720_700_video.mp4 main720_300_audio.mp4

  • Extract final frame from a video using ffmpeg

    14 mai 2020, par Saavestro

    I know how to extract the first frame by using

    



    ffmpeg -ss 00:00:00 -i input.mp4 -vframes 1 -q:v 31 output.png

    



    Here, the option -ss requires to know the exact time of the frame to extract.

    



    I would like to have the final frame of any .mp4 without knowing the exact final time of the video.

    



    Is there a way to achieve this ?

    


  • ffmpeg command for create final video from two different videos and two different audios

    16 décembre 2020, par Kashyap Rathod

    I have two videos and two audios

    


    1 :-
video 1 - length :- 60 sec || audio 1 - length :- 15 sec

    


    2 :-
video - length :- 86 sec || audio 2 - length :- 18 sec

    


    Play video1 and audio1 together, if audio1 is ended then restart that audio till video1 end. this will final video 1.

    


    same way,

    


    play video2 and audio2 together, if audio2 is ended then restart that audio till video2 end. this will final video 2.

    


    after that concatenate those final video 1 and final video 2 and create single video as output.

    


    Thank you in advance.