
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (68)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12262)
-
Android screencast function with Device been Root
4 août 2015, par facebook-1663245907229773I am working on how to create a smooth mp4 format video in an android device which has been rooted. (This means that we already have the permission to access frame buffer).
But now i have no idea to figure out this function. My current idea is :
-
Screenshot a lot of screen image according to
/dev/graphics/fb0
-
Convert images to video use
ffmpeg
in android
I am facing a few issues :
-
I cant screenshot large images. This action is very costly to the CPU which may cause the mobile phone to run unsmoothly.
-
Even if I screenshot enough images, it take lots of time to convert images into mp4 video.
My
ffmpeg
command is as below :./ffmpeg -y -f image2 -i /mnt/sdcard/image%d.jpg -s 320x240 /mnt/sdcard/temp/test.mp4
Any suggestions ?
-
-
avutil/pixfmt : Clarify meaning of the A/X bit in RGB555 / remove wording about signif...
7 février 2015, par Michael Niedermayer -
look for a specific filetype in a directory in php and send it to a different directory after conversion
12 juin 2019, par flashI have a directory in which there is a mp4 file (including other files as well) which I want to convert into mp3 and then send it to different directory. I have used the following command line command to covert into mp3 and its working perfectly fine.
ffmpeg -i 36031P.mp4 -map 0:2 -ac 1 floor_english.mp3
mp4 file is inside in_folder. Using ffmpeg, I want to convert mp4 file into mp3 and send it to out_folder.
<?php
$dir = 'in_folder';
$files1 = scandir($dir);
print_r($files1); /* It lists all the files in a directory including mp4 file*/
?>print_r($files1) lists all the file in a directory including mp4file.
Problem Statement :
I am wondering what php code I need to write so that it looks for only mp4 file inside the directory and send it to different directory (let say out_folder) after converting into mp3.
The pictorial representation of what I want :