Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (26)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (6951)

  • Latest docs

    25 juin 2012, par Scott Schiller

    m doc/generated/script/soundmanager2.html m doc/generated/src/SoundManager2.html m doc/generated/src/SoundManager2_AS3.html Latest docs

  • Video play in slow motion while converting webm file to mp4 using ffmpeg

    14 novembre 2019, par Hardik Kothari

    I am using ffmpeg-static-electron in electron app for converting webm file to mp4 and that file will be play in mobile app as android and ios.

    Here I am using ffmpeg command for converting webm file to mp4.

     await execa(ffmpegPath, [
         '-i',
         inputPath,
         '-f',
         'mp4',
         '-vcodec','libx264', // video codec
         '-acodec','aac', // audio codec
         '-b:v', '6400k',  // video bitrate
         '-b:a', '4800k',  // audio bitrate
         '-strict', 'experimental', // standard
         '-r',
         '30000/1001',
         '-crf',
         '26',
         '-g',
         '16',
         '-movflags',
         'faststart',
         '-preset',
         'veryfast',
         outputPath,
       ])

    I used ’-g’ to 16 for solving a dragging progress issue in android player but it increasing the app size.
    Here you can check it out this https://video.stackexchange.com/questions/21892/why-cant-my-video-play-from-where-i-drag-the-playback-bar

    Some time It is working fine but some time sound coming through garbled and sounded like robot with slow-motion video
    Here is log file for normal video :https://textuploader.com/1o1ml

    I want a best conversion (WebM to Mp4) with lower file size.Anyone please help.

  • I need the script open waiting for new files

    26 septembre 2019, par AUDICOM

    I use the following FFMPEG script for DAV to AVI file conversion :

    for %% A IN (* .dav) DO ffmpeg -i "%% A" -vcodec libx264 "%% A.avi

    But DAV files are generated in the folder every 30 minutes, the script is triggered when the 1st DAV file is generated, but the conversion is fast, and it finishes before the next DAV file is generated in the folder, I need the script. convert the DAV and wait for the next file to arrive in the folder, or after converting the last DAV file that arrives in the folder 12:00 PM the script terminates the process.