Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (60)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7420)

  • Converted video is not played in Firefox

    20 juillet 2023, par Kiten

    I have a code that accepts the video file from the client converts it and saves it on the server with .mp4 extension. Video processing is made using fluent-ffmpeg. Here is the code :

    


    ffmpeg()
  .size('360x?')
  .videoCodec('libx264')
  .output()
  .on("end", () => {
    console.log(`Video saved with resolution 360`);
    res.json('Uploaded')
  })
  .on("error", (error) => {
    console.error(
      `Error saving video with resolution 360:`,
      error
    );
    res.status(500).json({ message: "Conversion error" });
  })
  .run();


    


    The problem is that the resulting files are not played in the Firefox browser (but work in Microsoft Edge and Google Chrome).
Is it possible to change the parameters so that the resulting files are compatible with Firefox browser ?

    


  • Qt WinRT App cannot access file permission denied

    23 février 2016, par Haris

    I need to develop WinRT App using Qt and FFMPEG, I build the ffmpeg for WinRT based on the instruction here and I am able to link the library with my project. Now I need to open a video file using avformat_open_input but it always giving me the output

    video decode error "Permission denied"

    Below is the relevant part of the code,

    int ret = avformat_open_input(&pFormatCtx, hls, NULL, NULL);
       if(ret != 0)
       {
           char errbuf[128];
           av_strerror(ret, errbuf, 128);
           qDebug()<<"video decode error"<code>

    From the above error it seems some permission issue, do I need to add any additional permission on AppxManifest.xml currently I am using default manifest which is created by Qt creator.

  • FFMPEG is not able to find window for edge browser

    19 avril 2022, par randy

    I am trying to capture video recording for edge browser using below command

    


    ffmpeg.exe -f gdigrab -framerate 9 -i title="About version - Profile 1 - Microsoft​ Edge' -vcodec libx264 -threads 1 -crf 35 -preset ultrafast -f hls -g 15 -hls_list_size 0 -hls_time 5 -r 7 -pix_fmt yuv420p -maxrate 1.7M -bufsize 2M -tune zerolatency -vf pad=ceil(iw/2)*2:ceil(ih/2)*2 index.m3u8


    


    This is how I found title for edge browser

    


    tasklist /v /fi "imagename eq msedge.exe" /fo list


    


    This is the error I get (notice the weird character)

    


     Can't find window 'About version - Profile 1 - MicrosoftΓÇï Edge'


    


    I have also verified the title with AutoIt application. This is working fine for chrome and firefox. Let me know if some is able to record the edge browser via ffmpeg