
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (85)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
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 (...)
Sur d’autres sites (6317)
-
How to tag metadata m4v files using FFmpeg
21 mai 2019, par jazz-eSo I’m trying to tag metadata to a video file m4v from the filename. However, I can’t seem to find the answer in the man -h page and everything online shows how to pull the metadata from m4v.
I’ve looked here on StackOverflow and also online for the answer and most are answers on pulling the metadata from the m4v file but nothing on tagging the file (other than stripping out metadata). I found this http://jonhall.info/create_id3_tags_using_ffmpeg/ regarding tagging an mp3 file, which I tried the syntax and it fails.
Here’s the mp3 syntax I tried subbing out mp3 to m4v
ffmpeg32 -i in.m4v -metadata title="The Title You Want" out.m4v
Also tried the following as well
ffmpeg -i "$filedir$name" -metadata title="The Title You Want" -c:v copy -c:a copy "$filedir$newname"
This command works for removing the metadata from the file
ffmpeg -i "$filedir$name" -map_metadata -1 -c:v copy -c:a copy "$filedir$newname"
The error I usually get a syntax error.
Any help much appreciated
-
FFMPEG mkv to mp4 conversion lacks audio in HTML5 player
3 avril 2020, par fmcI used
ffmpeg
to convert anmkv
file tomp4
using this command line :


ffmpeg -i input.mkv -c copy file-1.mp4




The resulting
mp4
plays fine (video and audio) onLinux Mint's Xplayer
. But after uploading file-1, it played with no audio. So I uploaded anothermp4
file-2, one I didn't have to convert, and it plays both video and audio without a problem. So whatever's going on withfile-1
seems to be with my use offfmpeg
.


The player I'm using is called
afterglow
. But theHTML5 player
handles these two files the same way : file-1 & file-2


Does anyone know why the
ffmpeg
converted file is soundless when played online ? Is there a different conversion command that ensures convertedmkv files
will play with sound by online players ?

-
Stopped ffmpeg ip camera recording
25 août 2016, par Amit YadavI am using foscam ip camera. I want to record its stream in ts chunks and put no video screen when there is no stream available. I want to record 24 hrs video but I am not able to record it up to 24 hr. FFMPEG command stops inbetween. I am using below ffmpeg command
ffmpeg -rtsp_transport tcp -i rtsp ://username:password@192.168.0.68:554/videoMain -t 86400 -c:v copy -c:a copy -map 0 -f segment -segment_time 10 -strftime 1 -segment_list_type m3u8 -segment_list /home/user/Desktop/rec/del20160725111733.m3u8 -segment_format ts -y /home/user/Desktop/rec/%Y%m%d%H%M%S.ts
want no video screen like this http://www.electro-tech-online.com/customimages/2011/03/preview409-1.jpg
Or any other way to record stream using java code so that I have more control over stream to check if it is recording or not.