Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (96)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (9925)

  • FFMPEG Output Framecount Different On Audio Files PowerShell

    28 avril 2020, par ilham zacky

    I am using FFPROBE to get some file durations in PowerShell.

    



    For my video it gets the frame count properly but for my audio files it returns a different frame count.

    



    This is my code :

    



    $audioId = "$id.m4a"
$videoId = "$id.mp4"
$duration1 = ffprobe -i $videoId -show_frames 2>&1 | grep -c media_type=video
$duration2 = ffprobe -i $audioId -show_frames 2>&1 | grep -c media_type=audio
echo $duration1
echo $duration2



    



    For video it returns a proper output, but for audio it returns a wrong result.

    



    Any suggestions ?

    



    Thank you

    


  • Merge Audio and Video using ffmpeg - Python Lib [duplicate]

    15 janvier 2021, par badr

    i have tried

    


    import ffmpeg
video = ffmpeg.input('video.mp4')
audio = ffmpeg.input('audio.mp3')
ffmpeg.merge_outputs(video, audio).run()


    


    and it returns

    


    TypeError: Expected incoming stream(s) to be of one of the following types: ffmpeg.nodes.OutputStream; got <class>&#xA;</class>

    &#xA;

    and i have tried

    &#xA;

    import ffmpeg&#xA;video = ffmpeg.input(&#x27;video.mp4&#x27;)&#xA;audio = ffmpeg.input(&#x27;audio.mp3&#x27;)&#xA;ffmpeg.concat(video, audio, v=1, a=1).output(&#x27;finished_video.mp4&#x27;).run()&#xA;

    &#xA;

    and it returns

    &#xA;

    FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;

    &#xA;

    also i did try

    &#xA;

    import subprocess    &#xA;subprocess.run("ffmpeg -i video.mp4 -i audio.mp3 -c copy output.mp4")&#xA;

    &#xA;

    and it returns

    &#xA;

    &#x27;ffmpeg&#x27; is not recognized as an internal or external command&#xA;

    &#xA;

    how can i do it right ?

    &#xA;

  • Revision dd88f48296 : Set the maximum decode threads to be 8. This will fix the frame parallel decode

    5 février 2015, par hkuang

    Changed Paths :
     Modify /vp9/common/vp9_thread.h


     Modify /vp9/vp9_dx_iface.c



    Set the maximum decode threads to be 8.

    This will fix the frame parallel decode hang on windows
    due to not enough semaphores.

    This will also make the frame parallel decode safer as
    the number of frame buffers could only support maximum
    8 threads.

    Change-Id : Id9ef50692819dcbebbd74a0aabffbfb3f39a4309