Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (37)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (3735)

  • Insert background image using FFmpeg

    9 février 2015, par Yannick

    I’ve just started using FFMpeg and I’m trying to create a video slideshow from images

    I have the following

    "ffmpeg -framerate 1/5 \
    -start_number 1 \
    -i "C:/test/%03d.jpg" \
    -vf 'movie=C:/test/bg.jpg [over], [in][over] overlay'
    -c:v libx264 \
    -r 30 "C:/test/video.mp4"

    And that works perfectly to create slideshow with the pictures but how can I add a background image ?

    I’ve looked at the command -overlay command but I can’t seem to make it work.

    Thanks for the help.

  • How to trigger from button in UVC camera

    8 août 2016, par Buddhishan Manamperi

    I’m taking pictures from a webcam using Intel Edison. I was able to capture still images from the camera after installing uvc driver for linux and ffmpeg software. I use a script to capture.

    ./ffmpeg -s 640x640 -f video4linux2 -i /dev/video0 -vframes 1 image.jpeg;

    I want to capture the image from the button (in the web cam) press event. I used a USB analyzer in windows to analyze packets. It was found that URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER is transferring UP and DOWN when the button is pressed.

    Please Help me to implement button press triggering on Linux so that I could use it on Edison.

  • ffmpeg - Sync Audio with image position

    2 octobre 2022, par dazzafact

    How can i start the audio Files at the same position as the pictures ? (This is for a Image slideShow with changing Audio)

    


     ffmpeg -loop 1 -t 19 -i  1.jpg -loop 1 -t 19 -i  2.jpg  -i  1.mp3  -i  2.mp3  
 -filter_complex "
[0:a]adelay=19s:all=1[1a];
[1:a]adelay=24s:all=1[2a];  

[0:v]scale=1280:720,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1[0p];
[1:v]scale=1280:720,pad=1280:720:(ow-iw)/2:(oh-ih)/2,setsar=1[1p];

[0p][1p]xfade=transition=fade:duration=1:offset=19[1x];

-map [1x]  -c:v libx264 -c:a copy  -t 39 out.mp4