Recherche avancée

Médias (91)

Autres articles (69)

  • 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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (6800)

  • How to make FFmpeg automatically inject mp3 audio tracks in the single cycled muted video ?

    5 décembre 2020, par Grrzly

    everybody here ! So basically this is what I want to achieve :

    &#xA;

    I have a muted video about 3 minutes long.&#xA;I have a list of audio tracks in mp3 format (40 songs in a folder with duration 2 to 6 mins each one)

    &#xA;

    I want this video to play cycled automatically taking songs from playlist and injecting them to the video one by one. Every time a song finishes the next one from the list should start playing at the moment. Video continues playing and doesn't care duration of tracks.

    &#xA;

    I consider it as the first step on the way to broadcast radio with a video background on youtube in 24/7 mode with ability to put additional tracks to playlist without need to stop translation.

    &#xA;

    My problem is that I'm new in FFmpeg and I would appreciate any suggestions regarding which FFMpeg topic to start investigate with in order to achieve my goal

    &#xA;

  • Anomalie #3823 : Pagination et connect

    8 février 2017

    Hum, c’est un peu casse gueule, car si ça ajoute &#38;connect=truc dans l’URL (si pas d’ajax) en cliquant un lien de pagination, ça va passer tout le site en utilisant ce connect d’URL (hors ceux explicitement spécifiés)

    J’ai tenté d’ajouter éventuellement le $connect évuentuel à l’url de pagination (dans filtre_pagination_dist()), dans le tableau $pagination.
    Ça ajoute bien le connect sur les liens de pagination. Cependant à partir du moment où tu cliques dessus, ça n’a pas du tout le résultat attendu (au moins sans ajax) :
    le &#38;connect=truc ajouté à l’URL est appliqué pour tous les code> ou <code>#INCLURE même s’ils déclarent connect=autrechose. Pour ce point je sais pas si c’est un bug ou le comportement désiré…

  • How to create a video with audio in Java

    11 décembre 2019, par Schred

    I am currently creating a video editor, and want to be able to export the video alongside some audio to a new MP4 file.

    I know how to export a video without any sound using humble video, a modified version of its RecordAndEncodeVideo example and also JavaCVs FFmpegFrameGrabber. However, I do not know how to :

    1. import an audio file (preferably mp3)
    2. edit it (although not necessary)
    3. and export it together with a video (preferably mp4)

    At the moment I can play sound in the application using javax.sound.sampled.Clip, but that’s about it (no exporting / writing / encoding to a file). I wouldn’t mind changing this for the purpose of being able to export it though.

    What is the best way to go about this ?