Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8135)

  • ffmpeg rotate gif input file playlist

    17 septembre 2019, par Teddy K

    I’d like to create a file gif_playlist.txt which contains absolute paths to numerous .gif’s

    I’d like to stream audio in, then randomly load gifs and essentially create a video of all the gifs and my music.

    I’d like this to continue for the length of the music, as such when a gif ends I want it to pick another from playlist.

    I have been able to achieve this with the below, except it does not change the gif, it only loops the first chosen.

    How can I keep picking from playlist until the music source has ended ?

    playlist="gif_playlist.txt";
    randfile="$(cat "$playlist" | rl | head -1)";
    ffmpeg -i "$1" -ignore_loop 0 -i "$randfile" -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" -shortest -strict -2 -c:v libx264 -threads 4 -c:a aac -b:a 192k -pix_fmt yuv420p -shortest "$2"
  • Video to GIF Conversion with Random Frames on AWS Lambda using Nodejs and ffmpeg

    5 avril 2024, par rahulfaujdar

    I'm seeking assistance with automating the conversion of several videos stored in an S3 bucket into GIFs. Specifically, I aim to generate GIFs that are precisely 10 seconds long, each comprising random frames sampled from different sections of the original video. The randomness should encompass frames from the beginning, middle, and end of each video, ensuring a varied and engaging GIF output.

    


    Currently, I'm in the process of implementing this functionality using Nodejs and AWS Lambda, utilizing ffmpeg for video processing. However, I'm facing challenges in achieving the desired outcome efficiently.

    


    If anyone has experience or insights into how to accomplish this task effectively within the AWS Lambda environment, especially regarding Nodejs code and ffmpeg usage, I would greatly appreciate your guidance and expertise.

    


  • Convert video to OGV, on fedora platform

    20 novembre 2016, par Hammad Haleem

    I need to develop a rest API for publishing and converting videos.

    A major hurdle that I am facing, I need a free converter to convert video in any format to
    OGV. Even though ffmpeg is the best candidate, but I cannot use it because it is not
    in official Fedora repository, but in rpmfusion. I am developing a product that would be deployed on Fedora infra, they only deploy applications via packages into epel6.

    Can you guys suggest something from the official fedora repository ?