Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (37)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (2910)

  • how to combine several video random any one to create 1 new video ? using ffmpeg ?

    22 décembre 2016, par Sky Moon

    how to combine several video random any one to create 1 new video ?
    for example, I have 10 videos : 01.mp4 ; 02.mp4 ... 10.mp4
    I want to combine random 5 of them to create 1 video
    example :
    (01.mp4+ 03.mp4+ 04.mp4+ 06.mp4 + 08.mp4) = 1 new video

    (02.mp4+ 04.mp4+ 05.mp4+ 06.mp4 + 09.mp4) = 1 new video

    Similar : random combination of 50 videos of 1000 videos to create 1 new video ?

  • Ffmpeg video freeze for longer video

    10 mars 2016, par Vishnu

    I have a video of 30 seconds , I am making it 1 hour video using below code

    echo shell_exec('/usr/local/bin/ffmpeg -y -i universal.mp4  -f lavfi -i "color=black:s=1280x720:r=24:d=3600" -filter_complex "[0][1]concat=n=2:v=1:a=0[v]" -map [v] -c:v libx264 -map 0:1 -c:a libfdk_aac -b:a 256k output.mp4  2>&1');

    So The output.mp4 created using above code is 1 hour long and it is getting freezed by vlc ,windows mediaplayer when I seek to certain minutes.But when I set duration d=300 , output video is perfect. Why does long video gets freezed from above output.

  • Flutter get video frames using video player or ffmpeg

    7 mars 2021, par lulliezy

    I have a flutter app that processes videos, now, I want to display like a video timeline at the bottom of the video but it should be comprised of the video frames of the video at various points, my googling has been fruitless so far and I was hoping to achieve this using flutter video_player and/or flutter_ffmpeg (I use these packages in my app). I have tried to look this online but I want to avoid using another package just for this, how do i achieve this using either or both the packages ?

    


    Thanks in advance