Recherche avancée

Médias (91)

Autres articles (72)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

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

  • Evolution #4416 : Utiliser des mots de passe plus long par défaut

    20 janvier 2021, par Peet du

    Hop,

    je suis tombé là-dessus : CNIL | Authentification par mot de passe : les mesures de sécurité élémentaires
    https://www.cnil.fr/fr/authentification-par-mot-de-passe-les-mesures-de-securite-elementaires

  • FFMPEG Video with extremely long audio

    13 janvier 2021, par Dean Van Greunen

    The issue with ffmpeg.

    


      

    1. A 10 second video plays for 3 hours due to audio also the video is frozen on the first frame
    2. 


    3. If I remove the audio using the -an flag then the video duration is correct and the video plays corretly, but I would still like to have the audio in the video.
    4. 


    


    Any idea ?

    


    Here is my FFMPEGargs

    


       ffmpeg -i video.webm -c:v copy -c:a copy output.mp4


    


  • Split Long Video Into Small Parts With FFmpeg And PHP

    13 janvier 2021, par Rhara Mutiara

    First, English is not my native language, I hope you understand what i want to say
    
I want to split long video, lets say 1 hour of video into small parts.
Right now I'm able to do this with this code

    


    ob_start();
    passthru('ffmpeg -i in.mp4 -acodec copy -f segment -segment_time 3 -force_key_frames "expr: gte(t, n_forced * 3)" %d.mp4');
    ob_end_clean();


    


    The output is thousands of parts with name 0.mp4, 1.mp4, 2.mp4 etc and 3sec duration each part
    
What I want to do now is should look like this :
    
0.mp4 3seconds , 1.mp4 5seconds, 2.mp4 3seconds.. etc
    
is it possible ?