
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (66)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa 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 2013Puis-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, parDans 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 RameshThe 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 iisacI 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"
doneHow do I do exactly the same on Windows ?
-
Parsing the ffmpeg code for a small change
4 janvier 2015, par PrashanthReferring 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 commandffprobe -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 ?