Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (54)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (5681)

  • fluent-ffmpeg ffmpeg exited with code 1 : Unknown decoder 'h264_nvenc'

    3 juillet 2022, par zzzhim
          import { ipcMain } from "electron"
      import fluentFfmpeg from "fluent-ffmpeg"
      import ffmpegStaticElectron from "ffmpeg-static-electron"
      import ffprobeStaticElectron from "ffprobe-static-electron"

      const ffmpeg = fluentFfmpeg()
      ffmpeg.setFfmpegPath(ffmpegStaticElectron.path)
      ffmpeg.setFfprobePath(ffprobeStaticElectron.path)

      ffmpeg
        .input('0.mp4')
        .inputOption([
          "-hwaccel cuvid",
          // "-hwaccel_device 1",
          "-c:v h264_cuvid",
          "-c:v h264_nvenc",
        ])
        // .videoCodec("h264_nvenc")
        .outputOptions([
          '-map 0',
          '-f hls',
          '-hls_time 5',
          '-segment_time 5',
          '-hls_list_size 0',
          '-hls_segment_filename',
          `${tsFilePath}/%d.ts`
        ])
        .output(`${m3u8FilePath}/${name}.m3u8`)
        .on('start', (commandLine) => {
        })
        .on('error', (err, stdout, stderr) => {
          console.log(err, stdout, stderr)
        })
        .on('progress', (progress) => {

        })
        .on('end', (err, stdout, stderr) => {
      
          
        })
        .run()


    


    ffmpeg -codecs

    


    enter image description here
enter image description here
Sorry, my English is not very good !

    


    I want ffmpeg to use GPU hardware acceleration. The above is my code, but it has been executing incorrectly. This problem has plagued me for several days. I hope you can help me, thank you !

    


  • Can't Transfer .DAT (mpeg2 codec) Video to Any Other Format [closed]

    14 mai 2021, par Juan Jinping

    I have a PS2 official bonus DVD which is full of 3 hour cutscenes of MGS3. But I don't have my PS2 anymore to watch it. So I decided to transfer lossless or at least the most lossless possible. Because I am some kind of obsessed.

    


    I tried to use FFMPEG but it doesn't look it worked. At least once a minute the video goes blocky, pixelated. I tried the codes given below. I could find way more better videos on YouTube.

    


    Neither of these and their variations worked :
ffmpeg -i DEMO_3.dat DEMO_3.mkv
ffmpeg -i DEMO_3.dat -c:v libx264 -crf 0 DEMO_3.mkv

    


    I also tried it to use 3000k bitrate because it's the original bitrate of this video ffmpeg -i DEMO_3.dat -c:v libx264 -b 3000k DEMO_3.mkv

    


    Then I thought I could convert them into .png frames then reencode h264 to with "-crf 0". But frames that I extracted were blocky and pixelated too. ffmpeg -i DEMO_3.dat -r 29.970/1 %06d.png

    


    I wanted to check if my disc is broken or damaged. I downloaded the disc that I own as .iso on the internet and tried the same things but got the same results.

    


    And also the audio is not even extracted eventhough Mediainfo says there is 4 audio tracks. (probably besides English any other 3 dubs and I want them too)

    


    Long story short I want the .dat file with highest quality possible video and all audio tracks in the original mpeg2 codec or h264 codec in mkv container. You can recommend me any other program to do it or just give me code advices.

    


  • How To Make Make A Video File From Images Using FFMPEG If Your Images Start At A Random Number [duplicate]

    13 mai 2019, par teot 59

    So I am making a program on my raspberry pi and I am constantly saving pictures in the background and deleting them. So for instance in the images folder I have images from 123.png to 234.png

    for now I have been using this command :

    os.system("ffmpeg -f image2 -r 15 -pattern_type glob -i 'videos/*.png' -vcodec mpeg4 -y movie.avi")

    But it’s unreliable, because it mixes image numbers up

    (sorry for bad English)