Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (67)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6795)

  • Evolution #3629 : Pouvoir changer la date d’un article quand il est en cours de rédaction

    19 mars 2016

    J’ai regardé la concurrence ...

    WP permet en effet de choisir la date du publication (passé ou futur) dès la rédaction d’un article.
    Sans instruction, la date de l’article est celle de publication de l’article.

    Il faut voir comment gérer cela au niveau de l’ergonomie et au moment de la validation (instituer)

  • Anomalie #3590 : Si on recharge la page après avoir changé le statut d’un article, il y a un messa...

    28 février 2016, par realet RealET

    Une précision, quand je parle de simple rafraichissement de la page, je par le de F5 ou rechargement d’une session.

    Et si le navigateur m’affiche temporairement une page blanche avec une boite de dialogue me demandant si je veux renvoyer les données du formulaire, avec juste OK ou Annuler, je ne sais pas franchement quoi faire. Dans le doute, je fais OK.

    Mais c’est à chaque fois un grand moment de solitude.

  • Ffmpeg : Encoding images with audio [duplicate]

    10 février 2015, par Dries

    This question is an exact duplicate of :

    I’m tryng to encode video and audio at the same time using Ffmpeg.
    At the moment I’m using this command :

    ffmpeg -r 24 -pix_fmt rgba -s 1280x720 -f rawvideo -y -i -f s16le -ac 1 -ar 44100 -i - -acodec pcm_s16le -ac 1 -b:a 320k -ar 44100 -vf vflip -vcodec mpeg1video -qscale 4 -bufsize 500KB -maxrate 5000KB OUTPUT_FILE

    At first I had this without the information and input from the audio. So, without the audio this works fine :

    ffmpeg -r 24 -pix_fmt rgba -s 1280x720 -f rawvideo -y -i -vf vflip -vcodec mpeg1video -qscale 4 -bufsize 500KB -maxrate 5000KB OUTPUT_FILE

    To write the frames to the encoder (still not using audio) I’m using the following code :

    fwrite(frame, sizeof(unsigned char*) * frameWidth * frameHeight, 1, ffmpeg);

    Now, I want to add audio to this encoder (see the first command). I added a new input and added the information about the audio to the command but I have no idea how I should write, and when, the audio to the encoder (together with the video).

    I’ve tried this by adding the following code :

    for (int t = 0; t < 44100/24; ++t)
       fwrite(&audio, sizeof(short int), 1, ffmpeg);

    This should write 2000 samples of audio per video frame to the encoder. This code is called right after the fwrite() for the video frame.

    This does give weird results however. The image is not rendered in the right spot, gives green flashes and there is no audio.

    I can’t really figure out how (or when) to write the audio to the encoder.

    Thanks in advance !