Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (64)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (7148)

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