Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (34)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (7519)

  • raw h264 converts without audio but ip cam software plays with audio

    12 août 2017, par aesteve218

    Why when I convert .h264 raw files from the sd card on my ip cam they convert without audio stream. When I open the video through the proprietary software it will play the stream with audio so I know it’s there. Also on a ffprobe it only shows a single stream and lists no audio. I know that the cam uses adpmc for audio and most linux-distros don’t support it but I get the same when trying to use Windows. Any ideas ?

  • Resize videos in android

    18 février 2014, par Christopher Johnson

    I'm looking to resize videos captured using the MediaStore Intent after they have been saved to the SD card. I've done similar things with c# and ffmpeg and thought about using that with android but I've yet to be able to find a way to incorporate that into my eclipse running on my windows 7 machine.

    I'm a total *nix noob so all of the solutions that I've found for building ffmpeg into an android app are completely greek to me.

    Is there an alternative solution to ffmpeg that perhaps is already built into the android sdk for resizing videos ?

    I'm just looking for the path of least resistance here...

  • fixing (with ffmpeg) the chrominance position on a video after capturing

    23 mai 2016, par APLU

    I’m trying to convert some video from VHS to digital using an (old) video capture card (and obviously an old VHS player). Due to the input from my video capture card and the output available from the VHS, I have no other choice than capture with an S-Video cable to a computer.

    Almost everything works except a little mis-synchronization between chroma and luma which do not happen on TV.

    For example, in the original video, I have something like that :
    good position of color

    After capturing the video looks like this :
    bad position of color

    As you may see, there is a little desynchronization of the chroma with the luma channel (I will say about 10 lines errors).

    I’m capturing with ffmpeg on a Linux system with the following commands :

    $ v4lctl setnorm PAL-BG

    $ v4lctl setinput S-video

    $ ffmpeg -y -f alsa -ac 2 -i pulse -f video4linux2 -i /dev/video0 -c:a pcm_s16le -vcodec rawvideo -t $duration -r 25 -loglevel error -stats /tmp/tmp.mkv

    I tried other input norm in v4l, tried an other VHS player, tried an other conversion cable from SCART to S-Video but it didn’t change anything,

    My question is simple : is there a way to fix this with a post-processing video filter in ffmpeg ?

    I already looked at the long list of video filter available in ffmpeg but I didn’t find anything.

    Also, please note I can’t apply filter during the capture commands (old capture cards, old cpu, ..), this is why I capture in rawvideo and native audio. When the capture is done I convert the video/audio into h264/vorbis, at this step I can apply as much as audio/video filtering needed (even if it include extracting chroma & luma to new files, fixing and merging again).

    Thanks !