Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (76)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

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

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