Recherche avancée

Médias (91)

Autres articles (90)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (12699)

  • Merging two videos via PHP

    17 mars 2017, par Ryan Castle

    So, I’m trying to merge two files using PHP and I’ve taken a look at the FFMpeg library, yet I cannot manage to merge them. Here’s what I’ve got so far :

    $ffmpeg = FFMpeg\FFMpeg::create();
    $vid1 = $ffmpeg->open('videos/vid1.mp4');
    $vid2 = $ffmpeg->open('videos/vid2.mp4');

    How do I stitch together $vid1 and $vid2 and save them ?

    Thanks

  • Merging two videos via PHP

    23 novembre 2023, par Ryan

    So, I'm trying to merge two files using PHP and I've taken a look at the FFMpeg library, yet I cannot manage to merge them. Here's what I've got so far :

    



    $ffmpeg = FFMpeg\FFMpeg::create();
$vid1 = $ffmpeg->open('videos/vid1.mp4');
$vid2 = $ffmpeg->open('videos/vid2.mp4');


    



    How do I stitch together $vid1 and $vid2 and save them ?

    



    Thanks

    


  • Overlay video after set time offset with FFmpeg

    5 août 2012, par Produitbrut

    I'm trying to add overlays to an input video with ffmpeg that appear some time after the video starts.

    The basic way to add an overlay is :

    ffmpeg -i in.avi -vf "movie=overlay.avi [ovl]; [in][ovl] overlay" out.avi

    But this adds the overlay video (or image) from the start of the input video until one of the videos ends.

    I know how to offset the overlay video using movie=overlay.avi:seek_point=1.4, but what about an offset on the input video ?

    I could always clip the video to the desired point, add overlay on the second clip, then stitch the two but that's not very efficient.