Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (39)

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

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

Sur d’autres sites (3345)

  • FFMpeg or other how to add dynamic text into video stream

    17 février 2017, par Ferguson

    I’am looking for a solution on how to add some dynamic text into the video stream. For example I have a underwater webcam (IP cam) and now I want to add information about measured temperature and salinity into video stream (as text). The final result must be a video stream with temp and salinity displayed in video.

    For this project I’am using OrangePI pc with Armbian OS.
    Can it be done with FFMpeg or is there some other option ?

    Regards
    Ferguson

  • Revision 15718 : En mode debug, forcer le Content-Type à HTML, ce que faisait implicitement ...

    29 mai 2010, par esj@… — Log

    En mode debug, forcer le Content-Type à HTML, ce que faisait implicitement les anciennes versions. Et ne pas non plus faire l’echo final.

  • FFmpeg - Crossfading inputs with a duration 1s creates an empty output

    27 août 2021, par Sonia Seddiki

    I am trying to crossfade a silent input with a music to delay the moment when the music starts to play.

    


    I built the command using fluent-ffmpeg so I could choose the duration of the silent input through my program. The duration of the crossfade is calculated according to the duration of the 2 inputs, and equals 0 if one of them is too short.

    


    Below is an example of the resulting command :

    


    ffmpeg -f lavfi -i anullsrc=r=44100 -i music.mp3 -y -filter_complex [0]atrim=duration=0.28[atrim_0];[atrim_0][1]acrossfade=d=0:c1=tri:c2=tri[final] -map [final] output.mp3


    


    However, this command creates an empty output file when the duration of the silent input is inferior to 1 second, regardless of which music input is next. Using the same command with a trim duration > 1 second creates a valid output with the silence and the music.

    


    I have tried to look through the FFmpeg debug report but couldn't really see what was wrong.

    


    Below is an excerpt of the debug log report :

    


    Input file #0 (anullsrc=r=44100):
  Input stream #0:0 (audio): 14 packets read (28672 bytes); 14 frames decoded (14336 samples);
  Total: 14 packets (28672 bytes) demuxed
Input file #1 (music.mp3):
  Input stream #1:0 (audio): 504 packets read (210651 bytes); 504 frames decoded (578372 samples);
  Total: 504 packets (210651 bytes) demuxed
Output file #0 (output.mp3):
  Output stream #0:0 (audio): 0 frames encoded (0 samples); 0 packets muxed (0 bytes);
  Total: 0 packets (0 bytes) muxed


    


    Any idea what could cause this ?

    


    PS : I am using FFmpeg 4.4, and the same command with FFmpeg 4.2 lead to a segmentation fault. Don't know if this can be of any help