Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (4)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (2781)

  • PC Video Conferencing in the Year 1999

    21 juin 2011, par Multimedia Mike — General

    Remember Intel’s custom flavor of H.263 cleverly named I.263 ? I think I have finally found an application that used it thanks to a recent thrift shop raid— Intel Video Phone :



    The root directory of the disc has 2 copies of an intro.avi video. One copy uses Intel Indeo 3 video and PCM audio. The other uses I.263 video and an undetermined (presumably Intel-proprietary) audio codec — RIFF id 0x0402 at a bitrate of 88 kbits/sec for stereo, 22 kHz audio. The latter video looks awful but is significantly smaller (like 4 MB vs. 25 MB).

    This is the disc marked as "Send it to a friend...". Here’s the way this concept was supposed to operate :

    • You buy an Intel Video Phone Camera Pack (forgotten page courtesy of the Internet Archive) which includes a camera and 2 CDs.
    • You install the camera and video phone software on your computer.
    • You send the other CD to the person whom you want to be able to see your face when you’re teleconferencing with them.
    • The other party installs the software.
    • The 2 of you may make an internet phone call presumably using commodity PC microphones for the voice component ; the person who doesn’t have a camera is able to see the person who does have a camera.
    • In a cunning viral/network marketing strategy, Intel encourages the other party to buy the physical hardware as well so that they may broadcast their own visage back to the other person.

    If you need further explanation, the intro lady does a great job :



    I suspect I.263 was the video codec driving this since Indeo 3 would probably be inappropriate for real time video applications due to its vector quantizing algorithm.

  • How to export mestimate filter motion vectors into a separate file with ffmpeg binary ?

    20 juin 2022, par Hitokage

    So mestimate filter can be used to compute the motion vectors in a video. They can also be displayed. Is there a way to export them into a separate file using the ffmpeg binary ? I would love to have them for example in an image like 2-component color values representing the 2D vectors for each block (so the resolution would be the original one divided by the block size) or something.
Given a sequence of png frames, I can do :

    


    ffmpeg -i %04d.png -vf "mestimate" test.mkv


    


    And as I understand it, the vectors are then stored in the frames' side data which can be extracted using libav. Is there a simple way with the ffmpeg tool alone ? Thanks.

    


  • ffmpg full album video - multiple audio files one after another

    21 août 2019, par Martin

    I am trying to write an ffmpeg command which will take an image (jpg) and multiple audio files (in this case, lets say 3 mp3 files) and create an mp4 video where each audio file comes one after another (first audio file, then second, then third, etc... no overlap, files play in order one after another).

    I am currently using this command to export a single mp3 file and jpg into an mp4 :

    ffmpeg -loop 1 -y -i "media/pic.jpg" -i "media/01 song name.mp3" -shortest -acodec copy -vcodec mjpeg -s 1920x1080 "outputVideo.mp4"

    Is it possible to combine multiple audio tracks into the video using one command ?

    In the past I was using this command seperately to generate a single audio track made up of multiple audio inputs in order :

    ffmpeg -i '01 - Funky Carla.mp3' -i '02 - Take This Day Away.mp3' -i '03 - Youre The One I Love.mp3' -filter_complex '[0:0][1:0][2:0]concat=n=3:v=0:a=1[out]' -map '[out]' -b:a 320k fullAudio.mp3

    And then just using that track to export one video, but this process takes two separate ffmpeg commands, is long and slow, and produced a huge video file.

    Should I use something like amix / amerge / map ? Any advice/ideas is appreciated, thanks.