Recherche avancée

Médias (91)

Autres articles (57)

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

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

  • 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

Sur d’autres sites (8579)

  • FFMPEG Color Filter Command For Video

    23 août 2017, par Patel Hiren

    I am new to android application development.

    Please let me know which command is used for apply color filter on the video.

    Is there any FFMPEG command for change the video color by passing hexadecimal color code.

    I have try a lot but not get success.

    Please help any one know.

    Thanks.

  • Using ffmpeg to ensure all files have AC3 and AAC available ?

    10 février 2016, par JamieB

    I currently use the following command to convert files to MP4 with AC3 :

    ffmpeg.exe -fix_sub_duration -i `"$oldfile`" -vcodec libx264 -map 0:0 -vb 1095k -c:a:0 ac3 -map 0:1 -ac:a:0 6 -b:a:0 1536k -metadata:s:a:0 language=eng -f mp4 -threads auto -y `"$newFile`"

    I’d like to run a batch file across my entire library which would make sure each file has AAC and AC3 available. Is this possible ?

  • Debugging Gstreamer pipeline with tee and a filesink in C

    28 septembre 2020, par NicolasBourbaki

    There is an excellent example on how to construct a C program using GStreamer and its tee and filesink elements on https://gist.github.com/crearo/a49a8805857f1237c401be14ba6d3b03.
(Another one can be found on https://gstreamer.freedesktop.org/documentation/tutorials/basic/multithreading-and-pad-availability.html?gi-language=c).

    


    The idea of the tee element in a pipeline is similar like the tee program in Unix : Like a T-shaped tube, it allows to add a bifurcation to a pipeline, which is in my case used to display a video stream to the screen (which works perfectly) and writing it at the same time to a file (which doesn't work - the file is created but stays empty, i.e. has a size of 0 bytes after closing the program).

    


    I deviated from the examples mentioned above by neither having a queue element for recording (because I also don't have one for displaying, which works) as well as neither having an encoder nor a muxer. Although this might be a problem for what gets written to the file in the end, I would expect that there is written something to the file at all.

    


    The program does compile. What additional diagnostics could I run in order to pin down the problem ?