Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (62)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (7652)

  • avformat/mov : fix missing line break in messages

    25 juin 2020, par Moritz Barsnick
    avformat/mov : fix missing line break in messages
    

    One of them can be triggered by https://samples.ffmpeg.org/F4V/H263_NM_f.mp4.

    Signed-off-by : Moritz Barsnick <barsnick@gmx.net>

    • [DH] libavformat/mov.c
  • FFMPEG works from command line but not PHP

    23 janvier 2015, par nbs189

    I have a strange situation that has just happend. FFMPEG is no longer executing from PHP but will from the command line.

    Here is exactly what the command is :

    ffmpeg -i ../../uploads/ee78d5deb564901626067cc0008456ed.mp3 -ab 96k -y ../../uploads/mp3/ee78d5deb564901626067cc0008456ed_6203688.mp3

    How it is executed in the PHP script :

    if(! exec("ffmpeg -i ".$target_path."".$hash_filename.".".$path_extension." -ab 96k -y ".$target_path."mp3/".$hash_filename."_".$session_ID.".mp3")){
       echo 'ffmpeg failed';
    }

    This command did work but not longer does. I have recently updated plesk but I highly doubt that has affected this. The only thing that I think could affect it that I have recently done is have the file upload go to a subdomain. So the directory where the file is located and stored in the command is in a directory outside the document root. However, the move_uploaded_file function works and I have altered the open_basedir in PHP ini to the webspace root.

  • ffmpeg Creating Video and Streaming Command Line

    17 juillet 2017, par Brindha Kanniah

    Currently, using ffmpeg, I am using two commands on my Terminal to :

    1) create a video from a bunch of images :

    ffmpeg -r 60 -f image2 -s 1920x1080 -i rotated-pano_frame%05d_color_corrected_gradblend.jpg -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4

    2) stream the video to a udp address :

    ffmpeg -re -i test.mp4 -c copy -f flv udp://127.0.0.1:48550

    I am trying to combine both these instructions into one command line instruction, using && :

    ffmpeg -r 60 -f image2 -s 1920x1080 -i rotated-pano_frame%05d_color_corrected_gradblend.jpg -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4 &amp;&amp; ffmpeg -re -i test.mp4 -c copy -f flv udp://127.0.0.1:48550

    but am encountering an error which prevents streaming :

    [flv @ 0x7fa2ba800000] video stream discovered after head already parsed.

    Thoughts on a different command line syntax to join the two instructions, different ffmpeg instruction (filters perhaps ?), and why I am getting the error ?