Recherche avancée

Médias (91)

Autres articles (75)

  • 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 ;

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (9805)

  • ffprobe on windows no output beyond " { " (ffmpeg-6.0-essentials_build) (in a python script) [closed]

    7 avril 2023, par Stahkub

    I'm attempting to use ffprobe (in a python script) on an rtsp stream using the following command :

    


    ffprobe -loglevel quiet -rtsp_transport tcp -select_streams v:0 -show_entries stream=width,height -of json rtsp://stream


    


    however the only thing showing in the console after this command is "" on windows, but works on wsl where it produces full json output and not just a single ""

    


    the windows command will never return and must be killed. Any ideas ?

    


    Reinstalled ffmpeg, different versions, rebooted pc, tried absolute path to ffprobe, tried running ffprobe using python. Tried piping output to a file, same result. I've searched around and haven't found a similar issue.

    


  • Revert "avcodec/er : remove check for fields"

    9 avril 2023, par Michael Niedermayer
    Revert "avcodec/er : remove check for fields"
    

    Fixes : out of array write on x86-32
    Fixes : 57825/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG2VIDEO_fuzzer-6094366187061248
    Fixes : 57829/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG2VIDEO_fuzzer-4526419991724032

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    This reverts commit f7abe92bd7939b6aeeb2393fe141033e733305d4.

    • [DH] libavcodec/error_resilience.c
    • [DH] libavcodec/error_resilience.h
  • react native ffmpeg haw write to external storage

    18 juin 2023, par rayen saidani

    iam trying to take a part from an audio file and create another file with it but i keep getting permissions denied or Read-only file system error :

    


    function:export const handleVideoLoad = (selectedVideo: any) => {
 
 FFmpegKit.execute(
   `-ss 00:00:00 -i ${selectedVideo.url.split(" ").join("")} -t 00:20:00 -map 0 -c copy ${
     'ardsh.mp3'
   }`,
 ).then(async session => {
   const state = FFmpegKitConfig.sessionStateToString(
     await session.getState(),
   );
   const returnCode = await session.getReturnCode();
   const failStackTrace = await session.getFailStackTrace();
   const duration = await session.getDuration();

   if (ReturnCode.isSuccess(returnCode)) {
     console.log(`Encode completed successfully in ${duration} milliseconds;`);
   } else if (ReturnCode.isCancel(returnCode)) {
     console.log('Encode canceled');
   } else {
     console.log(
       `Encode failed with state ${state} and rc ${returnCode}.${
         (failStackTrace, '\\n')
       }`,
     );
   }
 });
};


    


    i already have the permissions in Manifest file and i have the android:requestLegacyExternalStorage="true"

    


    error :

    


    
 Audio: pcm_s16le ([1][0][0][0] / 0x0001), 24000 Hz, mono, s16, 384 kb/s
 LOG
 LOG  ardsh.mp3: Read-only file system
 LOG  Encode failed with state COMPLETED and rc 1.\n