Recherche avancée

Médias (91)

Autres articles (87)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (10986)

  • Speed Up Video Processing time FFMPEG while adding multiple images to Video

    5 mars 2019, par Vivek Faldu

    I am trying to overlay multiple images to the video at certain time interval...
    but the processing time is too much for a video length of 1 minute.
    I used VideoKit Library for it.
    Here is my code for adding multiple images to Video.

    String[] command = {"-i", inputPath,
                   "-i", imagePath1,"-i", imagePath2,"-i",imagePath3,
                   "-filter_complex",
                   "[0][1]overlay=y=H-h:enable='between(t,2,10)'[v1];
                    [v1][2]overlay=y=H-h:enable='between(t,10,20)'[v2];
                    [v2][3]overlay=y=H-h:enable='between(t,20,30)'[v3]",
                   "-map", "[v3]",  outputPath};

    Is there any faster processing library for video processing.

  • ffmpeg mp4 video is not playing on html5 video player on browser (corrupt format)

    5 janvier 2015, par Harish Kumar

    I am executing the following command to insert a watermark on the video and output as a mp4 format but that format is not playing on the browser by html5 video player.

    $video_url = '../../../uploads/myvideo.mp4';
    $watermarked = '../../../uploads/watermarked_video.mp4';
    exec("ffmpeg -i $video_url -vf \"movie='sos.png', crop=iw:ih:0:0:dar [img]; [in] [img] overlay=(W-w)/2:(H-h)/2 [out]\" -vcodec mpeg4 -f avi $watermarked");  //creating water marked video

    if i download it to my local machine then its playing perfectly on the player.

    is there any syntax problem ?

  • FFMPEG Flutter - Generating video from images not playing on default android video players

    17 février 2023, par Abdullah Riaz

    I'm trying to generate a video from multiple image files in FFMPEG Flutter. I'm using https-gpl package.

    


    ffmpeg_kit_flutter_https_gpl: 5.1.0


    


    I'm using this command.

    


     "-f concat -safe 0 -protocol_whitelist file,http,https,tcp,tls,crypto -i $filePath -stream_loop -1 -i $musicFile -vf 'scale=3840:2880:force_original_aspect_ratio=decrease,pad=3840:2880:(ow-iw)/2:(oh-ih)/2,setsar=1' -r 6 -c:v libx264 -crf 40 -profile:v main -preset veryfast -pix_fmt yuv420p -t $totalTime $outputFilePath"


    


    Where you can clearly see, I'm encoding video in libx264 with yuv420p.

    


    The thing is, the video is created successfully and played smoothly on the VLC. But it doesn't show anything on normal/default android video players although it plays the audio.

    


    I've tried multiple things but all failed to run video on default android video players. I've even tried multiple android phones.
What am I doing wrong here ?