
Recherche avancée
Autres articles (109)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (13705)
-
Find and remove multiple audio tracks in video using ffmpeg
14 février 2016, par Jaimin PatelI have 1 video which has multiple audios in it. There are some dialogues and few different soundtracks. But, when i use
ffmpeg -i 1.mp4
it shows only 2 streams.Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 2964 kb/s, 24 fps, 24 tbr, 90k tbn, 48 tbc (default)
Stream #0:1(und) : Audio : aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 125 kb/s (default)
Its showing only 1 audio stream, If i remove that stream whole video will be mute. But, i only want to remove particular soundtrack from video, and its not showing separate audio stream for different soundtracks and dialogue used in video.
-
Unable to find a suitable output format for : Invalid argument
17 février 2016, par Edgar CanulGrettings.
I’ve read another questions for this problem, but they are instruction-specific issues. Here’s mine :ffmpeg -ss 118 -i E :\PF2015\VUELO_1\Video1hd.mp4 -t 6 -codec copy E :\H61005 Git\H61005\reportes\testSnaps\videos\hdVideo121_3.mp4
The surprise is that I had used this instruction to extract a video fragment (from 118 to 124 secs) and it worked fine. Suddenly it stopped working.
-
FFmpeg on Android - Unable to find a suitable output format
5 octobre 2013, par Gonzalo SoleraI want to reduce the resolution of a video before edit it, so I´m using ffmpeg on android. I´m using the executable/binary file of ffmpeg and I´m calling my ffmpeg commands like that :
./ffmpeg -i /sdcard/dcim/video.mp4 -s 320x240 -r 10 -y /sdcard/output.mp4
But when I try this command I get this error :
Unable to find a suitable output format for /sdcard/output.mp4
This is the output when I use the adb shell :
The only action I have been able to do is to extract the audio of a video and save it as a mp3 using this command :
./ffmpeg -i /sdcard/dcim/video.mp4 -y /sdcard/output.mp3
That works well but this is the only action I can do...
Any idea of why I can´t convert a video ? (I can´t copy it too) Thanks !!