Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (77)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6853)

  • Can anyone help in understanding AVFrame.linesize[] ?

    7 avril 2016, par theateist

    I tried to find what each cell of AVFrame.linesize[] means, but I didn’t found.

    As I understood linesize[0] is the width, linesize[1] is the height.

    1. If I’m right what does other cells mean ?
    2. why after avcodec_decode_video2(codecCtxDecode, frameDecoded, &frameFinished, &packet); only linesize[0] has the value and other cells are always 0 ?

    UPDATED

    I think AVFrame.data[i] and AVFrame.linesize[i] are the data of specific color in the row and the length of the row, am I correct ?

  • lavf/davs2.c : rename as avs2dec.c for better understanding

    20 août 2020, par hwren
    lavf/davs2.c : rename as avs2dec.c for better understanding
    

    Signed-off-by : hwren <hwrenx@126.com>

    • [DH] libavformat/Makefile
    • [DH] libavformat/avs2dec.c
    • [DH] libavformat/davs2.c
  • Seeking Ideas : How Can I Automatically Generate a TikTok Video from a Custom Song Using C# [closed]

    14 mai 2024, par Jamado

    Im creating a c# program which creates a video of the from a song and posts it on tiktok.

    &#xA;

    Right now my program

    &#xA;

      &#xA;
    1. Uses spleeter to split the song into stems

      &#xA;

    2. &#xA;

    3. uses a script of GitHub to create waveform images of the stems

      &#xA;

    4. &#xA;

    &#xA;

    I want my end video to look like this :

    &#xA;

    https://vm.tiktok.com/ZMM7CDmUt/ - only one song will play per video

    &#xA;

    https://vm.tiktok.com/ZMM7Xdw8b/

    &#xA;

    https://vm.tiktok.com/ZMM7CcGtE/ - no webcam or that hitting animations

    &#xA;

    basically I want the stems of the songs to be placed on top of a FL studio timeline, synced to the song, then I want to overlay a image on top of the video. and then to contribute for todays gen's 3 second attention span, add some audio virtualisations ontop of the fl studio recording (the music making app in the video) and a little shake to the image

    &#xA;

    I've tinkered with ffmpeg before, and I reckon it could do the trick here. I'd use the waveform pictures and mix them with a pre-recorded FL Studio video using ffmpeg's filters, like VStack to stack images, Scroll to slide them around and Blend. And then tweak the overlay filter for that shake effect. Plus, I found out ffmpeg can whip up some basic audio visualizations, which is neat. (https://gist.github.com/Neurogami/aeed8693f7ac375d5e013b8432d04d3f)

    &#xA;

    But my main issue with this approach is, how the waveform images will look weird/out of place ontop of the fl studio video, because FL studio has a really spesific "theme". I could manually create a template and then use some other library to merge the template image and the waveform image. But, it feels a bit janky and would probably be a hassle to set up and implement.

    &#xA;

    So, I'm curious if you folks have any nifty libraries, GitHub gems, or ideas to help me nail this video ?

    &#xA;