Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12973)

  • Is it possible to run the ffmpeg command as a server ?

    23 janvier, par Parlor311

    Instead of running the "ffmpeg" command on every request in my REST API, I want to be able to run it a single time as a server, a separate process or service, and have the REST endpoint call the server over any supported protocol. The endpoint should be able to stream the input and receive the streamed output from the server. Is this possible using the ffmpeg CLI ? I can't find a single resource that covers this use case. If possible to provide the right command configuration. Thank you.

    


  • merge webm files without headers [closed]

    2 décembre 2024, par Shiva Kumar

    I have a list of video chunks of a video. first chunk is only playable and the rest are not because they are missing the header information. I want to merge them into a single playable video. tried ffmpeg commands

    


    ffmpeg -i chunk1.webm -i chunk2.webm -i chunk3.webm -filter_complex "[0:v][0:a][1:v][1:a][2:v][2:a]concat=n=3:v=1:a=1[outv][outa]" -map "[outv]" -map "[outa]" output.webm

    


    [matroska,webm @ 0x55c5fc62ffc0] Format matroska,webm detected only with low score of 1, misdetection possible! [matroska,webm @ 0x55c5fc62ffc0] EBML header parsing failed chunk2.webm: Invalid data found when processing input

    


  • How to discard broken frames from MP4 file with FFMPEG

    4 novembre 2024, par digitalfootmark

    I have a partially broken MP4. Sometimes the playback just freeze, so that only the top of the content have some garbage and the rest of the frame is empty.

    


    Is there any tricks in ffmpeg to remove those frames ?

    


    Naturally I have tried all kind of basic things, like repackaging the mp4 and re-encode it to mp4.
The file was not playable originally so it was fixed with untrunk first. And got the same results also with https://Fix.Video

    


    I believe answering this question is impossible without having a sample file.