Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (18)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

Sur d’autres sites (3422)

  • Creating video from single long audio and single image then created video not playing

    25 février 2021, par Mukul Kashyap

    I am creating a video from single audio and single image and it is fine when the audio length less than 10 seconds but when the audio length exceeds 10 seconds then video not playing. I am using FFmpeg to create video using shell_exec().
The video is fine when I directly runs the FFmpeg command on the terminal but the only issue comes with the shell_exec command.

    


    This command I am using -

    


    ffmpeg -loop 1 -f image2 -i $this->img_url -i $this->audio_url -vf scale=1920*1080 -pix_fmt yuv420p -vcodec libx264 -shortest ".$video_local_dir.$video_name ;

    


    Please help me to fix this issue

    


    Thanks.

    


  • .Net Core : How do I read/write the output of a ffmpeg process in a RAM instead of disk ?

    27 juillet 2018, par User3301

    I have a .Net Core ffmpeg wrapper class that basically does some audio file format converting, clipping and concatenating work. My code runs some ffmpeg command lines in process like :

    ffmpeg -i file1.opus -f wav file2.wav

    which converts opus audio file into wav format, since the opus format is heavily compressed audio format, the file I/O from a disk is very slow. I wonder if it’s possible to do audio manipulation like this in ram(load input file in ram and save the ffmpeg processed file output in ram all the way). Any suggestion will be appreciated. Thanks in advance.

  • youtube-dl download one minute per every 5 minutes (on a twitch video, but i have the local file saved too if easier)

    18 mai 2016, par babadoctor

    I would like to do what the title says

    This is a ffmpeg command to download from a specific time in a video, offline or online.

    ffmpeg -ss (stop time) -i (direct video link) -t (start time) -c:v copy -c:a copy (title.mp4)

    I am going to be downloading this on OSX.
    I dont care what the title is.

    I think* there is a bash command that allows me to change the timings in this command up by a specific amount (+300 seconds per, the counter for start and stop time is in raw seconds)

    So, bash script that runs that command but increases the start and stop times incrementally by 300 (the stop timing being 60+ seconds ahead), downloads, then repeats.