Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (53)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

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

Sur d’autres sites (8187)

  • FFmpeg scaling error

    9 juillet 2015, par oleg.semen

    I’m trying to convert video on Android using FFmpeg Android Java library
    My method takes input and output file pathes and dimentions of output file (for instance 640x480). Video should fit crop these bounds. As video might be in landscape or portrait orientation I’m next params :

    String.format("-i %s \"scale='if(gt(a,1),-1,%d)':'if(gt(1,a),%d,-1)'\" %s", in, h, w, out);

    see this article

    according to official doc a is aspect ration (w/h) of input file.

    So a > 1 gt(a,1) means w > h so video is landscape, and 1 > a gt(1,a) means h > w so video is portrait.

    But I’m getting next error :

    Unable to find a suitable output format for "scale='if(gt(a,1),-1,480)':'if(gt(1,a),640,-1'"
    '"scale='if(gt(a,1),-1,480)':'if(gt(1,a),640,-1'" : Invalid argument

    What am I doing wrong ?
    Thanks.

  • OpenCV error : [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls

    2 mai 2015, par Relax Wu

    I installed OpenCV in Ubuntu according to the official guide, then I’m trying to decode a file, then error occurs :

    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!
    [mpeg4 @ 0x7ffe33cb3e60] too many thread_release_buffer calls!

    the video is about 150 frames, the error log may exceed 1000, can someone help me here ? thanks.

  • webm to mp4 without loosing audio video sync

    9 avril 2018, par Kishore

    Iam trying to covert webm to mp4 using ffmpeg so that the output file is playable in all browsers.

    Iam using this ffmpeg command in ubuntu

    ffmpeg -i inpput.webm -f mp4 -copyts -vcodec libx264 -strict -2 -vf scale="380:-2" -pix_fmt yuv420p -profile:v baseline -level 3 output.mp4

    It is converting the file to mp4 but that file is out of sync in Mac safari browser and chrome browser. Means the audio and video is not syncing and sometimes the video gets stopped in between and audio goes on.

    If I play the input.web media file directly in chrome it is playing perfectly fine, the same input.webm is also playing good with firefox. But the converted mp4 is out of sync in safari on mac and all chrome browsers.

    However if the output.mp4 is played on ipad safari it is playing fine.
    The Mac safari version I tried is 11.03
    iPad safari version is 11.3

    Firefox and chrome are all latest.

    firefox : 59.0.2(64 bit),
    chrome : 65.0.3325.181 (Official Build) (64-bit)

    Please help me out with what Iam doing wrong.

    Thanks in advance.