Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (8122)

  • Best video format for video processing and converting to mp4

    29 août 2014, par Max Grigoriev

    I may have video in selected format and I should make some video changes - add logo to the whole video as example and then convert to mp4. Right now original file is in h.264/mp4 format too. As I understand to add logo original file should be decoded to frames then logo should be added and then frames should be encoded to H.264 and packed to mp4. Since I’m newbie in video processing maybe there’s a raw video format which removes decoding stage and it saves time and cpu ?

    Thanks

  • how to improve the quality of resultant video when merging audio-video with ffmpeg ?

    6 novembre 2015, par R.S

    When merging an audio and video with ffmpeg, the quality of the resultant video goes down. How to we improve the quality(esp. the audio quality) ?

    The audio quality gets degraded to quite an extent with random screeches in between.
    I’ve tried converting the audio to mp3 and video to mp4 before merging them, tried various audio-video parameters like bitrate, sample-rate, qscale etc but still unsuccessful.
    Any help would be greatly appreciated !

  • How to put watermak on video with FFMPEG,without resizing the watermark becuase of video resolution ?

    27 septembre 2013, par Shahbaz Younis

    Im looking for a way that the watermark picutre does not get resized,if the video resolution is high or less.Right now i have this problem,if i upload a video like 720p the watermak is really small and when i upload a video that is 240p the watermak is really big.I would just like it to be only one size.Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where i put it ? here's the code im using right now

    if ($ffmpeg_ver == "old") {
                       $watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
               } else {
                       $watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
               }