Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (74)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10490)

  • Checking if MP4 is H264 encoded before upload

    12 janvier 2017, par Alan Sutherland

    I’ve built an app to manage uploading adverts, the marketing team choose whether they want an image or video advert and fill out a form with title, start time etc. This data is then stored in my db.

    However, with videos there’s an extra step, they’re uploaded to AWS, and the way this is configured it will only work with H264 encoded videos.

    I’d like to add some client side validation for videos, I found a related question which checks whether a browser supports H264 :

    How to detect supported video formats for the HTML5 video tag ?

    This the code the answer uses to check support

    var testEl = document.createElement( "video" ),
       mpeg4, h264;

    if ( testEl.canPlayType ) {
       // Check for h264 support
       h264 = "" !== ( testEl.canPlayType( 'video/mp4; codecs="avc1.42E01E"' )
           || testEl.canPlayType( 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"' ) );
      );

    I’ve inspected the videos in the console, comparing one with H264 encoding to one without and I can’t find anything within their attributes relating to H264. The src lists MP4 but nothing else :

    src: data:video/mp4;base648766554654 etc.
  • ffmpeg extract the first frame even if I assign other frame ?

    9 novembre 2014, par user2903753

    I have this line of code in Windows Forms c# :

    string.Format("-i \"{0}\" -s {3} \"{1}\"  -vcodec mjpeg -ss {2} -vframes 1 -an -f rawvideo ", input.Path, saveThumbnailTo, secs, imgWidthHeight);

    the problem is that the code only extracting the first frame whatever I put another frame.

  • Using ffmpeg to replace a single frame by number of frame from a video

    9 avril 2021, par user3449922

    I need to replace only one frame from my video (mp4) and if possible without re-encode.

    


    I have extracted all frames of my video and I see the frame to replace is number 45 (frame0045.png for example).

    


    I ask if is possible replace a single frame by number of frame.

    


    Thanks !