Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (108)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (15097)

  • FFMPEG. Concatenate videos with a intro and music

    12 juillet 2019, par Micky

    I’m trying to merge videos with an intro and a background music.

    The intro.flv is a short file with video and audio.
    The other videos are without audio.
    ambientmusic.mp3 is audio to add to subsequent videos.
    A short fade for each file.

    ffmpeg -i intro.flv -i 0.mp4 -i 1.mp4 -i 2.mp4 -i ambientmusic.mp3 -filter_complex "[0] fade = in: 0: 25 [v0]; [1] fade = in: 0:25 [v1]; [2] fade = in: 0: 25 [v2]; [3] fade = in: 0: 25 [v3]; [v0] [v1] [v2] [v3] concat = 4 [v] "-map" [v] "-map a ./output/final.mp4

    Unfortunately the code only loads the first audio. Same result as

    -map 0: a

    If I use this instead it loads ambientmusic.mp3 on the whole video.

    -map 4: a

    But I’d like the audio of the Intro followed by the ambientmusic.mp3

    -map 0: a -map 4: a
  • How can I add overlay images or text on top of videos in Android ?

    12 mai 2015, par ori888

    I’m trying to add overlay images/text on top of mp4 videos inside an Android application.
    Most solutions point to FFmpeg (or appunits AndroidFFmpeg) but isn’t stable and very complicated to maintain.
    Is there a native way to do this using the Android SDK ? (MediaCodec ? MediaMuxer ?)

    Thank you,
    Ori

  • Displaying multiple videos on Panels locks UI - using Refresh() / Invalidate()

    7 mai 2015, par eruslu

    I try to show 32 different videos ( 768 * 532 pixels and 25 fps) on an application as two 4x4 displays. Each video is displayed on a Player class which has a Panel object.
    I get the RTP streams from network and converting them to bitmap image using FFmpeg and set bitmaps as panel background images and then Refresh() the panel.
    When the number of displaying videos increases (as 17-18) the UI starts to lock, it is not responding.
    Then I use Invalidate(), this time UI is not locking, it responds any events even for 32 displays but after 17-18 display it can not catch up refreshing rate (25fps). The videos are displayed by skipping some of the frames.
    I am setting background images of Panel’s and refreshing them in different threads. Do I need to do one refreshing for all panels. Or use another refreshing method ?
    Any help will be appreciated, thank you.