
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (89)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (6309)
-
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 ? -
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 ?
-
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);