Recherche avancée

Médias (91)

Autres articles (84)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5312)

  • Download FFMPEG source code and debug it [on hold]

    25 février 2017, par IPS

    I need to record a video from IP camera and currently I am using FFMPEG commands with a C# .Net application for that but we are facing issue with this as if we record a video of 300 seconds(5 Minutes) then 1 or 2 seconds video gets lost, don’t know why ?.

    So we need to check with source code of FFMPEG.

    I have downloaded the source code and I think it is written in "C/C++", so Can anyone guide me how to run and debug source code ?

    Or any other alternate way to record live video from IP camera RTSP stream.

  • how to copy/download each m3u8 .ts file to diffrent folder using ffmpeg ?

    21 mai 2014, par user1788736

    hi all can any tell me how to copy each .ts file found in m3u8 to different folder with same ts file names.I don’t want to merge all ts files to one big file. I just want copy them to different folder .For example if there is 10 .ts url in m3u8 i want to all those 10 .ts file downloaded to a specific folder using ffmpeg.

  • The batch does not work randomly when starting the loop

    13 octobre 2022, par Axl Alert

    Why doesn't it work in my code random ? I wrote setlocal EnableDelayedExpansion. But in the loop, random still does not work. Keep giving the same number

    


    setlocal EnableDelayedExpansion

set /A TrackNumber=!RANDOM! %% 3 + 1

FOR /F "tokens=*" %%G IN ('dir /b *.mp4') DO (

echo !TrackNumber!

ffmpeg -i "%%G" -i !TrackNumber!.mp3 -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 0:v -map "[a]" -c:v copy -ac 2 -shortest .%%~nG.mp4

)