Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (51)

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

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10851)

  • FFmpeg concat after overlay's (append)

    27 avril 2017, par Loïc Noest

    I have some video to witch i need to concat a header and add some overlay’s, the problem is that i need to do the overlay’s first becouse otherwise the time woundn’t be correct, and only afterwards concat the header to the begining of the video

    ffmpeg -i talk.mp4  -i start_pancarte.png -i end_pancarte.png  -i logo_alpha.png  -i header.mp4-filter_complex\
    " overlay= enable='between(t,0,3.04)' [x];\
    [x] overlay = enable='between(t,495.64, 498.6)' [y];\
    [y] overlay=15:15:enable='between(t,3.04,495.64)'[c];\
    [c] concat " solution.mp4

    This obviously adds the header to the end and I need it in the front, how do I do this (in 1 command) ?

  • FFMPEG and libx264, WMP and QT playback at different res/aspect than specified

    10 septembre 2013, par Foltz

    So, for a little context. I'm trying to convert a JPEG2000 in .mxf video to an h264 in .mp4, maintaining its resolution/frame-size/aspect ratio. I'll say up front I'm not 100% sure on how all these ratios tie together.

    So, my input file is 720x486. I have a sample h264 file with specs I'm trying to emulate (from an OpenCube video ingest machine) with ffmpeg. The OpenCube file plays back at 720x486 in both Quick Time 7 and Windows Media Player 12. It reports a PAR of 9:10 and DAR of 4:3 (Using VideoSpec to see these values).

    When I make my derivative h264 using ffmpeg I can run the command :

    ffmpeg -i lac-test.mxf -vcodec libx264 -s 720x486 -aspect 4:3 -b:v 2500000 -pix_fmt yuv420p -coder 0 -acodec libfaac -b:a 256000 lac-test.mp4

    The output file reports the correct values in VideoSpec (720x486, DAR 4:3, PAR 9:10), but plays back in QT at 648x486. Weirder, the video plays back at the proper resolution (that is, same size as the sample OpenCube file).

    Now, an alternative command creates yet another predicament :

    ffmpeg -i lac-test.mxf -vcodec libx264 -s 720x486 -b:v 2500000 -pix_fmt yuv420p -coder 0 -acodec libfaac -b:a 256000 lac-test.mp4

    So omitting the aspect ratio gives me an output file that plays at 720x486 in QT7 (good !) but reports a DAR of 1.481 and an Undefine PAR. Unfortunately, THIS file plays back slightly too wide in WMP12.

    I've tried a slew of different strings to try and get something that plays back correctly. I've tried using various filters with the -fv flag such as :

    ffmpeg -i lac-test.mxf -vcodec libx264 -vf "scale=720x486,setsar=9:10,setdar=4:3" -b:v 2500000 -pix_fmt yuv420p -coder 0 -acodec libfaac -b:a 256000 lac-test.mp4

    This results in a video that shows all the correct specs in VideoSpec, and plays back correctly in WMP12 (same size as OpenCube file), but still plays back at 648x486 in QT7.

    What gives ?

  • How to add album art with ffmpeg ?

    17 juillet 2016, par Adi Ricky k

    Everybody, I’ve stuck to add album art on mp3 files.

    I already research and Googling about this issue but not solution yet, on ffmpeg documentation to add image (album art) to mp3 use this script :

    ffmpeg -i input.mp3 -i cover.png -c copy -map 0 -map 1 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    Source from : http://www.ffmpeg.org/ffmpeg-all.html#mp3

    But it’s doesn’t work on my console output is :

    Unrecognized option 'c'
    Failed to set value 'copy' for option 'c'

    I looking for another solution and I get from : http://trac.ffmpeg.org/ticket/2221 :

    ffmpeg -i input.mp3 -i cover.png -map 0:0 -map 1:0 -c copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    Also return same output, I already research why return :

    Unrecognized option 'c'
    Failed to set value 'copy' for option 'c'

    But there are no body have same problem.
    anybody can help me, please ?

    nb : I use ubuntu 12.04 and ffmpeg version 0.8.6-4:0.8.6-0.
    thanks