
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (95)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
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 (8209)
-
Revision 75916 : une fonction saisies_aplatir_chaine() qui permet de supprimer les ...
16 septembre 2013, par maieul@… — Logune fonction saisies_aplatir_chaine() qui permet de supprimer les sous-groupes dans une chaîne de datas
Exemple :*Visible à l'œil nu
Vega|Véga
Arcturus|Arcturus
Antares|Antarés
Deneb|Deneb
* Visible au télèscope
Alkaid|Alkaïd
Dubhe|Dubhe
/*
Kornephoros|Kornephoros
AlbireoA|Albiréo A (rouge)
AlbireoB|Albiréo B (bleue)
Rasalgethi|Rasalgethidevient
Vega|Véga
Arcturus|Arcturus
Antares|Antarés
Deneb|<a class="missing wiki">DenebAlkaid?</a>|Alkaïd
Dubhe|<a class="missing wiki">DubheKornephoros?</a>|Kornephoros
AlbireoA|Albiréo A (rouge)
AlbireoB|Albiréo B (bleue)
Rasalgethi|Rasalgethi -
ffmpeg on ubuntu convert 3gp to iphone 5 format [closed]
21 mars 2013, par JistanidiotI'm desperately trying to convert a 3GP video into something the iphone 5 will import and play. Verizon says they cannot help me that it is not possible to convert a Droid video to iphone.
After much trouble I came to the conclusion to try the conversion on my Ubuntu box using ffmpeg. Again after a long struggle, I removed the package and followed the directions at https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide
Now with the new complied ffmpeg, I try the following command :
ffmpeg -i foo.3gp -s 320x240 -r 30000/1001 -b:v 200k -bt 240k -vcodec libx264 -coder 0 -bf 0 -flags2 -wpred-dct8x8 -level 13 -maxrate 768k -bufsize 3M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4
However I keep getting the error :
[NULL @ 0xa9874a0] Unable to find a suitable output format for 'libfaac' libfaac: Invalid argument
I found a random blog post saying you needed to add
`-target type’
and then specify target file type (“vcd”, “svcd”, “dvd”, “dv”, “dv50”, “pal-vcd”, “ntsc-svcd”, … ). However after trying all 8 of them listed I still got the same errors.
I'm at a complete loss. How can I convert the 3gp video into the iphone 5 format ?
Thanks in advance.
-
How do we determine the required dependencies for ffmpeg
15 mars 2021, par user3656901I've installed ffmpeg on ubuntu. I am going to copy the compiled ffmpeg and required dependencies to a directory and copy that directory to another machine. This way we can run ffmpeg on another machine without installation. How do we determine the required dependencies to copy ? Saw instruction on this page : https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu, but it didn't explain the required dependencies for ffmpeg.


When I used ldd ffmpeg, I got something like :


linux-vdso.so.1 (0x00007fffe20fd000)
 libavdevice.so.58 => /lib/x86_64-linux-gnu/libavdevice.so.58 (0x00007fc116e90000)
 libavfilter.so.7 => /lib/x86_64-linux-gnu/libavfilter.so.7 (0x00007fc116b10000)
 libavformat.so.58 => /lib/x86_64-linux-gnu/libavformat.so.58 (0x00007fc116890000)
 libavcodec.so.58 => /lib/x86_64-linux-gnu/libavcodec.so.58 (0x00007fc1152d0000)
 libavresample.so.4 => /lib/x86_64-linux-gnu/libavresample.so.4 (0x00007fc1152a0000)
 libpostproc.so.55 => /lib/x86_64-linux-gnu/libpostproc.so.55 (0x00007fc115270000)



Are those the required dependencies ? It didn't list the files under bin, include or share folders.