Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (105)

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

  • 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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (7629)

  • How to convert mp4 file to wav with the same duration ?

    16 octobre 2020, par York

    I want to convert an long Mp4 file to WAV with the same duration.
I tried to use ffmpeg with the args "aresample=async=1000" but there is still a difference :

    


      

    • the duration of the origin long MP4 is 03:28:05.936
    • 


    • the duration of the converted WAV is 03:28:05.35
    • 


    


    Is there any way can convert the MP4 file to WAV with the complete same duration ?

    


    Thanks !

    


  • FFMPEG : what is the limit of parameter using for text to video ?

    11 juillet 2017, par Bunker Boy

    i am using ffmpeg for text to video conversion and everything working fine just only can not decide how much fontsize can accepted there and height & width limit for video as well as how many characters can allow ?
    the command i am using

    ffmpeg -f lavfi -i color=c=0x000000:s=1600x1600 -vf
    "drawtext=fontfile=PATHOFFONTS/DejaVuSans.ttf:fontsize=96:fontcolor=0xffffff:y=(h-line_h)/2:x=-(4*n)+W:text=’text
    text text long text long text long text’" -r 24 -t 1140
    PATHTOSAVE/video.mp4

    here text moving from right to left.

    -t 1140 // is the time i have calculated separately

    s=1600x1600 then video mime type got corrupted and video is not working well.

    can anybody let me know what is the minimum and maximum range i can pass for fontsize, height, width and text ?

  • How do I concatenate a specific audio recording to multiple different ones (at the beginning of each), in bulk ? [closed]

    28 septembre 2023, par catofws

    So I have an audio recording that's something like 10 seconds long, right ?

    


    That single audio recording needs to be added to the beginning of a lot of different ones, and I need to somehow be able to do it in bulk.

    


    I am talking about something very simple, literally adding that one specific 10 second long audio recording I have mentioned earlier to the beginning of the other ones, not overlapping with anything, thus extending the total duration by 10 seconds or so.

    


    Tried Audacity, works, but it's a long process that doesn't fit my purposes. If audacity can do it I know for sure that a simple script can accomplish this one very specific very simple task.

    


    I don't code.

    


    EDIT : Wanted to add that I am not expecting someone to write a whole script for me, but rather point to the right direction. I have a very basic idea of Python and I know that for my specific purpose I would need to use FFMPEG. I want someone to point me towards the right direction, what functions & libraries would I need to use to make such a script ?