Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (60)

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

  • avfilter/vf_fade : add >8 bit support for black and alpha fade

    8 février 2020, par Paul B Mahol
    avfilter/vf_fade : add >8 bit support for black and alpha fade
    
    • [DH] libavfilter/vf_fade.c
  • Make green nullsrc to black

    5 février 2020, par Ultgin

    I have a video which hasn’t 1920x1080 so I need to make it.

    I try to use next command :

    ffmpeg -i "video.avi" -filter_complex "nullsrc=size=1920x1080 [0:v]; [0:v] overlay=shortest=1:x=200:y=100" -r 30 -c:v libx264 -preset fast -crf 18 -profile:v high -bf 2 -flags +cgop -coder 1 -pix_fmt yuv420p -strict -2 -c:a aac -b:a 384k "video.mp4"

    But I got a green frame over the video like this - http://i.imgur.com/QNVUGb5.jpg

    I dont find a solution to make a green in any other color.

    How possible to make green frame to black frame ?

    Thanks.

  • Generete one second of black video and relative silence audio

    26 janvier 2020, par Massimo Vantaggio

    How can I generate a black mp4 video with relative silent audio track with ffmpeg, I need the audio and video tracks to correspond to the duration of 1 second

    ffmpeg -f lavfi -i color=c=black:s=1920x1080:r=24/1 -c:v h264 -f lavfi -i anullsrc=cl=stereo:r=44100 -video_track_timescale 90k -c:a mp3 -b:a 320k -ar 44100 -ac 2 -t 3 out.mp4

    VIDEO FORMAT CONTAINER DURATION : 3.026000

    VIDEO STREAM DURATION : 3.000000

    how can i match these durations ?

    Thanks a lot !