Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (97)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (16704)

  • Video editor for android - FFmpeg won't compile on windows ?

    4 décembre 2014, par Zoe

    Im trying to make a video editor for android (I’ve never made an android app before)

    After searching for libraries to use I came across FFmpeg but I’m having trouble getting it to compile on Windows 7.

    I’m currently using Eclipse and have the most recent android SDK and ndk.

    I’ve been trying to follow tutorials on the internet including roman10’s (http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/) but they all seem specific to Linux.

    Yesterday, I thought I’d give up and just dual boot Ubuntu on my windows laptop but of course that was messing up too. I shrank my partition and booted Ubuntu of a USB but the installer was detecting there is no OS on my laptop and not giving me the option to install it alongside windows 7.

    So, can FFmpeg be compiled for android on windows ? Or is there another library I could use to make a video editor that can ?

    Or should I just persist with dual booting ubuntu ?

    Thanks

  • Create fake webcam with ffmpeg on Windows ?

    1er juillet 2022, par Brian

    ffmpeg has all kinds of options in it to record video off of a webcam, transcode video, send video up to streaming servers. Is there a way to loop over a file and make it look like a webcam ?

    



    I found this for Linux :
https://gist.github.com/zburgermeiszter/42b651a11f17578d9787

    



    I've search around a lot to try to find something for Windows, but have not yet found anything.

    


  • How to pause/resume ffmpeg video capture in windows from C# application

    20 septembre 2022, par Anindya Chatterjee

    I am using ffmpeg to capture screen and audio using a C# application. The command I am using to execute ffmpeg as follows :

    



    ffmpeg -f gdigrab -i desktop -f dshow -i audio="Microphone (Realtek High Definition Audio)" -v
codec libx264 output.mp4


    



    Now I want to pause/resume recording and want to control it from the C# application. Is there anyway I can achieve that ?