
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (91)
-
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 (...) -
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 -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (6680)
-
Concat 2 H264 mov into mp4 using ffmpeg or other ?
19 septembre 2013, par pixelwizWe recently bought a JVC GY-HM650U camcorder. One of the things it can do is record into a "web" format at the same time it records HD. However, the problem we've ran into is that it splits up the recording about every 30 minutes. I've contacted the manufacturer and they might fix the firmware in the future, but I need to do something about it now. So the camera produces an MOV file, but it's supposed to be a H.264 mp4 under the surface. I tried to follow the steps here : http://ffmpeg.org/trac/ffmpeg/wiki/How%20to%20concatenate%20%28join,%20merge%29%20media%20files but was not successful. I can either merge the two files into one mov, and if I try to play the MOV in JWPlayer for some reason I lose the audio. If I try to go into a .mp4 I get an error. I found some 3rd party software for joining video files without having to re-encode them if they are already encoded the same way, but none proved successful at producing a playable file with audio. Any suggestions ?
-
instalation ffmpeg in Ubuntu [migrated]
27 août 2014, par Chintan GorI am using following steps for installing ffmpeg-php extension in Ubuntu
-
Download ffmpeg-php-0.5.2.1.tbz2
-
extract it
-
go to this directory
-
run this "phpize"
-
./configure && make
but when I am running step 5 I got this error message "ffmpeg shared libraries not found. Make sure ffmpeg is compiled as shared libraries using the —enable-shared option
"what to do please someone help me I am fresher in Linux
I already install ffmpeg in this machin using this steps
https://trac.ffmpeg.org/wiki/CompilationGuide/UbuntuNow I am installing extension for PHP
using this steps from this http://ffmpeg-php.sourceforge.net/
INSTALLATION
-
-
ffmpeg for archval and convertability
26 juillet 2021, par SatyaI've got a couple hundred gigs of *.dv files. I'd like to convert them to H.264 or something else or even leave them alone. The purpose is archival, with an eye to maximum convertability especially to DVD. The content is family videos.


Would this be fine ?


ffmpeg -i input.dv \
 -c:v libx264 -preset slower \
 -crf 17 \
 -pix_fmt yuv420p \
 output.mp4



I went with the
slower
preset because encoding time isn't an issue and I'd like a smaller file size. crf 17 is for least-lossy while being widely playable. I read somewhere that yuv420p is needed for some Quicktime players.

Should I throw in
-c:a aac
for AAC audio ? The audio is voice only, no need for music-hall quality.

I looked at https://trac.ffmpeg.org/wiki/Encode/H.264 for previous research and that's where I got those settings, but it is silent on the audio settings.