
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (78)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (...)
Sur d’autres sites (7700)
-
video orientation detection in bash
30 décembre 2014, par MiatiI need to detect whether videos are recorded in portrait or landscape mode, then transpose those into the correct orientation, in a scripted fashion.
if [ "$v_orient" == "landscape" ]
then
ffmpeg -i file.mp4 -vf "transpose=1" file.ogv
else
ffmpeg -i file.mp4 file.ogv
fiI’ve looked in ffmpeg online documentation and googled around,
I’ve attempted exiftool
exiftool -Rotation -Rotate file.mp4
However, this outputs Rotate : 90 for both landscape & portrait videos I have.
How can I detect the video orientation in bash ?
-
video orientation detection in bash
30 décembre 2020, par MiatiI need to detect whether videos are recorded in portrait or landscape mode, then transpose those into the correct orientation, in a scripted fashion.



if [ "$v_orient" == "landscape" ]
 then
 ffmpeg -i file.mp4 -vf "transpose=1" file.ogv
 else 
 ffmpeg -i file.mp4 file.ogv
fi




I've looked in ffmpeg online documentation and googled around,



I've attempted exiftool



exiftool -Rotation -Rotate file.mp4




However, this outputs Rotate : 90 for both landscape & portrait videos I have.





How can I detect the video orientation in bash ?


-
ffmpeg encoding outputs a file with incorrect metadata
20 juillet 2013, par user2554615I use ffmpeg to convert a flv file to an mp3 file like so in bash :
ffmpeg -i path/to/file.flv path/to/output.mp3
say the flv is 5 minutes long, the output file is supposedly say, 3 minutes long. however when played back it will reach the 3 minute mark and keep playing (as it should) the full length. when i try to skip to a portion of the song it only skips by fractions of the time it should, take for example if the video is labeled as 3 minutes long and i skip to the end, it will actually be playing the area that is about 30 seconds in. why is it doing this and how do i fix it ? is there any other utility that i can use that will effectively convert .flv and .mp4 files to .mp3 or .wav in a loss-less fashion while maintaining the correct metadata, preferably for windows ? perhaps an API i can use in java or c++ ?
PS : i ask here because it relates to a command line utility and i assume that the the solution will relate to the options used in the command.
PPS : i am using the ffmpeg that comes with puppy linux (precise) 5.4