Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (50)

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

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

Sur d’autres sites (4939)

  • 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 ?

    


  • 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 ?