Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (69)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6868)

  • What does Elementary Stream mean in Terms of H264

    5 août 2015, par user1767754

    I read what an Elementary Stream is on Wikipedia. A tool i am using "Live555" is demanding "H.264 Video Elementary Stream File". So when exporting a Video from a Video Application, do i have to choose specific preferences to generate a "Elementery Stream" ?

  • hevc Could not find ref with POC 34

    14 août 2023, par Rushikesh Date
      

    1. I am trying to send Rtsp video (comes from RTSP camera URL) to the ANT media server.

      


    2. 


    3. I am using LibVLC to play video locally in app.

      


    4. 


    5. And I am using FFMPEG library for sending the RTSP url video to the ANT media server But In initial 20 seconds this corrupted frame appear. and following error comes in logs
      
"[hevc @ 0xe86ff800] Could not find ref with POC 34"This is the corrupted frame appear in between video

      


    6. 


    


    The RTSP video Url should play smoothly on Ant media server without any interruption.

    


      `String[] cmd = {
                "-rtsp_transport",
                "tcp", // Choose appropriate transport (e.g., "udp" or "tcp")
                "-i",
               "rtsp://127.0.0.1:8554/main.898", // Source RTSP stream URL
                "-filter:v",
                "scale=1280:720",
                "-c:v",
                "libx264", // Video codec for transcoding (you can choose other codecs if needed)
                "-preset",
                "ultrafast", // Video preset for transcoding speed (adjust as needed)
                "-max_delay",
                "1000000",
                "-an",
                "-f",
                "flv", // Output format, RTMP requires FLV container
               "rtmp://streamingServer.com/LiveApp/gdyggcshvcvhcvv " // Ant Media Server RTMP endpoint
        };

        try {
            // Execute FFmpeg command
            fFmpeg.execute(cmd, new FFmpegExecuteResponseHandler() {
                @Override
                public void onSuccess(String message) {
                }
                @Override
                public void onProgress(String message) {
                }
                @Override
                public void onFailure(String message) {
            
                }
                @Override
                public void onStart() {
                }
                @Override
                public void onFinish() {
                
                }
            });
        } catch (FFmpegCommandAlreadyRunningException e) {
            Log.e("FFmpeg", String.valueOf(e));
            // Handle FFmpeg command already running error
        }`


    


  • CPU for FFMPEG ? [closed]

    4 mars 2013, par Степан Талабира

    Help me with choosing a processor for ffmpeg.
    I need a server for fast video encoding.
    Today I tested two my server and was surprised...

    E3-1230 V2 @ 3.30GHz ffmpeg fps=450
    2xXeon E5645 (12x2.4GHz) ffmpeg fps=200

    WTF ?

    I need something more powerful than I have now and I do not know what to choose..
    ffmpeg not support new intel i7 QuickSync..Or am I wrong ?