Recherche avancée

Médias (91)

Autres articles (89)

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

  • Error while streaming using ffserver

    4 septembre 2013, par Nani

    I am trying to stream a combined/stitched video using ffserver and getting an error "Feed '/tmp/feed1.ffm' stream number does not match registered feed"

    Here is what I am doing
    1) grab screen 1 & 2 using ffmpeg x11grab option
    2) Stitch them using ffmpeg -filter_complex option
    3) Stream the stitched video using the ffserver.

    Instead of streaming if I redirect the ffmpeg stitched output to a file I dont see any issue.

  • Too many inputs specified for the "split" filter

    3 octobre 2018, par Sasidharan S

    I just tried to stitch 2 files and tried to get multiple outputs parallely :

    ffmpeg -i 1.mp4 -i 2.mp4 -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1, split=2[out1][out2]" -map '[out1]' -preset ultrafast -vn -b:a 128k -c:a aac  tes45.mp4 -map '[out2]' -preset ultrafast -vn -b:a 128k -c:a aac  tes46.mp4

    But it didn’t work :

    Too many inputs specified for the "split" filter.
    Error initializing complex filters.
    Invalid argument
  • Easiest method of compiling a finished MP4 video out of image bursts and video segments on Ubuntu ?

    14 juin 2017, par aschmelyun

    I need to programmatically stitch together a video out of bursts of images, and pre-recorded .mp4 video, on an Ubuntu system from the command line. So for example, here’s the ’recipe’ that I’m working with :

    1. 12 images
    2. 5 second video
    3. 12 more images
    4. 5 second video
    5. 5 second video
    6. 12 more images

    Right now what I’m doing is compiling the images into .mp4 videos using ffmpeg, and then using mp4box to concat all of these partial videos together into one final video. The unfortunate thing is that I’m having to keep track of and run multiple commands to do this (the example above using 4 separate commands). Is there any way to simplify this, or is this the most efficient method I can expect ?