Recherche avancée

Médias (91)

Autres articles (77)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6881)

  • How to use the Source Code instead of a specific OS App with a Python Project [closed]

    28 septembre 2021, par Lara Saka

    If I want for example to install ffmpeg to use AudioSegment Library(which convert Audio to text). When you open their website you will see download for windows, apple, linux and a source code I want to use the ffmpeg in the Project regardless of the operating system by using the source code of the ffmpeg !

    


    How Can I do that ?

    


    ffmpeg download web site

    


    Thanks in advance..

    


  • Anomalie #4517 (Fermé) : Minipres "site en travaux" return un code 200

    10 juillet 2020, par PIerre LASZCZAK

    Bonjour,

    Lorsqu’un site spip est prêt pour une nouvelle installation, minipres return un code HTTP 200

    Vous semble-t-il pertinent de retourner un code 503 ?

    Merci !

  • FFMPEG, change default audio track with code

    2 août 2019, par Gralex

    I have mkv video, and what just change default audio track without remux, encode/decode and other stuff. How it can be done with code ?

    AVFormatContext *pFormatCtx;

    av_register_all();
    avcodec_register_all();
    avformat_network_init();
    pFormatCtx = avformat_alloc_context();

    if (avformat_open_input(&pFormatCtx, [videoPath UTF8String], NULL, NULL) != 0) {
       avformat_close_input(&pFormatCtx);
       return;
    }

    if (avformat_find_stream_info(pFormatCtx, NULL) < 0) {
       avformat_close_input(&pFormatCtx);
       return;
    }

    for (int i = 0; i < pFormatCtx->nb_streams; i++) {
       if (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
           // so we have audio track info
           // what todo next?
       }
    }
    avformat_close_input(&pFormatCtx);