Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (62)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5712)

  • OS X uploads .mp4 as quicktime ? [on hold]

    15 janvier 2014, par daled

    I'm running into a rather peculiar issue uploading .mp4 from any browser on OS X. I'm using ffmpeg to convert files and .mp4's uploaded from OS X are causing issues.

    First off, the file I'm uploading is not corrupt. Here is the relevant exiftool output on the file I'm uploading. This is the original file on the client.

    File Type                       : MP4
    MIME Type                       : video/mp4
    Major Brand                     : MP4 Base w/ AVC ext [ISO 14496-12:2005]
    Minor Version                   : 0.0.0
    Compatible Brands               : avc1, isom

    Now here's the exiftool output on the server for the same file :

    File Type                       : MOV
    MIME Type                       : video/quicktime
    Major Brand                     : Apple QuickTime (.MOV/QT)
    Minor Version                   : 2005.3.0
    Compatible Brands               : qt

    Ffmpeg will recognize the first file just fine. Everything will work perfectly and I can convert it however I choose. But the second file, I'll get this error :

    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x3855180] stream 0, error opening alias: path='/Users/', dir='20130602-113438', filename='GOPR0018.MP4', volume='Macintosh HD', nlvl_from=-1, nlvl_to=-1
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x3855180] stream 1, error opening alias: path='/Users/', dir='20130602-113438', filename='GOPR0018.MP4', volume='Macintosh HD', nlvl_from=-1, nlvl_to=-1

    Here is the FFmpeg command I am using :

    ffmpeg -y -probesize 2147483647 -analyzeduration 2147483647 -i "'.$oldFilename.'" -vcodec libtheora -q:v 0 -acodec libvorbis -q:a 0 "'.$newFilenameOGG.'" 2>&1

    This command works fine with every file type besides this file. It seems like ffmpeg is seeing the uploaded file as a corrupt quicktime file instead of a valid mp4 file. So my question is, how is this metadata magically changing ?

  • Mux audio and video with c api ffmpeg [on hold]

    18 juillet 2014, par EricNguyen

    I just wanna muxing video file. Same as in this link

    I’m try to read sample from ffmpeg home page, but it makes me confuse. Can anyone share some more sample about this ?

    And i’ve use ffmpeg sample, but the result is a video with all black frames :(

  • Bad quality video after watermarking with ffmpeg with live video

    16 juillet 2014, par user3478006

    Im using ffmpeg to re-stream, only thing is im trying to add a watermark as well, here is my code :

    ffmpeg -i - -isync -maxrate 300k -vcodec copy -b 150k -acodec copy -b 48k -s 640x380 -vcodec libx264 -preset veryfast -vf "movie=img.png [watermark] ; [in][watermark] overlay=10:10 [out]" -f flv "rtmp ://xxx.xxx.xxx/live/stream flashver=FME/3.0\20(compatible ;\20FMSc/1.0)"

    The problem im getting is that the quality of the stream is terrible, compltetly unwatchable, audio is great but the video quality is madly bad, so how would i improve it please, im useless at this type of thing so if someone could give me the full code id be ever so grateful,