Recherche avancée

Médias (91)

Autres articles (66)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5106)

  • I am trying to extract video file using below code i'm getting an 500 internal server error ?

    17 octobre 2014, par Ramesh

    The problem is that I get a "500 internal server error" the first time I execute the script, but it works as I expect if I reload the page.

    I am using below code.

    exec(FFMPEG_PATH." -i $uploadedfile  -vcodec copy -acodec copy  $path/webservice/ovideos/$thumb_name.mp4 > ".NULL_FILE);

    exec(FFMPEG_PATH."  -itsoffset $jpegFrameTime  -i  $path/webservice/ovideos/$thumb_name.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -s 120x110 $path/webservice/images/thumbs/$thumb_name.jpg > ".NULL_FILE);
  • ffmpeg batch convert from working Linux code to Windows

    30 mai 2016, par iisac

    I have this code on my Linux :

    for i in ./*.mkv; do \
    ffmpeg -i "$i" -c:v libvpx-vp9 -pass 1 -b:v 5M -threads 8 -speed 4 \
     -tile-columns 6 -frame-parallel 1 \
     -an -y -f webm /mnt/TemppiKovo/HEVC_perseily && \

    ffmpeg -i "$i" -c:v libvpx-vp9 -pass 2 -pix_fmt yuv420p -b:v 5M -threads 8 -speed 1 \
     -tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 \
     -c:a libopus -b:a 320k -f webm "${i%.mkv}-VP9.webm"

    done

    How do I do exactly the same on Windows ?

  • Parsing the ffmpeg code for a small change

    4 janvier 2015, par Prashanth

    Referring to the post
    "Is there a way to filter out I/B/P frames in an MPEG Video stream and access the macroblock information ?".
    User has specified the following command

    ffprobe -show_frames -pretty File.mpg | grep 'pict_type' > pict_type.txt

    which writes the frame type to a text file.
    Am trying to extract the different frame types into respective folder i.e., I frames in a folder named "Iframes" and so on... How can I change the above command to achieve this ?