Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (17571)

  • FFmpeg - How to scale and then drawtext ?

    19 janvier 2015, par vanderjas

    I’m trying to scale and crop a video and then apply some text over the top.

    I’m able to achieve each of these successfully using the following filters :

    Scale & Crop

    -vf scale=-1:640,crop=640:640:0:0

    Draw Text

    -vf drawtext="fontfile=Gotham-Book.ttf: text=TextHere:fontsize=72:fontcolor=gray@0.25:x=10:y=10”

    I presume I need to use some kind of filter complex but I am not having any luck.

    Can anyone help ?

    Thanks in advance !

  • Quantization property in CUVID

    19 octobre 2016, par mkreddy

    Please correct me if my understanding was wrong regarding qscale in ffmpeg.

    In ffmpeg H264 decoder has qscale_table which hold the values of qp for each macro block.

    Is there any such table/matrix in CUVID to know the qscale values ? If not, please suggest me how can I construct one such matrix for each macro block.

    Thanks in advance.

  • ffmpeg : merge avi and wav files into flv not working

    1er juillet 2014, par gautam.das

    I’m trying to merge an .avi and .wav file to .flv using ffmpeg-php.

    Here is my code :

    exec("ffmpeg -i $audio_path -i $video_path -vcodec flv -acodec copy
                                                $target_path", $op, $result);

    But the output file is of 0 bytes and it gives :

    "Could not write header for output file #0 (incorrect codec parameters ?):
       Invalid data found when processing input"

    When I use -vcodec as copy, it merges sucessfully.

    Thanks in advance.