Recherche avancée

Médias (91)

Autres articles (43)

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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (3227)

  • ffprobe/ffmpeg detect when video is unplayable

    8 mars 2018, par Philip Tenn

    We are calling ffpmeg 2.6.8 through Java to convert different video formats to MP4.

    Is there a way to detect that the resulting MP4 video will be unplayable ?

    We’ve explored :

    • stderr. Unfortunately ffmpeg is writing all diagnostic information to stderr.
    • -xerror. I tried it on a file and it stopped converting, but when I tried without this switch, it converted and I could play the resulting MP4 file.
    • exit code. From reading various forums, it sounds like 0 is success, 1 is error, and there are other codes, but that this isn’t completely reliable (we could get an exit code of 0 and video still unplayable).

    Has anyone faced a similar need ? Just looking for ideas/suggestions that I could research and explore. Thanks !

  • How to make old 4:3 video content into 16:9 with crop/zoom and slight stretch ?

    9 août 2020, par Daniel Iversen

    I have old video cam footage in 4:3 format that I'd like to have play better on modern 16:9 screens, specifically I'd like to :

    


      

    • Crop/"Zoom" the video "a little" (cutting a tiny bit, maybe 10-15%, of the top and bottom of the video off)
    • 


    • Stretch the video "a tiny bit" (maybe 10%) - this will of course can ruin the footage so would like to only stretch the video a tiny bit
    • 


    • Still keep a bit of a border on the sides (since I don't want to stretch or crop the video too much)
    • 


    


    I'll still keep the original files too, but would like a version that just plays slightly nicer natively in 16:9. And I'd like to use free software like ffmpeg or Handbrake.

    


    I've found guides on how to crop and how to stretch the videos independently but I'm fearing having to re-encode the videos twice loses quality and takes a lot of time, so I'd like to do it all in one go.

    


    Does anyone have any ideas on how to do this ?

    


  • av_find_stream_info works OK with file, not with pipe

    14 décembre 2016, par Aliza

    I have the following code :

    av_register_all();
    pFormatCtx = avformat_alloc_context();
    const char* input = "pipe:";
    AVInputFormat* iFormat = av_find_input_format("mpegts");
    if ( avformat_open_input(&pFormatCtx, input, iFormat, NULL) != 0 )
            return -1;
    int res = av_find_stream_info(pFormatCtx);

    when my input is a regular file, this works nicely and pFormatCtx is populated with the streams in the file. However, when i set input to "pipe :", av_find_stream_info returns with -1.

    I am using the same file and piping it by running
    cat mpeg.ts | myApp

    Any ideas ?

    Thanks,
    Aliza